]> git.openstreetmap.org Git - dns.git/blob - src/stateofthemap.js
Add SoTM 2024
[dns.git] / src / stateofthemap.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   // SPF policy
17
18   SPF_BUILDER({
19     label: "@",
20     parts: [
21       "v=spf1",
22       "include:_spf.google.com",  // Google GSuite
23       "ip4:212.110.172.32",       // shenron ipv4
24       "ip6:2001:41c9:1:400::32",  // shenron ipv6
25       "ip4:184.104.226.98",       // fafnir ipv4
26       "ip6:2001:470:1:b3b::2",    // fafnir ipv6
27       "-all"
28     ]
29   }),
30
31   // Let google handle email
32
33   MX("@", 1, "aspmx.l.google.com."),
34   MX("@", 5, "alt1.aspmx.l.google.com."),
35   MX("@", 5, "alt2.aspmx.l.google.com."),
36   MX("@", 10, "alt3.aspmx.l.google.com."),
37   MX("@", 10, "alt4.aspmx.l.google.com."),
38
39   // Aliases for google services
40
41   CNAME("login", "ghs.googlehosted.com."),
42   CNAME("docs", "ghs.googlehosted.com."),
43   CNAME("mail", "ghs.googlehosted.com."),
44   CNAME("calendar", "ghs.googlehosted.com."),
45   CNAME("sites", "ghs.googlehosted.com."),
46
47   // Main web server and it's aliases
48
49   A("@", NAGA_IPV4),
50   AAAA("@", NAGA_IPV6),
51   A("www", NAGA_IPV4),
52   AAAA("www", NAGA_IPV6),
53   A("2024", NAGA_IPV4),
54   AAAA("2024", NAGA_IPV6),
55   A("2022", NAGA_IPV4),
56   AAAA("2022", NAGA_IPV6),
57   A("2021", NAGA_IPV4),
58   AAAA("2021", NAGA_IPV6),
59   A("2020", NAGA_IPV4),
60   AAAA("2020", NAGA_IPV6),
61   A("2019", NAGA_IPV4),
62   AAAA("2019", NAGA_IPV6),
63   A("2018", NAGA_IPV4),
64   AAAA("2018", NAGA_IPV6),
65   A("2017", NAGA_IPV4),
66   AAAA("2017", NAGA_IPV6),
67   A("2016", NAGA_IPV4),
68   AAAA("2016", NAGA_IPV6),
69   A("2013", NAGA_IPV4),
70   AAAA("2013", NAGA_IPV6),
71   A("2012", RIDLEY_IPV4),
72   A("2011", RIDLEY_IPV4),
73   A("2010", RIDLEY_IPV4),
74   A("2009", RIDLEY_IPV4),
75   A("2008", RIDLEY_IPV4),
76   A("2007", RIDLEY_IPV4),
77
78   // Google Site Verification - Grant
79   TXT("2022", "google-site-verification=wT1dJzSYM_2By372lJ_v9IU1crF21qOySEAPABxUcyo"),
80   TXT("@", "google-site-verification=pqJHZHtrC4UhevQdPlR_2gVDPml6UCwmyHq75bfWLRQ")
81
82 );