https://www.cloudflare.com/learning/dns/dns-records/protect-domains-without-email/

How to protect domains that do not send email

1. SPF

SPF records can be formatted to protect domains against attempted phishing attacks by rejecting any emails sent from the domain. To do so, an SPF record must use the following format.

v=spf1 -all

Here is what the individual components of this record mean:

With this type of SPF record, no IP addresses or domains are allowed, so -all states that all non-compliant emails will be rejected. For this type of record, all emails are considered non-compliant because there are no accepted IP addresses or domains.

2. DKIM

*._domainkey.example.com        TXT     v=DKIM1; p=

3. DMARC

_dmarc.example.com      TXT     v=DMARC1;p=reject;sp=reject;adkim=s;aspf=s

4. history


CategoryDns CategoryWatch CategoryTemplate

MoinQ: SPF/Cloudflare (last edited 2024-01-15 00:07:25 by ToshinoriMaeno)