Re: [exim] Anti-Spam ACL problem : failed to expand ACL stri…

Top Page
Delete this message
Reply to this message
Author: Peter Bowyer
Date:  
To: exim-users
Subject: Re: [exim] Anti-Spam ACL problem : failed to expand ACL string
Khyron <khyron4eva@???> wrote:
> I noticed errors of the following sort...
>
> [ID 197553 mail.info] 2004-08-25 08:
> 54:54 H=[221.2.198.66] temporarily rejected connection in "connect"
> ACL: failed to expand ACL string "${if >${acl_m2}{0}{$acl_m2}{0}}s":
> missing { after ">"


The error message tells you exactly what you did wrong - the > operator
takes 4 arguments, each one of which is enclosed in {}.

This should probably be

${if >{$acl_m2}{0}{$acl_m2}{0}}

Peter