Re: [exim] Re: iplist filtering

Top Page
Delete this message
Reply to this message
Author: Peter Bowyer
Date:  
To: Exim Users Mailing List
Subject: Re: [exim] Re: iplist filtering
On Thu, 27 Jan 2005 13:37:11 -0800, ppichlak <ppichlak@???> wrote:
> Hello,
>
> I am running Spamassassin from exim on a per email basis via exiscan-acl.
> Stored in some file I have a list of ips that signify users whose email
> should always be allowed through.
>
> To prevent Spamassassin from filtering that email out as spam I wanted to
> append
> a header to each email with some message that Spamassassin would look for,
> that way it would know that this message is allowed.
>
> My solution was to do this using one of exim's ACL's, unfortunately
> Spamassassin can't see the appended header.
>
> Any ideas, or different ways to go about this?


Use your list of IPs in a condition in the ACL which calls the spam scan

warn message = X-Spam-Status: Yes
!hosts = <list of ips to let through>
spam = nobody

Modify to fit your DATA ACL structure.

Peter