Re: [exim] sender verify

Page principale
Supprimer ce message
Répondre à ce message
Auteur: Fred Viles
Date:  
À: exim-users
Sujet: Re: [exim] sender verify
On 3 Aug 2005 at 15:21, Thomas Stein wrote about
    "Re: [exim] sender verify":


|...
| ACL Set
|
| ----------------------------
| begin acl
| accept hosts = :

|...

Is this still cut down? Each ACL in the "begin acl" section must
start with a label giving a name for the ACL. And the general
options section must include acl_* options specifying the name of the
ACL for each type that you want to run. So you should have something
like:

...
acl_smtp_rcpt = acl_check_rcpt
...
begin acl
...
acl_check_rcpt:
accept hosts = :
...