]> git.openstreetmap.org Git - dns.git/blob - src/openstreetmap-town.js
Add upcoming event domain
[dns.git] / src / openstreetmap-town.js
1 D(DOMAIN, REGISTRAR, DnsProvider(PROVIDER),
2
3   // Publish CAA records indicating that only letsencrypt should issue certificates
4
5   CAA_BUILDER({
6     label: "@",
7     iodef: "mailto:hostmaster@openstreetmap.org",
8     issue: [
9       "letsencrypt.org",
10     ],
11     issuewild: [
12       "letsencrypt.org",
13     ],
14   }),
15
16   // Let the main domain handle the email
17
18   MX("@", 10, "a.mx.openstreetmap.org."),
19
20   // Delegate SPF policy to the main domain
21
22   SPF_BUILDER({
23     label: "@",
24     parts: [
25       "v=spf1",
26       "include:openstreetmap.org",      // main openstreetmap.org spf record
27       "-all"
28     ]
29   }),
30
31   // Delegate MTA-STS policy to the main domain
32
33   CNAME("_mta-sts", "_mta-sts.openstreetmap.org."),
34
35   // Redirect en.openstreetmap.town to en.osm.town
36
37   A("en", NAGA_IPV4),
38   AAAA("en", NAGA_IPV6)
39
40 );