PS C:\Users\jason.crawford> Resolve-DnsName -Name _spf.salesforce.com -Server 8.8.8.8 -Type txt
Name Type TTL Section Strings
---- ---- --- ------- -------
_spf.salesforce.com TXT 2982 Answer {v=spf1
exists:%{i}._spf.mta.salesforce.com -all}
Anyone?
Open in new window
I believe you're asking about
This is one of types define a verification mechanism
ip4 - use IP Version 4 addresses, for example, 192.168.3.0 for verification
ip6 - use IP Version 6 addresses for verification, for example, 2001:db8::10 for verification
a - use DNS A RRs for verification
mx - use DNS MX RRs for verification
ptr - use DNS PTR RRs for verification
exists - test for existence of domain
The existence (any valid A RR) of the specified domain allows the test to pass. Domain may use macro-expansion features.
Note: RFC 7208 Appendix C suggests a method by which the exists sender mechanism (in conjunction with a macro expansion) may be used to log DNS queries for every mail transaction and which may help in diagnosing SPF problems. While this indeed may be the case, it also may, depending on the mail volume being sent, generate significant DNS loads. Your choice.
You can read more here::
http://www.zytrax.com/books/dns/ch9/spf.html