Re: [Exim] Check DATA ACL not working

Top Page
Delete this message
Reply to this message
Author: Tor Slettnes
Date:  
To: Elliot Finley
CC: exim-users
Subject: Re: [Exim] Check DATA ACL not working
On Apr 12, 2004, at 13:37, Elliot Finley wrote:

>   deny  condition = ${if match{$header_subject:}{\Nindows-1251\N}
> {yes}{no}}
>         log_message = SPAMFILTER: Junk in subject
>         message = Go away spammer

>
> But it's not working. Can anyone see anything wrong with the ACLs?


Starting with the obvious:
  - Did you point to this ACL using the 'acl_smtp_data' option in the
    main section?  (For instance, if your ACL block is named
    "acl_check_data", did you use "acl_smtp_data = acl_check_data"?)


  - Are there any other triggering "accept" or "reject" statements
    above this one that preempt its execution? (For instance,
    "accept hosts = : @")


-tor