Hello in the "ACL Options" of the Exim Config does the "Reject DKIM failures" set to "on" also fail domains without a DKIM? As I would like domains with no DKIM to pass and only those with incorrect DKIM to fail.
Hello in the "ACL Options" of the Exim Config does the "Reject DKIM failures" set to "on" also fail domains without a DKIM? As I would like domains with no DKIM to pass and only those with incorrect DKIM to fail.
Here's the entry that's added to your Exim configuration file when enabling the options to reject DKIM failures:
Code:
#BEGIN ACL_SMTP_DKIM_BLOCK
# BEGIN INSERT dkim_bl
accept message = DKIM: Testing Mode
condition = ${if bool{$dkim_key_testing}}
deny message = DKIM: encountered the following problem validating $dkim_cur_signer: $dkim_verify_reason
dkim_status = invalid:fail
accept
# END INSERT dkim_bl
I believe the lack of the "none" entry on the "dkim_status" line indicates that senders with no DKIM record are not blocked. You can find the technical details of this option at: