Re: [Exim] exim ACL wishes

Top Page
Delete this message
Reply to this message
Author: Nico Erfurth
Date:  
To: Richard Welty
CC: exim-users@exim.org
Subject: Re: [Exim] exim ACL wishes
On Fri, 27 Dec 2002, Richard Welty wrote:

> a couple of things that might be nice in exim ACLs (some of this may be
> there, but my quick check of the docs didn't show it):
>
> 1) a defer option in ACLs, i'd liked to be able to do something like
>
>    defer verify=sender


Check exim 4.12

> 2) block on localpart in a sender address. i've got a nyc club spammer who
> is morphing the domain on his envelope sender, but is being pretty
> consistent in his local part, i'd like to be able to block where the
> localpart is say
>
>    deny sender_localpart = nycclubscene : \
>                            nycclubsceneinfo : \
>                            nyclubscene : \
>                            nyclubsceneinfo


deny senders = nycclubscene@* : nycclubsceneinfo@* ....

or

deny senders = ^nyc?clubscene(?:info)?@$

ciao