]> git.openstreetmap.org Git - dns.git/blob - src/osmfoundation.js
d662e4f59f46906c8e054dff8afdbdb9bdb52ef9
[dns.git] / src / osmfoundation.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 google handle email
17
18   MX("@", 1, "aspmx.l.google.com.", TTL("1h")),
19   MX("@", 5, "alt1.aspmx.l.google.com.", TTL("1h")),
20   MX("@", 5, "alt2.aspmx.l.google.com.", TTL("1h")),
21   MX("@", 10, "alt3.aspmx.l.google.com.", TTL("1h")),
22   MX("@", 10, "alt4.aspmx.l.google.com.", TTL("1h")),
23
24   // Handle mail for the join subdomain ourselves
25
26   MX("join", 10, "a.mx.openstreetmap.org."),
27
28   // SPF policy
29
30   SPF_BUILDER({
31     label: "@",
32     parts: [
33       "v=spf1",
34       "include:_spf.google.com",  // Google GSuite
35       "ip4:212.110.172.32",       // shenron ipv4
36       "ip6:2001:41c9:1:400::32",  // shenron ipv6
37       "ip4:184.104.226.98",       // fafnir ipv4
38       "ip6:2001:470:1:b3b::2",    // fafnir ipv6
39       "-all"
40     ]
41   }),
42
43   SPF_BUILDER({
44     label: "wiki",
45     parts: [
46       "v=spf1",
47       "ip4:184.104.226.98",       // fafnir ipv4
48       "ip6:2001:470:1:b3b::2",    // fafnir ipv6
49       "-all"
50     ]
51   }),
52
53   SPF_BUILDER({
54     label: "board",
55     parts: [
56       "v=spf1",
57       "ip4:184.104.226.98",       // fafnir ipv4
58       "ip6:2001:470:1:b3b::2",    // fafnir ipv6
59       "-all"
60     ]
61   }),
62
63   SPF_BUILDER({
64     label: "dwg",
65     parts: [
66       "v=spf1",
67       "ip4:184.104.226.98",       // fafnir ipv4
68       "ip6:2001:470:1:b3b::2",    // fafnir ipv6
69       "-all"
70     ]
71   }),
72
73   SPF_BUILDER({
74     label: "mwg",
75     parts: [
76       "v=spf1",
77       "ip4:184.104.226.98",       // fafnir ipv4
78       "ip6:2001:470:1:b3b::2",    // fafnir ipv6
79       "-all"
80     ]
81   }),
82
83   // Apple Business Manager verification
84   TXT("@", "apple-domain-verification=ZzBG2msRtUDehTMW"),
85
86   // Publish DMARC report-only policy
87
88   DMARC_BUILDER({
89     policy: "none",
90     rua: [
91       "mailto:openstreetmap-d@dmarc.report-uri.com"
92     ],
93     failureOptions: 1
94   }),
95
96   // DKIM keys
97
98   TXT("google._domainkey", "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCJmTBAkYRCocCCNtVsdRNMlQel8kNfjPYJpjEm7woEgZh9yZeDzxImtz+u73oUF4+7bXzrNYbP946WNQIwAba1J69he8L1qfPBJLd3Z/fgmuaGdWcxpDno2EY4cQ8PrzvI6Vfm+6YAFANl8w09CIg41ykdlzH4iUJXD35k3SIl3wIDAQAB"),
99   TXT("20201112._domainkey", "v=DKIM1; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAz4OyJc77mpW5djxVfZm18HcmJHQLpo7B2Z8Og8byICjDiG91Tpkv5ws3xIbMsi/tVA6p5L76uL0TGKlo4ayewYvJUTC22+hBWARUuWA0DgeMwBpW/dNUOJHBABCTouolvXLKRTPTefA177Y5jYbD7ZeJAR4ZnFbZX6spimXCT66AyhqCBSrOCXYXFm3ons5ANkkQBNZ/jMYczYs9T1ijNEbBNTJmLO+whOrYLyGd3iZ9X9iOmuNFBCgXp0tsN//FBsOyTl559/XY25r3GZhiKXMbrZ1IJewqJlG0+hN1y9qwWGgq5YpZPt5YJ1KGjIrcFX59/PhNQX4khPOaD5g7ZQIDAQAB", AUTOSPLIT),
100
101   // Google postmaster tools verification
102
103   CNAME("uaqn4jv2xaoe", "gv-jun5dginqysxph.dv.googlehosted.com."),
104
105   // Aliases for google services
106
107   CNAME("login", "ghs.googlehosted.com."),
108   CNAME("docs", "ghs.googlehosted.com."),
109   CNAME("mail", "ghs.googlehosted.com."),
110   CNAME("calendar", "ghs.googlehosted.com."),
111   CNAME("sites", "ghs.googlehosted.com."),
112
113   // Main web server and it's aliases
114
115   A("@", RIDLEY_IPV4),
116   A("www", RIDLEY_IPV4),
117   A("wiki", RIDLEY_IPV4),
118   A("blog", RIDLEY_IPV4),
119   A("crm", RIDLEY_IPV4),
120   A("join", RIDLEY_IPV4),
121   A("board", RIDLEY_IPV4),
122   A("dwg", RIDLEY_IPV4),
123   A("mwg", RIDLEY_IPV4),
124   A("operations", NAGA_IPV4),
125   AAAA("operations", NAGA_IPV6),
126
127   // Nextcloud instance
128
129   CNAME("files", "nextcloud-openstreetmapfoundation.cloud68.systems."),
130
131   A("hardware", IDRIS_IPV4)
132
133 );