-
Notifications
You must be signed in to change notification settings - Fork 24
dns dmarc
Springcomp edited this page Feb 8, 2026
·
2 revisions
From Wikipedia https://en.wikipedia.org/wiki/DMARC
It (DMARC) is designed to give email domain owners the ability to protect their domain from unauthorized use, commonly known as email spoofing
Setting up DMARC is also recommended.
Create a TXT record for _dmarc.mydomain.com. with the following value
v=DMARC1; p=quarantine; adkim=r; aspf=r
This is a relaxed DMARC policy. You can also use a more strict policy with v=DMARC1; p=reject; adkim=s; aspf=s value.
To verify, the following command
dig @1.1.1.1 _dmarc.mydomain.com txtshould return the set value.
For more information on DMARC, please consult https://tools.ietf.org/html/rfc7489