Leader of Birmingham.pm [pm.org] and a CPAN author [cpan.org]. Co-organised YAPC::Europe in 2006 and the 2009 QA Hackathon, responsible for the YAPC Conference Surveys [yapc-surveys.org] and the QA Hackathon [qa-hackathon.org] websites. Also the current caretaker for the CPAN Testers websites and data stores.
If you really want to find out more, buy me a Guinness
Links:
Memoirs of a Roadie [missbarbell.co.uk]
[pm.org]
CPAN Testers Reports [cpantesters.org]
YAPC Conference Surveys [yapc-surveys.org]
QA Hackathon [qa-hackathon.org]
My mail trials seem to be dragging on. After figuring out the various configs from FAQs, HowTos, man pages and various websites, I've got further with my mail. Not all the way, but further.
fetchmail
I now have fetchmail working. This was the easy part, but then the config is 4 lines long, so I'd be hard pushed to screw that up
procmail
I have created a set of recipes and apart from an initial hiccup, with a bad regex on my part, it appears to be able to pick up mail and put the filtered ones into the correct files. It's saving in mbox format, and checking the files by hand, they all seem to be correct. However, I still seem to have a problem. A couple of the recipes were incomplete, and as such a number of mails got left in my system mailbox. Having changed the recipes, the mails don't seem to get reparsed and moved on. How do I tell procmail to reparse the whole mailbox?
mutt
Well mutt is better than mail, but I have hit a problem. Getting procmail to filter all the mails into various mbox files is great, but only if you can navigate through them easily. mutt doesn't even see them initially, it just loads up all the mails in my system mailbox. I set the
Thunderbrd
After the half-working mutt, I did expect Thunderbird to be a breeze. It has a shiny GUI after all. Alas it was non-starter. I can't get it to look at any folders that I want it to, even though it claims to support mbox format. I can't even get it to import files and redo my recipes in procmail. I think I actually need to sit down with someone so they can point out quite clearly the fundamental flaws in my research and reading.
It really can't be this awkward to set up a mail client, can it?
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.