]> git.openstreetmap.org Git - dns.git/commitdiff
Add special handling for openstreetmap.town
authorGrant Slater <github@firefishy.com>
Tue, 28 Nov 2023 03:40:26 +0000 (03:40 +0000)
committerGrant Slater <github@firefishy.com>
Tue, 28 Nov 2023 03:40:26 +0000 (03:40 +0000)
dnsconfig.js
src/openstreetmap-town.js [new file with mode: 0644]

index 9bd7ce7cd9852fa54683364d67758af5a845a6e5..d743785964bc323759d025615f82f64c3ac4942c 100644 (file)
@@ -80,9 +80,12 @@ OPENSTREETMAP("openstreetmapdata.org", REG_GANDI);
 // Disable due to registration issue
 // OPENSTREETMAP("openstreetmap.al", REG_NONE);
 
-// Mastodon
-OPENSTREETMAP("openstreetmap.town", REG_GANDI);
-// Pending transfer: OPENSTREETMAP("osm.town", REG_GANDI);
+// Mastodon redirects to en.osm.town
+var OPENSTREETMAP_TOWN = loadTemplate("openstreetmap-town");
+OPENSTREETMAP_TOWN("openstreetmap.town", REG_GANDI);
+
+// Domain owned by Amanda McCann
+// osm.town
 
 // Managed independently by Guillaume Rischard
 // openstreetmap.lu
diff --git a/src/openstreetmap-town.js b/src/openstreetmap-town.js
new file mode 100644 (file)
index 0000000..0d56540
--- /dev/null
@@ -0,0 +1,40 @@
+D(DOMAIN, REGISTRAR, DnsProvider(PROVIDER),
+
+  // Publish CAA records indicating that only letsencrypt should issue certificates
+
+  CAA_BUILDER({
+    label: "@",
+    iodef: "mailto:hostmaster@openstreetmap.org",
+    issue: [
+      "letsencrypt.org",
+    ],
+    issuewild: [
+      "letsencrypt.org",
+    ],
+  }),
+
+  // Let the main domain handle the email
+
+  MX("@", 10, "a.mx.openstreetmap.org."),
+
+  // Delegate SPF policy to the main domain
+
+  SPF_BUILDER({
+    label: "@",
+    parts: [
+      "v=spf1",
+      "include:openstreetmap.org",      // main openstreetmap.org spf record
+      "-all"
+    ]
+  }),
+
+  // Delegate MTA-STS policy to the main domain
+
+  CNAME("_mta-sts", "_mta-sts.openstreetmap.org."),
+
+  // Redirect en.openstreetmap.town to en.osm.town
+
+  A("en", NAGA_IPV4),
+  AAAA("en", NAGA_IPV6)
+
+);
\ No newline at end of file