On 2007-03-25T01:02:19+0100, Mauro Sacchetto wrote: > .fetchmailrc Enable verbose mode in fetchmail to see what it does when handing the mail off to procmail.
> shell=/bin/sh You should not need that. > LOG=" > " This looks funky. > VERBOSE=yes > > :0 > * ^FROM [EMAIL PROTECTED] > $MAILDIR/alice You should escape dots (\.) so it means what you expect. Double check that there is a canned ^FROM expression (opposed to ^FROM_DAEMON); perhaps use something like this instead: :0 * ^From: .*<[EMAIL PROTECTED]> $MAILDIR/alice Consider using maildirs instead of mboxes by tagging a / on the end, and update your mutt configuration accordingly. > # All other mail goes to inbox > :0 > $MAILDIR/inbox Suggest you remove that as you already do that with the DEFAULT variable. /Allan -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

