# What does DMARC stand for? Meaning explained

> DMARC stands for Domain-based Message Authentication, Reporting and Conformance. Here is what each word means and what the acronym tells you about how it works.

DMARC stands for **Domain-based Message Authentication, Reporting and Conformance**. It is an email authentication standard that lets a domain owner tell receiving mail servers how to check that a message genuinely came from their domain and what to do with messages that fail that check. Each word in the acronym names a real part of how the standard works — which is why expanding it is the fastest way to understand what DMARC actually does.

## Quick Takeaways

- **DMARC = Domain-based Message Authentication, Reporting and Conformance.**
- **Domain-based:** it protects the exact domain in the visible `From:` address — the part a recipient reads.
- **Message Authentication:** it ties the results of [SPF](/learning/what-is-spf) and [DKIM](/learning/what-is-dkim) to that `From:` domain through a check called alignment.
- **Reporting:** receivers send back structured reports showing every source sending mail as your domain.
- **Conformance:** you publish a policy telling receivers to monitor, quarantine, or reject mail that fails.
- DMARC is pronounced "DEE-mark" and is published as a single [DNS](/learning/what-is-a-dns) TXT record at `_dmarc.yourdomain.com`.

## What does each word in DMARC mean?

The acronym is not marketing — every word maps to a mechanism.

### Domain-based

DMARC operates on the **domain** in the message's visible `From:` header, the address a person actually sees. This is what makes it different from SPF and DKIM on their own. Those two can pass for a domain an attacker controls while the recipient still sees a trusted brand in the `From:` line. DMARC anchors the check to the domain that matters — yours — which is how it stops exact-domain [spoofing](/learning/what-is-spoofing).

### Message Authentication

**Authentication** is the act of proving a message is genuine. DMARC does not invent a new way to do this; it uses the two that already exist — SPF, which authorizes sending IP addresses, and DKIM, which cryptographically signs the message — and adds one rule on top called **alignment**. A pass only counts if the domain that SPF or DKIM authenticated matches the domain in the `From:` header. DMARC needs only one of the two to pass *and* align, not both.

### Reporting

**Reporting** is DMARC's second job and often its most useful. Receiving servers send structured reports back to the addresses you name in your record:

- **Aggregate reports** ([RUA](/learning/what-is-a-rua)) are daily XML summaries of every source sending mail under your domain, with pass and fail counts. They are how organizations discover forgotten senders — a billing platform, a helpdesk, a marketing tool — before enforcing a policy.
- **Failure reports** ([RUF](/learning/what-is-a-ruf)) are samples of individual failing messages. Receiver support for them is uneven because of privacy concerns, so aggregate reports do most of the practical work.

### Conformance

**Conformance** is the policy you ask receivers to enforce, set with the `p=` tag:

- `p=none` — take no action, just send reports (monitoring mode).
- `p=quarantine` — deliver failing mail to the spam or junk folder.
- `p=reject` — refuse failing mail outright so it never reaches the inbox.

Moving from `none` to `quarantine` to `reject` as you confirm your legitimate senders is what turns DMARC from a passive report into active protection.

## How do you pronounce DMARC?

DMARC is pronounced as one word, "DEE-mark," not spelled out letter by letter. It is written in all capitals because it is an acronym, but in running text you will also see it lowercased in URLs and DNS record names, such as the `_dmarc` subdomain where the record lives.

## Where did DMARC come from?

DMARC was first published as **RFC 7489** in 2015 after a group of major mailbox providers and senders developed it to close the impersonation gap SPF and DKIM left open. In May 2026 the IETF published the DMARCbis revision as Standards-Track documents — **RFC 9989** for the core protocol, with companion RFCs for reporting — which obsolete RFC 7489 and promote DMARC to a Proposed Standard. DMARCbis introduced no breaking changes, so records written for the original spec keep working; the main update was replacing the Public Suffix List with a DNS "Tree Walk" for finding the organizational domain. For the full breakdown see [what DMARCbis (RFC 9989) changes](/learning/what-is-dmarcbis-rfc-9989-dmarc-standard).

## Why does what DMARC stands for matter in practice?

Knowing the expansion tells you what DMARC will and will not do. Because it is *domain-based message authentication*, it stops attackers from putting your real domain in the `From:` field — the most convincing form of [phishing](/learning/what-is-phishing). Because it adds *reporting*, it shows you every service sending as your domain, often the first time an organization sees its full sending footprint. And because it enforces *conformance* to a policy, it is now a practical requirement: Gmail, Yahoo, and Microsoft require any domain sending roughly 5,000 or more messages a day to personal inboxes to publish a DMARC record.

What the acronym does *not* promise is confidentiality — DMARC does not encrypt anything — or protection for domains you do not own. It authenticates your domain and reports on it; that is the scope. For the complete picture of how the pieces fit together, read [what DMARC is and how it works](/learning/what-is-dmarc). You can check your own domain's record and policy with the [DMARC lookup tool](/tools/dmarc), or see SPF, DKIM, and DMARC together in the [Email Security Score](/tools/email-security-score). Palisade automates the reporting-to-enforcement path the acronym describes, turning raw aggregate reports into a sender list and guiding the move to `p=reject` without blocking legitimate mail.

## Frequently asked questions

### Is DMARC an acronym or an abbreviation?

It is an acronym — the letters stand for Domain-based Message Authentication, Reporting and Conformance, and it is pronounced as a single word ("DEE-mark") rather than spelled out.

### Does DMARC replace SPF and DKIM?

No. The "Message Authentication" in the name reuses SPF and DKIM rather than replacing them. DMARC evaluates their results and checks alignment with the `From:` domain, so you need working SPF or DKIM behind it before enforcing a policy.

### What does the "Conformance" in DMARC mean?

Conformance refers to the policy receivers conform to when a message fails authentication — `none`, `quarantine`, or `reject` — which you set with the `p=` tag in your DMARC record.

### Is DMARC the same as DMARCbis?

DMARCbis is the 2026 revision of the same standard, published as RFC 9989. It clarifies and re-classifies DMARC without changing what the acronym means or breaking existing records.

## Related reading

- [What is DMARC? Email authentication explained simply](/learning/what-is-dmarc)
- [What is SPF?](/learning/what-is-spf)
- [What is DKIM?](/learning/what-is-dkim)
