Kyle Quillen wrote: > Hey all I am trying to get URIDNSBL. But I think that I have some more > problems than just that. When I run spamassassin -D --lint I get the > following out put with 8 errors. This is all Greek to me can someone > shed some light on this for me. > > Thanks in advance, > Q > <snip> > [5031] warn: config: SpamAssassin failed to parse line, > "groups.yahoo.com" is no t valid for "whitelist_from_rcvd", skipping: > whitelist_from_rcvd groups.yahoo.co m > [5031] warn: config: SpamAssassin failed to parse line, > "[EMAIL PROTECTED] com" is not valid for "whitelist_from_rcvd", > skipping: whitelist_from_rcvd [EMAIL PROTECTED] urns.groups.yahoo.com > [5031] warn: config: SpamAssassin failed to parse line, > "[EMAIL PROTECTED] et" is not valid for "whitelist_from_rcvd", > skipping: whitelist_from_rcvd vintag [EMAIL PROTECTED] > [5031] warn: config: SpamAssassin failed to parse line, > "[EMAIL PROTECTED] m" is not valid for "whitelist_from_rcvd", > skipping: whitelist_from_rcvd jpgraha [EMAIL PROTECTED] > [5031] warn: config: SpamAssassin failed to parse line, > "[EMAIL PROTECTED]" is not valid for "whitelist_from_rcvd", skipping: > whitelist_from_rcvd [EMAIL PROTECTED] fi7.com > [5031] warn: config: SpamAssassin failed to parse line, > "[EMAIL PROTECTED]" i s not valid for "whitelist_from_rcvd", > skipping: whitelist_from_rcvd DeloresRabe [EMAIL PROTECTED] > [5031] warn: config: SpamAssassin failed to parse line, > "[EMAIL PROTECTED] " is not valid for "whitelist_from_rcvd", > skipping: whitelist_from_rcvd dlrcsrvc @berninausa.com > [5031] warn: config: SpamAssassin failed to parse line, > "[EMAIL PROTECTED] " is not valid for "whitelist_from_rcvd", > skipping: whitelist_from_rcvd dlrtechq @berninausa.com >
Looks like your whitelist_from_rcvd statements are invalid. whitelist_from_rcvd requires TWO parameters. Not one. You need a "from" address, which you have, and a partial (or complete) server name from a Received: header, which you are missing. ie: whitelist_from_rcvd [EMAIL PROTECTED] xan.evi-inc.com where xan is the outbound mailserver for evi-inc.com. Usually you can just make it simpler and just do things like: whitelist_from_rcvd [EMAIL PROTECTED] evi-inc.com Which is less specific, but will at least make sure the server delivering the mail has a hostname in "evi-inc.com". Also, in the future, try spamassassin --lint first, before trying spamassassin --lint -D. Unless you're dealing with a really odd problem, the -D will just add a lot of clutter that you don't usually need. Usually I use -D to see what files SA is reading, what features are enabled, etc.. but none of this is needed for simple syntax problems.