Development and hacking
Convert Maildir to mbox format on Linux, BSD or MacOSX
…assuming you”ve installed formail (from the procmail package?), it’s easy as: #!/bin/bash for file in `find /path/to/your/Maildir/cur -type f` do cat $file | formail -A Date: >> /tmp/mbox done