]> git.openstreetmap.org Git - dns.git/blob - src/openstreetmap-za.js
Add SoTM 2026
[dns.git] / src / openstreetmap-za.js
1 D(DOMAIN, REGISTRAR, DnsProvider(PROVIDER),
2
3   // Include OSM standard CAA records
4   OSM_CAA,
5
6   // Let the main domain handle the email
7
8   MX("@", 10, "a.mx.openstreetmap.org."),
9
10   // Delegate SPF policy to the main domain
11
12   SPF_BUILDER({
13     label: "@",
14     parts: [
15       "v=spf1",
16       "include:openstreetmap.org",      // main openstreetmap.org spf record
17       "-all"
18     ]
19   }),
20
21   // Delegate MTA-STS policy to the main domain
22
23   CNAME("_mta-sts", "_mta-sts.openstreetmap.org."),
24
25   // Main web site
26
27   ALIAS("@", "www.openstreetmap.org."),
28   CNAME("www", "www.openstreetmap.org."),
29   CNAME("api", "api.openstreetmap.org."),
30
31   // Aerial imagery sites
32
33   osm_web_service("aerial", "lockheed"),
34   osm_web_service("a.aerial", "lockheed"),
35   osm_web_service("b.aerial", "lockheed"),
36   osm_web_service("c.aerial", "lockheed"),
37
38   osm_web_service("coct.aerial", "lockheed"),
39   osm_web_service("a.coct.aerial", "lockheed"),
40   osm_web_service("b.coct.aerial", "lockheed"),
41   osm_web_service("c.coct.aerial", "lockheed"),
42
43   osm_web_service("topo", "lockheed"),
44   osm_web_service("a.topo", "lockheed"),
45   osm_web_service("b.topo", "lockheed"),
46   osm_web_service("c.topo", "lockheed"),
47
48   osm_web_service("namibia-topo", "lockheed"),
49   osm_web_service("a.namibia-topo", "lockheed"),
50   osm_web_service("b.namibia-topo", "lockheed"),
51   osm_web_service("c.namibia-topo", "lockheed"),
52
53 );