I'm confused by a DMARC aggregate report I received recently and I couldn't find anything similar online.
The report says DKIM, SPF passed and they're aligned with the domain in the From:
header. But that's not what I see in the report. Specifically, for DKIM:
record.row.identifiers.header_from=mydomain.com
record.row.auth_results.dkim.domain=sendgrid.info
Expected: record.row.policy_evaluated.dkim=fail
, because sendgrid.info
is neither an exact match nor a subdomain of mydomain.com
.
Actual: record.row.policy_evaluated.dkim=pass
Full report for reference (sending domain replaced with mydomain.com
for privacy).
<?xml version="1.0"?>
<feedback>
<report_metadata>
<org_name>Yahoo! Inc.</org_name>
<email>postmaster@dmarc.yahoo.com</email>
<report_id>[redacted]</report_id>
<date_range>
<begin>1616112000</begin>
<end>1616198399</end>
</date_range>
</report_metadata>
<policy_published>
<domain>mydomain.com</domain>
<adkim>r</adkim>
<aspf>r</aspf>
<p>none</p>
<pct>100</pct>
</policy_published>
<record>
<row>
<source_ip>149.72.167.211</source_ip>
<count>1</count>
<policy_evaluated>
<disposition>none</disposition>
<dkim>pass</dkim>
<spf>pass</spf>
</policy_evaluated>
</row>
<identifiers>
<header_from>mydomain.com</header_from>
</identifiers>
<auth_results>
<dkim>
<domain>sendgrid.info</domain>
<result>pass</result>
</dkim>
<spf>
<domain>em[redacted].mydomain.com</domain>
<result>pass</result>
</spf>
</auth_results>
</record>
</feedback>