Re: [Exim] Urgent problem: Blanket rejection problem on upgr…

Top Page
Delete this message
Reply to this message
Author: Nico Erfurth
Date:  
To: Bruce Richardson, Exim-Users (E-mail)
Subject: Re: [Exim] Urgent problem: Blanket rejection problem on upgrade to 4.31
Bruce Richardson wrote:

> No, it shouldn't. Recipient verification should not automatically
> trigger callout sender verification. If I chose to do callout sender
> verification, that might avoid that problem but I choose not to. I just
> do basic "!verify=sender" verification.


Try this patch:

diff -Nr exim-4.31/src/verify.c exim-4.31.callout/src/verify.c
429c429,431
<       new_domain_record.result = ccache_reject;
---

 >       /* Do NOT cache a reject when this is a recipient verification,
 >          otherwise the WHOLE domain is be blocked for ALL senders */
 >       if (!is_recipient) new_domain_record.result = ccache_reject;



Nico