> Hi, > > How to setup to give high score for specific domain cannot pass DKIM test? > > For example: My own email domain is example.com > > Any incoming email from: example.com does not pass DKIM test score 10.0 >
describe __DKIM_REQUIRED Require a valid DKIM signature for these domains header __DKIM_REQUIRED From:addr =~ /\@(example\.com|example\.org)$/i describe DKIM_REQUIRED_FAIL Sender requires a valid DKIM signature but it was not present meta DKIM_REQUIRED_FAIL (__DKIM_REQUIRED && !DKIM_VALID_AU) score DKIM_REQUIRED_FAIL 10.0 This tests the from address for a *@example.com (and org) address. If it matches then it requires a valid DKIM signature for the domain of the sender (in this case example.com or example.org).