From: "Bill Landry" <[EMAIL PROTECTED]> > ----- Original Message ----- > From: "jj-ml" <[EMAIL PROTECTED]> > > > Some of the mail from the spamassassin mailing-list are consider as spam. > > I put in my rule : whitelist_to [EMAIL PROTECTED] > > But it seems it's not working. > > Well, "whitelist_to" will whitelist anything going to any address > @spamassassin.apache.org. You would want to use "whitelist_from" instead. > > > As everybody in that list must have the same problem than me, can anyone > > gives me a hint ?? > > Sure, for a better/safer option than "whitelist_from", try: > > whitelist_from_rcvd [EMAIL PROTECTED] apache.org > > This will confirm the sender address includes "@spamassassin.apache.org" and > that the RDNS of the sending IP address also contains "apache.org".
He probably also needs to tell Bayes to ignore things from apache.org. Of course, if he is running procmail it's easy to bypass at that level. The simple form within a .procmailrc file is: ===8<--- :0 fw: spamassassin.lock * < 250000 * !^List-Id: .*(spamassassin\.apache.\org) | /usr/bin/spamc -t 150 -u xxx ===8<--- {^_^}