Re: [exim] Using domain regex filtering...

Top Page
Delete this message
Reply to this message
Author: Wallace Tan
Date:  
To: exim-users
Subject: Re: [exim] Using domain regex filtering...
Tony Finch wrote:
> On Tue, 12 Feb 2008, Marco Gaiarin wrote:
>> someone can hint me how to write an ACL condition that can use this file
>> directly?
>
> deny hosts = /path/to/file/containing/regexes
>
> Tony.


The ACL above is incorrect, it should be:

deny  message   = "$sender_host_address rDNS $sender_host_name rejected"
       condition = ${lookup{$sender_host_name} nwildlsearch {/etc/exim/exim-dynamic-regex} {yes}{no}}
       delay     = 30s


--
Wallace