#!/bin/sh # This script is used for testing purposes only. It fetches the mail # archives for guix-patches@gnu.org, converts these mbox files to a # maildir, and then indexes the mails with mu. mkdir -p tmp cd tmp wget ftp://lists.gnu.org/guix-patches/* for mbox in $PWD/*; do mb2md -s $mbox -d $PWD/../maildir done cd .. mu index --maildir=maildir --muhome=$PWD/muhome