I'm trying to validate a customers SPF record and it keeps passing. Turns out
print_r(dns_get_record('_spf.salesforce.com', DNS_TXT));
will return an SPF record
v=spf1 exists:%{i}._spf.mta.salesforce.com -all
this is evaluating against my environment IP and causing a passing result. Not sure if there is a way to turn that off or if I'm doing something that I shouldn't be but wanted to check in with it to make sure its behaving the way you're expecting it to.
I'm trying to validate a customers SPF record and it keeps passing. Turns out
will return an SPF record
this is evaluating against my environment IP and causing a passing result. Not sure if there is a way to turn that off or if I'm doing something that I shouldn't be but wanted to check in with it to make sure its behaving the way you're expecting it to.