Re: [exim] adding delay after failed recipient verify

Pàgina inicial
Delete this message
Reply to this message
Autor: Elliot Finley
Data:  
A: exim-users
Assumpte: Re: [exim] adding delay after failed recipient verify
----- Original Message -----
From: "Fred Viles" <fv+exim@???>
> On 20 Jul 2005 at 13:16, Elliot Finley wrote about
>     "[exim] adding delay after failed re":

>
> | currenty I have the following ACL statement:
> |
> | accept domains = +local_domains
> |            endpass
> |            verify = recipient
> |
> | I want to add a delay if recipient verification fails.  Do I have to

change
> | that ACL to this instead?
> |
> | deny domains = +local_domains
> |         !verify = recipient
> |         delay = 1m

>
> Above will do the delay, but it is not a proper replacement for the
> accept. The deny will not accept (obviously) when verification
> succeeds.


Thanks for pointing that out. I've been awake WAY too long.

> Just add the deny stanza *above* the accept, and optionally delete
> the now-redundant-but-not-harmfull verify from the accept.


Elliot