Suppose I have a domain (company.com) with an SPF that looks like this:
v=spf1 ip4:70.70.70.70 include:host.marketing.com -all
and "host.marketing.com" looks like this
v=spf1 ip4:8.8.8.8 ~all
What takes precedence for company.com, the "~" or the "-"? Does the tilde in the marketing company's SPF negate all SPF benefit for company.com?
Is this behavior consistent among all SPF parsers?
Assuming that all parsers adhere to the RFC4408 specification, the
-all
from the company.com record applies. The include does not modify the verification process, it merely expands it to include the mechanisms contained in the included record.If you were to use
redirect
in place ofinclude
, like this for company.com:the
~all
would apply, and-all
would be discarded in the verification sequence. That is, again, assuming that all parsers adhere to the specification