We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c419975 commit 926bf3bCopy full SHA for 926bf3b
modules/AuthVerifier.jsm
@@ -102,7 +102,7 @@ var AuthVerifier = {
102
// read Authentication-Results header
103
authResult = getARHResult(msg);
104
105
- if (!authResult) {
+ if (!authResult || authResult.dkim.length === 0) {
106
// verify DKIM signatures
107
let dkimResultV2 = yield DKIM.Verifier.verify2(msg);
108
authResult = {
@@ -177,9 +177,6 @@ function getARHResult(msg) {
177
// convert DKIM results
178
let dkimSigResults = arhDKIM.map(arhDKIM_to_dkimSigResultV2);
179
180
- // check for signature existents
181
- DKIM.Verifier.checkForSignatureExsistens(msg, dkimSigResults);
182
-
183
// check SDID and AUID of DKIM results
184
for (let i = 0; i < dkimSigResults.length; i++) {
185
if (dkimSigResults[i].result === "SUCCESS") {
0 commit comments