X-Git-Url: https://git.openstreetmap.org./dns.git/blobdiff_plain/2be0aa31e74d747f8fcf891a4365772dc7a0abb7..776cc38b7646cbe6a6177cd0da7dd5d33d955e05:/src/stateofthemap-eu.js diff --git a/src/stateofthemap-eu.js b/src/stateofthemap-eu.js index 25cb14a..14776b1 100644 --- a/src/stateofthemap-eu.js +++ b/src/stateofthemap-eu.js @@ -4,7 +4,6 @@ D(DOMAIN, REGISTRAR, DnsProvider(PROVIDER), CAA_BUILDER({ label: "@", - ttl: "1h", iodef: "mailto:hostmaster@openstreetmap.org", issue: [ "letsencrypt.org", @@ -14,13 +13,21 @@ D(DOMAIN, REGISTRAR, DnsProvider(PROVIDER), ], }), - // Let openstreetmap.at handle email + // Block email delivery - MX("@", 1, "openstreetmap.at.", TTL("1h")), + TXT("_dmarc", "v=DMARC1; p=reject; sp=reject; adkim=s; aspf=s;"), + TXT("*._domainkey", "v=DKIM1; p="), + TXT("@", "v=spf1 -all"), - // Main web server and it's aliases - - A("@", "88.198.206.107", TTL("10m")), - A("www", "88.198.206.107", TTL("10m")) + // Site hosted on github pages + 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("2024", "openstreetmap-polska.github.io.") + );