]> git.openstreetmap.org Git - dns.git/commitdiff
Revert openstreetmap.io to standard configuration
authorTom Hughes <tom@compton.nu>
Thu, 9 Nov 2023 09:37:56 +0000 (09:37 +0000)
committerTom Hughes <tom@compton.nu>
Thu, 9 Nov 2023 09:38:37 +0000 (09:38 +0000)
dnsconfig.js
src/openstreetmap-io.js [deleted file]

index 281757196908680a626c1fda520ce6ee47b60b83..9bd7ce7cd9852fa54683364d67758af5a845a6e5 100644 (file)
@@ -55,6 +55,7 @@ OPENSTREETMAP("openstreetmap.gay", REG_GANDI);
 OPENSTREETMAP("openstreetmaps.org", REG_GANDI);
 OPENSTREETMAP("osm.org", REG_GANDI, OSM_ORG_RECORDS, SSHFP_RECORDS);
 OPENSTREETMAP("openmaps.org", REG_GANDI);
+OPENSTREETMAP("openstreetmap.io", REG_GANDI);
 OPENSTREETMAP("osm.io", REG_GANDI);
 OPENSTREETMAP("openstreetmap.li", REG_GANDI);
 OPENSTREETMAP("openworldmap.org", REG_GANDI);
@@ -106,10 +107,6 @@ var OSMFOUNDATION = loadTemplate("osmfoundation");
 
 OSMFOUNDATION("osmfoundation.org", REG_GANDI);
 
-// Domain used for testing osmfoundation.org email hosting replacement
-var OPENSTREETMAP_IO = loadTemplate("openstreetmap-io");
-OPENSTREETMAP_IO("openstreetmap.io", REG_GANDI);
-
 var STATEOFTHEMAP = loadTemplate("stateofthemap");
 
 STATEOFTHEMAP("stateofthemap.org", REG_GANDI);
diff --git a/src/openstreetmap-io.js b/src/openstreetmap-io.js
deleted file mode 100644 (file)
index 59a4306..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-D(DOMAIN, REGISTRAR, DnsProvider(PROVIDER),
-
-  // https://kb.mailbox.org/service-desk/account-article/how-to-set-up-my-domain-name
-  MX("@", 10, "mxext1.mailbox.org."),
-  MX("@", 10, "mxext2.mailbox.org."),
-  MX("@", 20, "mxext3.mailbox.org."),
-
-  // https://kb.mailbox.org/en/private/custom-domains/spf-dkim-and-dmarc-how-to-improve-spam-reputation-and-avoid-bounces
-  SPF_BUILDER({
-    label: "@",
-    parts: [
-      "v=spf1",
-      "include:mailbox.org",
-      "~all"
-    ]
-  }),
-
-  // https://kb.mailbox.org/en/private/custom-domains/spf-dkim-and-dmarc-how-to-improve-spam-reputation-and-avoid-bounces
-  CNAME("MBO0001._domainkey", "MBO0001._domainkey.mailbox.org."),
-  CNAME("MBO0002._domainkey", "MBO0002._domainkey.mailbox.org."),
-  CNAME("MBO0003._domainkey", "MBO0003._domainkey.mailbox.org."),
-  CNAME("MBO0004._domainkey", "MBO0004._domainkey.mailbox.org."),
-
-  // https://kb.mailbox.org/en/private/custom-domains/how-to-configure-e-mail-clients-automatically-through-dns
-  CNAME("autoconfig", "mailbox.org."),
-  SRV("_autodiscover._tcp", 0, 0, 443, "mailbox.org."),
-
-  // Publish DMARC report-only policy
-  DMARC_BUILDER({
-    policy: "none",
-    rua: [
-      "mailto:openstreetmap-d@dmarc.report-uri.com"
-    ],
-    failureOptions: 1
-  }),
-
-  // https://kb.mailbox.org/en/private/custom-domains/how-to-specify-a-key-server-in-the-srv-record
-  SRV("_hkps._tcp", 1, 1, 443, "pgp.mailbox.org."),
-
-
-  // mailbox.org validation
-  TXT("d00f46a3fde45d06c53f3cd5b21f213ea384e7f5", "6d4584a5987b1d97e691d9664107c604e53e083e")
-
-);
\ No newline at end of file