Skip to content

Commit

Permalink
Merge pull request #17 from mattcanty/mattcanty-patch-3
Browse files Browse the repository at this point in the history
Gmail MX records
  • Loading branch information
mattcanty committed Aug 13, 2024
2 parents e09c4cf + 30b1479 commit 99e1cb2
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion dnsconfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,12 @@ D("mattcanty.com", NON_REG, DnsProvider(R53),
);

D("controlaltrepeat.net", NON_REG, DnsProvider(R53),
TXT("@", "google-site-verification=zg0vSqTUbu4DFD2w_wq4KBGk3rt5iGCNH94QAt67oNY")
TXT("@", "google-site-verification=zg0vSqTUbu4DFD2w_wq4KBGk3rt5iGCNH94QAt67oNY"),
MX("@", 1, "ASPMX.L.GOOGLE.COM."),
MX("@", 5, "ALT1.ASPMX.L.GOOGLE.COM."),
MX("@", 5, "ALT2.ASPMX.L.GOOGLE.COM."),
MX("@", 10, "ALT3.ASPMX.L.GOOGLE.COM."),
MX("@", 10, "ALT4.ASPMX.L.GOOGLE.COM.")
);

D("bassguitarbook.com", NON_REG, DnsProvider(R53),
Expand Down

0 comments on commit 99e1cb2

Please sign in to comment.