June 2018
Intermediate to advanced
368 pages
11h 1m
English
Implementing SPF is a simple matter of enumerating the complete list of hosts that can send or relay for a domain and publishing that list into a TXT RR within the zone:
$ dig +short -t txt example.com "v=spf1 -all"
SPF data fits into the rdata of a TXT RR. It starts with v=spf1 (the current version of the specification) and is composed of mechanisms, where each mechanism is prefixed with a qualifier and optionally modifiers
The available mechanisms are:
If <hostname> is omitted, then the ...
Read now
Unlock full access