]> git.openstreetmap.org Git - dns.git/blob - src/stateofthemap-eu.js
650ce307404b8470b4aa3e87a553b585e8d3da1f
[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 );