Skip to content
JaxSuite AI logoJaxSuite AI

What Is DMARC?

TL;DR

DMARC, or Domain-based Message Authentication, Reporting and Conformance, is a DNS policy that tells receiving servers how to handle mail from your domain that fails SPF and DKIM. It also asks them to send reports naming every source sending as your domain.

What does DMARC add to SPF and DKIM?

SPF and DKIM each produce a pass or a fail, but neither says what a receiver should do about it, and neither checks the From address the reader actually sees. DMARC supplies both halves: a policy for failures, and the alignment rule that ties a passing check to the visible From domain.

Alignment is the part that stops spoofing. A message can pass SPF for a domain the sender controls while showing your brand in the From address; under DMARC that message fails, because the domain that passed is not the domain on display.

What do p=none, p=quarantine and p=reject mean?

The policy tag sets the instruction. p=none asks receivers to do nothing differently and just send reports, p=quarantine asks them to treat failing mail as suspicious, usually meaning spam placement, and p=reject asks them to refuse it outright.

The normal path is to start at p=none, read the reports until every legitimate sending source is authenticated, then move to quarantine and finally to reject. Starting at reject before the reports are clean blocks your own mail.

Is DMARC required to send cold email?

Google and Yahoo both require an authenticated setup with a DMARC record for bulk senders to their consumer domains, a change both announced in 2024. For any sender at volume it is a practical requirement rather than a best practice.

A minimal record is enough to satisfy it. What matters more is that the reports get read, because the report stream is the only place a misconfigured sending tool or an unauthorised sender shows up before recipients notice.

FAQ

Frequently asked questions

  • A monitoring record: v=DMARC1; p=none; rua=mailto:dmarc@yourdomain.com. It changes nothing about how your mail is handled and starts the report stream, which is what you need before tightening the policy.