Re: Can not get a filter recognised for one email source
"N.J. Mann" <[email protected]>
| Newsgroups | gmane.mail.procmail |
|---|---|
| Message-ID | <[email protected]> |
In message <[email protected]>, Anne Wilson ([email protected]) wrote: > I get regular emails from one list, that always end up in my Inbox, no matter > what I put in the recipes. At the moment these two recipes are in place: > > :0 > * (^From|^To|^Subject): .*(Janome|embroidery|Embroidery|emblibrary| > empressmills) > ${MAILDIR}.INBOX.Sewing/ > > :0 > * ^From: .*Debra\@emblibrary.com > ${MAILDIR}.INBOX.Sewing/ You have a space character in both recipes which should not be there. Try: * (^From|^To|^Subject):.*(Janome|embroidery|Embroidery|emblibrary| and * ^From:.*Debra\@emblibrary.com And BTW procmail does case insensitive matching unless you tell it otherwise, so the fact that the From: and Subject: headers in the message you quoted start with lower case letters should not matter. Cheers, Nick. --