2024-02-27 15:00:17 +00:00
|
|
|
function protonmail(domain, verification, dkim)
|
2022-11-06 02:48:42 +00:00
|
|
|
-- Configure mail records for protonmail
|
|
|
|
|
|
|
|
-- Verification
|
2024-02-27 14:40:34 +00:00
|
|
|
txt(domain, "protonmail-verification=" .. verification)
|
2022-11-06 02:48:42 +00:00
|
|
|
|
|
|
|
-- MX records
|
|
|
|
mx(domain, "mail.protonmail.ch", 10)
|
|
|
|
mx(domain, "mailsec.protonmail.ch", 20)
|
|
|
|
|
|
|
|
-- SPF
|
|
|
|
txt(domain, "v=spf1 include:_spf.protonmail.ch mx ~all")
|
|
|
|
|
|
|
|
-- DKIM
|
2024-02-27 15:00:17 +00:00
|
|
|
-- TODO: use concat()?
|
|
|
|
cname("protonmail._domainkey", "protonmail.domainkey." .. dkim .. ".domains.proton.ch.")
|
|
|
|
cname("protonmail2._domainkey", "protonmail2.domainkey." .. dkim .. ".domains.proton.ch.")
|
|
|
|
cname("protonmail3._domainkey", "protonmail3.domainkey." .. dkim .. ".domains.proton.ch.")
|
2022-11-06 02:48:42 +00:00
|
|
|
|
|
|
|
-- DMARC
|
|
|
|
txt("_dmarc", "v=DMARC1; p=quarantine")
|
|
|
|
end
|
2023-07-26 16:51:00 +00:00
|
|
|
|
|
|
|
function vanityns(ns1, ns2)
|
|
|
|
-- Configure vanity DNS nameservers
|
|
|
|
|
|
|
|
aaaa(concat(ns1, "ns"), "2001:67c:25a0::1")
|
|
|
|
a(concat(ns1, "ns"), "185.142.218.1")
|
|
|
|
aaaa(concat(ns2, "ns"), "2001:67c:25a0::2")
|
|
|
|
a(concat(ns2, "ns"), "185.142.218.2")
|
|
|
|
end
|