]> git.openstreetmap.org Git - dns.git/commitdiff
Reconfigure DNS for the new edition
authorKamil Monicz <kamil@monicz.dev>
Mon, 12 Feb 2024 10:46:55 +0000 (11:46 +0100)
committerGitHub <noreply@github.com>
Mon, 12 Feb 2024 10:46:55 +0000 (11:46 +0100)
src/stateofthemap-eu.js

index a8de02ecb7fe1999b6ac3f4e09909e80a0cb7233..14776b1ebfd9df7168232dce76a8caf2c6b29715 100644 (file)
@@ -13,25 +13,21 @@ D(DOMAIN, REGISTRAR, DnsProvider(PROVIDER),
     ],
   }),
 
-  // Let OSMBE handle email (through Fastmail)
-  // https://www.fastmail.help/hc/en-us/articles/1500000280261
+  // Block email delivery
 
-  MX("@", 10, "in1-smtp.messagingengine.com."),
-  MX("@", 20, "in2-smtp.messagingengine.com."),
-  
-  TXT("@", "v=spf1 include:spf.messagingengine.com ?all"),
-  CNAME("fm1._domainkey", "fm1.stateofthemap.eu.dkim.fmhosted.com."),
-  CNAME("fm2._domainkey", "fm2.stateofthemap.eu.dkim.fmhosted.com."),
-  CNAME("fm3._domainkey", "fm3.stateofthemap.eu.dkim.fmhosted.com."),
+  TXT("_dmarc", "v=DMARC1; p=reject; sp=reject; adkim=s; aspf=s;"),
+  TXT("*._domainkey", "v=DKIM1; p="),
+  TXT("@", "v=spf1 -all"),
 
   // Site hosted on github pages
 
-  ALIAS("@", "osmbe.github.io."),
-  CNAME("www", "osmbe.github.io."),
+  ALIAS("@", "openstreetmap-polska.github.io."),
+  CNAME("www", "openstreetmap-polska.github.io."),
   
   // Previous editions
   
   A("2014", "49.12.5.171"),
-  CNAME("2023", "osmbe.github.io.")
+  CNAME("2023", "osmbe.github.io."),
+  CNAME("2024", "openstreetmap-polska.github.io.")
   
 );