* John P Verel <[EMAIL PROTECTED]> [2002-10-06 19:31]: > This worked just as promised! Cleaning out the Message-IDs was no big > deal. Thanks a million Darren! Forgive my delay in responding, but I > just found time to do this today.
Nice. I banged it out pretty quickly. > I piped the output to a file. The only thing I had to then do was to prepend the word 'alias' and a dummy alias (I used numbers) before each > address, so as to make the list work with mutt. (I did this via a > spreadsheet) I am a COMPLETE Perl novice, so please forgive this > question, but how could the script be modified to automate this > prepending? Change the last line (the "print" line) to read: print map "alias $_\n", sort keys %addrs; Which will give you a list like: alias [EMAIL PROTECTED] alias [EMAIL PROTECTED] (darren) -- Pohl's law: Nothing is so good that somebody, somewhere, will not hate it.
