Re: [exim] ACL/Router

Página superior
Eliminar este mensaje
Responder a este mensaje
Autor: Marc Sherman
Fecha:  
A: Paulo Andre
Cc: 'Exim-users'
Asunto: 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