Re: [exim] ACL/Router

Top Page
Delete this message
Reply to this message
Author: Marc Sherman
Date:  
To: Paulo Andre
CC: 'Exim-users'
Subject: Re: [exim] ACL/Router
Paulo Andre wrote:
>
> I have run this, but the acl to check all local domains pass the message
> through, can I add something to the acl that will force it to use no
> other acls?


Put that deny ACL _before_ the accept ACL that is accepting the message.
ACLs are processed in order, and the first deny or accept that matches
a message wins.

A good general rule for ACL ordering is most specific first, most
general last, and break ties by most efficient first, most expensive last.

- Marc