> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mailofly.com/llms.txt
> Use this file to discover all available pages before exploring further.

# DMARC Analyzer

> How to configure and analyze DMARC policies for domain alignment.

DMARC (Domain-based Message Authentication, Reporting, and Conformance) protects your domain against spoofing and phishing.

***

## DMARC Record Syntax

Add a `TXT` record at `_dmarc.yourdomain.com`:

```text theme={null}
v=DMARC1; p=none; rua=mailto:dmarc-reports@yourdomain.com; pct=100;
```

***

## Policy Progression

1. **Phase 1: Monitoring (`p=none`)**
   * Messages that fail alignment are still delivered.
   * Aggregate XML reports are sent to your `rua` email address.
2. **Phase 2: Quarantine (`p=quarantine`)**
   * Messages that fail alignment are delivered to the recipient's spam folder.
3. **Phase 3: Reject (`p=reject`)**
   * Messages failing alignment are completely dropped by receiving MTAs.


## Related topics

- [DMARC](/domains/dmarc.md)
- [GoDaddy DNS Setup](/guides/domains/godaddy.md)
- [BIMI](/domains/bimi.md)
- [Return Path](/domains/return-path.md)
- [Introduction](/domains/introduction.md)
