Forrest Aldrich wrote:
I've been having some difficulty with the user_prefs and the whitelist_*
fucntions. I read the examples etc, and I believe these are correct,
but clearly certain email is still being tagged (see below). I wonder
if someone can help clarify what I'm doing wrong here.
First, here are the directives in my ~/.spamassassin/user_prefs file, as
it applies to this instance:
whitelist_from_rcvd spamassassin.apache.org hermes.apache.org
whitelist_from *.apache.org
Here is the Sendmail log, showing the rejection:
Apr 13 11:52:24 mail sm-mta[34951]: k3DFqNBR034951:
from=<[EMAIL PROTECTED]>,
Your whitelist entries don't match
"[EMAIL PROTECTED]".
This should work (note the *@):
whitelist_from_rcvd [EMAIL PROTECTED] hermes.apache.org
This would work, but would be trivially forged:
whitelist_from [EMAIL PROTECTED]
Daryl