Re: [exim] Lookups for blacklisted links within messages

Inizio della pagina
Delete this message
Reply to this message
Autore: Mike Cardwell
Data:  
To: Exim Users List
Oggetto: Re: [exim] Lookups for blacklisted links within messages
Mike Cardwell wrote:

> You can actually create a custom acl like this:
>
> acl foobar:
>    accept condition = x
>    deny

>
> And then write an acl snippet like this in a different acl:
>
> deny acl = foobar
>
> Then if the foobar acl "accepts" the deny succeeds and vice versa.


A recursive acl might look like this:

acl foobar:

    warn condition = x
         acl       = foobar


    accept


Mike