]> git.openstreetmap.org Git - dns.git/blob - src/stateofthemap-eu.js
2a21842993e32a58f0ed76fcedc40cc946faba53
[dns.git] / src / stateofthemap-eu.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 OSMBE handle email (through Fastmail)
17   // https://www.fastmail.help/hc/en-us/articles/1500000280261
18
19   MX("@", 10, "in1-smtp.messagingengine.com."),
20   MX("@", 20, "in2-smtp.messagingengine.com."),
21   
22   TXT("@", "v=spf1 include:spf.messagingengine.com ?all"),
23   CNAME("fm1._domainkey", "fm1.stateofthemap.eu.dkim.fmhosted.com."),
24   CNAME("fm2._domainkey", "fm2.stateofthemap.eu.dkim.fmhosted.com."),
25   CNAME("fm3._domainkey", "fm3.stateofthemap.eu.dkim.fmhosted.com."),
26
27   // Site hosted on github pages
28
29   ALIAS("@", "osmbe.github.io."),
30   CNAME("www", "osmbe.github.io."),
31   
32   // Previous editions
33   
34   A("2014", "49.12.5.171")
35   
36 );