Re: [Exim] sender verify issue

Top Page
Delete this message
Reply to this message
Author: Christian Vogel
Date:  
To: Thomas Kinghorn
CC: exim-users
Subject: Re: [Exim] sender verify issue
Hi,

On Thu, Sep 25, 2003 at 08:15:27AM +0200, Thomas Kinghorn wrote:
> the logs show H=domain.tld F=oracle@???. sender verify
> failed.
> How can I work around this?


This should work (I think):

in the top section of your exim.conf:

        addresslist     verify_whitelist = dbm*@;/etc/exim/verify_whitelist.dbm


in acl_rcpt (instead of require verify = sender):

        reject  !senders        = +verify_whitelist
                !verify         = sender


This rejects your mail if (NOT sender in verify_whitelist) AND
(NOT sender can be verified).

Maybe this is equivalent? (I never quite got the concept of endpass...
;-) ):

        require !senders  = +verify_whitelist
                endpass
                verify  = sender



--
Christian Vogel -- chris@???