Eric Kuzniar wrote:
> No need to do this in exim, just set em up in your local.cf config file
> for SpamAssassin.
> whitelist_to guywhowantsspam@???
>
> Brian wrote:
>
>> Hello all,
>>
>> we have SA implemented in Exim, tags at 6 and rejects when it's over
>> 10. We have a few thousand users that are all quite content.
>>
>> Except for one.
>>
>> How would I implement an accept for email addresses?
>>
>> we currently have this in place to check for valid recipients:
>>
>> deny message = That is not a recipient that we take mail for.
>> condition = ${lookup {$local_part@$domain}
>> cdb*@{/usr/local/etc/exim/cdb/recipients.cdb}{no}{yes}}
>> log_message = Bad recipient
>>
>>
>> And I would assume to have something like the postmaster : abuse check
>>
>> accept local_parts = postmaster : abuse
>> domains = +relay_to_domains
>>
>>
>> accept condition = ${lookup {$local_part@$domain}
>> cdb*@{/usr/local/etc/exim/cdb/spam_me.cdb}}
>>
>>
>> where the spam_me.cdb would contain user@???
>>
>> Would that work?
>>
>> Thanks in advance
>>
>
>
For what it's worth..
50_scores.cf: unmodified: line 1013 of 1043 [96%]
# Not really false positives but the user wants spam!
score USER_IN_WHITELIST_TO -6.000
score USER_IN_MORE_SPAM_TO -20.000
score USER_IN_ALL_SPAM_TO -100.000
whitelist_to only takes off 6 points
more_spam_to only takes of 20 points
and all_spam_to takes off 100 points
- Brian