Glossary
EMAIL AUTH

DMARC

Domain-based Message Authentication, Reporting & Conformance — the policy layer of email authentication that ties SPF and DKIM to the From: header and specifies what to do when messages fail.

DMARC (Domain-based Message Authentication, Reporting & Conformance) is a DNS-published policy that:

  1. Requires SPF or DKIM to align with the From: header domain
  2. Tells receiving servers what to do when alignment fails (none, quarantine, reject)
  3. Sends aggregate reports back to domain owners showing who sends email on their behalf

DNS Record

_dmarc.example.com.  TXT  "v=DMARC1; p=reject; rua=mailto:[email protected]"

Policy Levels

PolicyEffect
p=noneMonitor only — no enforcement
p=quarantineFailing email → spam folder
p=rejectFailing email → rejected entirely

Why It Matters

Without DMARC, anyone can forge your From: header. SPF checks the invisible envelope sender; DKIM checks the signing domain — neither protects what users see. DMARC alignment is what connects authentication results to the From: address, closing the spoofing gap. p=reject is the end goal for any domain serious about protecting its brand.