At certain times, there mails which are valid being rejected by callout verification, now thing is how do we go about excluding certain domains from callouts.
This is my current setup
In WHM >> Service Configuration >> Exim Configuration Editor
After #sender verifications are required for all messages that are not sent to lists
But the above doesnt seem to work
when the below change is done to second code
#sender verifications are required for all messages that are not sent to lists
what it does is even if callout verification is failed it still accepts mail
ANY IDEAS ?
This is my current setup
In WHM >> Service Configuration >> Exim Configuration Editor
Code:
domainlist whitelist_domains = lsearch;/etc/whitelist_domains
Code:
require verify = sender/callout
accept domains = +local_domains : +whitelist_domains
endpass
when the below change is done to second code
#sender verifications are required for all messages that are not sent to lists
Code:
require verify = sender/callout=10s,defer_ok
accept domains = +local_domains : +whitelist_domains
endpass
what it does is even if callout verification is failed it still accepts mail
ANY IDEAS ?