]> git.openstreetmap.org Git - dns.git/blob - src/stateofthemap.js
Use templated standard CAA
[dns.git] / src / stateofthemap.js
1 D(DOMAIN, REGISTRAR, DnsProvider(PROVIDER),
2
3   // Include OSM standard CAA records
4   OSM_CAA,
5
6   // SPF policy
7
8   SPF_BUILDER({
9     label: "@",
10     parts: [
11       "v=spf1",
12       "include:_spf.google.com",  // Google GSuite
13       "ip4:212.110.172.32",       // shenron ipv4
14       "ip6:2001:41c9:1:400::32",  // shenron ipv6
15       "ip4:184.104.226.98",       // fafnir ipv4
16       "ip6:2001:470:1:b3b::2",    // fafnir ipv6
17       "-all"
18     ]
19   }),
20
21   // Let google handle email
22
23   MX("@", 1, "aspmx.l.google.com."),
24   MX("@", 5, "alt1.aspmx.l.google.com."),
25   MX("@", 5, "alt2.aspmx.l.google.com."),
26   MX("@", 10, "alt3.aspmx.l.google.com."),
27   MX("@", 10, "alt4.aspmx.l.google.com."),
28
29   // Aliases for google services
30
31   CNAME("login", "ghs.googlehosted.com."),
32   CNAME("docs", "ghs.googlehosted.com."),
33   CNAME("mail", "ghs.googlehosted.com."),
34   CNAME("calendar", "ghs.googlehosted.com."),
35   CNAME("sites", "ghs.googlehosted.com."),
36
37   // Main web server and it's aliases
38
39   osm_web_service("@", "naga"),
40   osm_web_service("www", "naga"),
41   osm_web_service("2025", "naga"),
42   osm_web_service("2024", "naga"),
43   osm_web_service("2022", "naga"),
44   osm_web_service("2021", "naga"),
45   osm_web_service("2020", "naga"),
46   osm_web_service("2019", "naga"),
47   osm_web_service("2018", "naga"),
48   osm_web_service("2017", "naga"),
49   osm_web_service("2016", "naga"),
50   osm_web_service("2013", "naga"),
51   osm_web_service("2012", "ridley"),
52   osm_web_service("2011", "ridley"),
53   osm_web_service("2010", "ridley"),
54   osm_web_service("2009", "naga"),
55   osm_web_service("2008", "naga"),
56   osm_web_service("2007", "naga"),
57
58   // Google Site Verification - Grant
59   TXT("2022", "google-site-verification=wT1dJzSYM_2By372lJ_v9IU1crF21qOySEAPABxUcyo"),
60   TXT("@", "google-site-verification=pqJHZHtrC4UhevQdPlR_2gVDPml6UCwmyHq75bfWLRQ"),
61
62 );