Re: [exim] Lookups for blacklisted links within messages

トップ ページ
このメッセージを削除
このメッセージに返信
著者: Mike Cardwell
日付:  
To: Exim Users List
題目: 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