I have these 3 spf txt records to add recommended for different email providers to be addeed to my DNS TXT records to avoid spamming by DMARC:
"v=spf1 mx a include:_spf.getresponse.com -all"
"v=spf1 include:emsd1.com ~all"
"v=spf1 include:spf.protection.outlook.com ip4:195.76.207.18 -all"
What will be the best way to merge them. After reading several forums I finished with these 2 options:
Option A. Merge all in a single TXT record as recommended on here:
"v=spf1 mx a include:_spf.getresponse.com include:spf.protection.outlook.com ip4:195.76.207.18 include:emsd1.com ~all"
vs
"v=spf1 mx a include:_spf.getresponse.com include:spf.protection.outlook.com ip4:195.76.207.18 include:emsd1.com -all"
or OPTION B. Creating 3 SPF records and declare them on an initial SPF: as it is described here
Initial SPF: sampledomain.com TXT
v=spf1 include:spf1.sampledomain.com include:spf2.sampledomain.com include:spf3.sampledomain.com all"
3 SPF records:
spf1.sampledomain.com TXT
v=spf1 mx a include:_spf.getresponse.com -all
spf2.sampledomain.com TXT
v=spf1 include:emsd1.com ~all
spf2.sampledomain.com TXT
v=spf1 include:spf.protection.outlook.com ip4:195.76.207.18 -all
What option should I choose without exceeding the number of 10 look ups?
Additionally, I don't know how to figure it out the number of lookups?
Thanks indded