Created
March 31, 2014 10:12
-
-
Save jerzyn/9889259 to your computer and use it in GitHub Desktop.
Use the following DIG statements from the command line to verify that your DNS changes are correctly implemented:
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
| dig cname APIMAIL.YOURDOMAIN.com | |
| # should return "sendgrid.net" | |
| dig cname smtpapi._domainkey.YOURDOMAIN.com | |
| # should return "dkim.sendgrid.net" | |
| dig cname smtpapi._domainkey.APIMAIL.YOURDOMAIN.com | |
| # should return "dkim.sendgrid.net" | |
| dig a o1.APIMAIL.YOURDOMAIN.com | |
| # should return "75.126.253.120" | |
| dig txt YOURDOMAIN.com | |
| # should return "v=spf1 a mx include:sendgrid.net ~all" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment