> A quick search said that maildrop would be a good choice. > Do you agree?
I can only speak for myself, but I think it's pretty good. Easy to use and configure filters. I've also integrated bogofilter that first classifies the mail, then maildrop runs it through the filter rules before the final delivery. Excerpts from my ~/.mailfilter file: # ~/.mailfilter logfile $HOME/log/maildrop.log MAILDIR="$HOME/Maildir" xfilter "/usr/local/bin/bogofilter -u -e -p" if ( /^X-Bogosity: Spam/ ) to $MAILDIR/.Spam if ( /^X-Bogosity: Unsure/ ) to $MAILDIR/.Unsure to $MAILDIR/ There's a lot more there to put mail from various mailing lists into the appropriate folder, but this should give you an idea. Thomas