// Publish CAA records indicating that only letsencrypt should issue certificates
- CAA("@", "issue", "letsencrypt.org", CF_TTL_ANY),
- CAA("@", "issuewild", "letsencrypt.org", CF_TTL_ANY),
- CAA("@", "iodef", "mailto:hostmaster@openstreetmap.org"),
+ CAA_BUILDER({
+ label: "@",
+ iodef: "mailto:hostmaster@openstreetmap.org",
+ issue: [
+ "letsencrypt.org",
+ ],
+ issuewild: [
+ "letsencrypt.org",
+ ],
+ }),
// Let openstreetmap.at handle email
- MX("@", 1, "openstreetmap.at.", TTL("1h")),
+ MX("@", 1, "mail.openstreetmap.at."),
// Main web server and it's aliases
- A("@", "88.198.206.107", TTL("10m")),
- A("www", "88.198.206.107", TTL("10m"))
+ A("@", "88.198.206.107"),
+ A("www", "88.198.206.107")
);