Re: [exim] Spam Scanning Issue

Top Page
Delete this message
Reply to this message
Author: Phil Pennock
Date:  
To: Matt
CC: exim-users
Subject: Re: [exim] Spam Scanning Issue
On 2008-01-01 at 12:26 -0600, Matt wrote:
> > Add extra
> > {condition} \
> > lines to the and{...} contents.
> >
> > {!match_ip {$sender_host_address}{/etc/virtual/pophosts}} \
>
> That part worked perfect.
>
> > {!eq {$authenticated_id}{}} \
>
> This seems to think every message has been authenticated including
> those that come from gmail. Any idea?


I got the test back to front. Remove the "!" at the start. Sorry.

You want "don't scan if authenticated", so the test to proceed with
scanning is "$authenticated_id must be empty". Therefore:

{eq {$authenticated_id}{}} \

-Phil