--- trunk/mailman2mbox.sh 2004/11/20 16:09:13 6 +++ trunk/mailman2mbox.sh 2006/04/10 16:53:25 21 @@ -16,5 +16,5 @@ grep txt.gz index.html | cut -d\" -f2 | while read file ; do echo "downloading $url/$file" wget $wget "$url/$file" - zcat $file >> mbox + zcat $file | perl -pe 's/^(From.+?) at (.+)$/$1\@$2/g' >> mbox done