Skip to content

Instantly share code, notes, and snippets.

@RickCogley
Last active January 21, 2025 01:10
Show Gist options
  • Save RickCogley/ed65dc7617d10abc9515b59e6bfb6e90 to your computer and use it in GitHub Desktop.
Save RickCogley/ed65dc7617d10abc9515b59e6bfb6e90 to your computer and use it in GitHub Desktop.
DMARC Default Digest Report

Scroll down to see a sample default DMARC digest report in XML format. This is why services such as DMARC Digests are so useful, because they translate the default XML into something more human-friendly. The screenshot is what such a service provides.

Screenshot of a good DMARC report

<?xml version=”1.0″ encoding=”UTF-8″ ?>
<feedback>
<report_metadata>
<org_name>google.com</org_name>
<email>[email protected]</email>
<extra_contact_info>
http://google.com/dmarc/support
</extra_contact_info>
<report_id>7598769364592857643</report_id>
<date_range>
<begin>1632654984</begin>
<end>1633749852</end>
</date_range>
</report_metadata>
<policy_published>
<domain>yourdomain.com</domain>
<adkim>r</adkim>
<aspf>r</aspf>
<p>none</p>
<sp>none</sp>
<pct>100</pct>
</policy_published>
<record>
<row>
<source_ip>192.158.1.38</source_ip>
<count>2</count>
<policy_evaluated>
<disposition>none</disposition>
<dkim>fail</dkim>
<spf>pass</spf>
</policy_evaluated>
</row>
<identifiers>
<header_from>yourdomain.com</header_from>
</identifiers>
<auth_results>
<dkim>
<domain>yourdomain.com</domain>
<result>fail</result>
<human_result></human_result>
</dkim>
<spf>
<domain>yourdomain.com</domain>
<result>pass</result>
</spf>
</auth_results>
</record>
</feedback>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment