From: Jakub Czajka Date: Sun, 6 Nov 2022 15:00:28 +0000 (+0100) Subject: [dovecot] Document SPF and DMARC DNS records. X-Git-Url: https://git.ekhem.eu.org/?a=commitdiff_plain;h=5874e61c2ea8fb1012e03be974f246660c15b067;p=server.git [dovecot] Document SPF and DMARC DNS records. SPF DNS records specify which IP addresses may send email on behalf of the domain. DMARC DNS records specify what happens when mail cannot be delivered. --- diff --git a/dovecot/README b/dovecot/README index 8466c00..fb6087f 100644 --- a/dovecot/README +++ b/dovecot/README @@ -49,10 +49,12 @@ Add DNS records. If no MX record is present, mail servers fall back to the A record (see https://serverfault.com/a/470651). ``` -example.com. 0 A -example.com. 0 AAAA -example.com. 0 MX 0 mail.example.com -mail.example.com. 0 CNAME example.com. +example.com. 0 A +example.com. 0 AAAA +example.com. 0 MX 0 mail.example.com +mail.example.com. 0 CNAME example.com. +example.com. 0 TXT v=spf1 ip4= ip6= ~all +_dmarc.example.com. 0 TXT v=DMARC1; p=none; rua=mailto: ``` Install `certbot`.