Forked from luanshiliuxng/dns-subdomain-gandi-mailgun.txt
Last active
October 18, 2018 15:13
-
-
Save zagriyen/ccdc3a194e1f9856aadcbbd28356f73a to your computer and use it in GitHub Desktop.
Gandi subdomain DNS configuration for Mailgun validation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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" | |
krs._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