ptrcnull.me/content/posts/mail-dns-setup.md

621 B

title date draft
Mail DNS Setup 2020-12-19T15:59:43+01:00 false

Since I always struggle with DNS records for mailservers... here are some examples:

DMARC

_dmarc TXT "v=DMARC1; p=none; rua=mailto:dmarc@domain.tld"
  • v - version of DMARC (DMARC1)
  • p - policy (none, quarantine, reject)
  • rua - URI for agreggate reports (comma-separated)
  • ruf - URI for failure reports (comma-separated)

SPF

@ TXT "v=spf1 mx -all"
  • v - version (spf1)
  • mx - allow emails from servers specified in MX records
  • -all - don't allow from everyone else