I need to add a SendGrid SPF record for my GoDaddy domain, but I'm not sure exactly where to put it. I have an existing TXT record for @ with value of google-site-verification=XXXXXXXXXXXXXXXXXXXXXXXX. So should I add the SPF information to that, or create a new TXT record? If I need to add it how should I do so - append it after a semicolon?
Asked
Active
Viewed 3,236 times
1 Answers
4
You should create a new TXT record with the spf information in there. If you want an example, we had to do the same at work:
$ dig -t txt booking.com
booking.com. 900 IN TXT "v=spf1 mx/25 ip4:154.54.96.0/28 include:priceline.com include:sendgrid.net ?all"
booking.com. 900 IN TXT "google-site-verification=RUz0C9k4tXs5skeRZsP5FGjiyGXptvWtg7YPC49bMQI"
Dennis Kaarsemaker
- 18,793
- 2
- 43
- 69
-
1`?all`? Do I even want to know? – Michael Hampton Mar 28 '13 at 21:15
-
No, I don't think you want to know `-all` would be better, but we have our reasons. – Dennis Kaarsemaker Mar 28 '13 at 21:21
-
Having multiple TXT records can leads you to error. You should combine them in one : https://support.google.com/a/answer/4568483 – Matthieu Apr 20 '16 at 08:26
-
and https://www.steveroot.co.uk/2012/06/27/spf-with-google/ – Matthieu Apr 20 '16 at 08:40