How to Add DMARC record in my Domain
DMARC, which stands for “Domain-based Message Authentication, Reporting & Conformance”, is a technical specification created by a group of organizations that want to help reduce the potential for email-based abuse by solving a couple of long-standing operational, deployment, and reporting issues related to email authentication protocols.
1] Login into cPanel
2] Click on Advance DNS Zone editor.
3] Add a new TXT record with the following details:
Name: _dmarc
TTL: 14400
Type: TXT
TXT Data : Any on of the below
-> none – Take no action. Log affected messages on the daily report only.
v=DMARC1; p=none; sp=none; rf=afrf; pct=100; ri=86400
-> none with report – sends report of failed validations to a valid email of yours (example: admin@domain.com)
v=DMARC1; p=none; sp=none; ruf=admin@domain.com; rf=afrf; pct=100; ri=86400
-> reject – Cancel the messages
v=DMARC1; p=reject; sp=none; rf=afrf; pct=100; ri=86400
-> quarantine – mark messages as spam
v=DMARC1; p=quarantine; sp=none; rf=afrf; pct=100; ri=86400
4] Click on Add Record