NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
mutt info (Score:2)
Re:mutt info (Score:2)
Re: (Score:1)
procmail doesn’t parse your mailbox, it only directs mail that is fed to it to the right place according to its rules. So you have to feed the mails from your inbox to it. This is achieved using
formail -s procmail < /your/mailspool. With-s,formailwill parse its input and invoke the given program for each mail, feeding the mail to the program’s stdin.Re: (Score:1)
Oh! And don’t forget to save the mails from your inbox/spoolfile to another place before you re-filter them, else they’ll show up in your inbox in duplicate. I usually do this simply by
mving my spool out of the way before piping it intoformail(it gets recreated automatically byprocmail).Re: (Score:2)
formail, great. I knew there must be something already to refeed without me having to write a script to do itThanks for the
.muttrchints too. I'll add those in a bit and see how I get on. Thanks.Lowering the annoyance factor (Score:1)
set quit=yes
set copy
set delete=yes
set fast_reply
set askcc=no
unset metoo
set abort_unmodified=no
set recall=no
set reply_to=yes
set record=+sent
Re:Lowering the annoyance factor (Score:2)
and...
set move=no;)
Thanks for the extra hints.