From b5319ac1d430cc31750df68a5cd4690a93159e7a Mon Sep 17 00:00:00 2001 From: Grant Slater Date: Tue, 30 Jan 2024 17:56:10 +0000 Subject: [PATCH] Switch osmfoundation.org to mailbox.org MX --- src/osmfoundation.js | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/src/osmfoundation.js b/src/osmfoundation.js index 7d83d66..866894f 100644 --- a/src/osmfoundation.js +++ b/src/osmfoundation.js @@ -13,13 +13,11 @@ D(DOMAIN, REGISTRAR, DnsProvider(PROVIDER), ], }), - // Let google handle email + // Let mailbox.org handle email - 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."), + MX("@", 10, "mxext1.mailbox.org."), + MX("@", 10, "mxext2.mailbox.org."), + MX("@", 20, "mxext3.mailbox.org."), // Handle mail for the join subdomain ourselves @@ -100,6 +98,11 @@ D(DOMAIN, REGISTRAR, DnsProvider(PROVIDER), CNAME("calendar", "ghs.googlehosted.com."), CNAME("sites", "ghs.googlehosted.com."), + // Aliases for mailbox.org services + + CNAME("autoconfig", "mailbox.org."), + SRV("_hkps._tcp", 1, 1, 443, "pgp.mailbox.org."), + // Main web server and it's aliases A("@", RIDLEY_IPV4), -- 2.45.1