Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Shivawkes/8e5692dc96241dad130e05f9ed7fcb44 to your computer and use it in GitHub Desktop.
Save Shivawkes/8e5692dc96241dad130e05f9ed7fcb44 to your computer and use it in GitHub Desktop.
Gandi subdomain DNS configuration for Mailgun validation
# Gandi subdomain DNS configuration for Mailgun validation
# - Add the SPF record as TXT and SPF
# - Suffix the DKIM record and `email` CNAME with the subdomain
# ex: `mg.domain.com`
mg 10800 IN CNAME mailgun.org.
@ 10800 IN SPF "v=spf1 include:mailgun.org ~all"
@ 10800 IN TXT "v=spf1 include:mailgun.org ~all"
mailo._domainkey.mg 10800 IN TXT "k=rsa; p=MIG...QAB"
email.mg 10800 IN CNAME mailgun.org.
@ 10800 IN MX 10 mxa.mailgun.org.
@ 10800 IN MX 10 mxb.mailgun.org.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment