Move sloane.page to fastmail
parent
20ea1b8479
commit
f7133fedef
|
@ -1,8 +1,8 @@
|
||||||
-- mat.services zone configuration
|
-- mat.services zone configuration
|
||||||
-- _a = "sloane.lol"
|
-- _a = "sloane.page"
|
||||||
|
|
||||||
-- custom protonmail domain
|
-- custom fastmail domain
|
||||||
protonmail(_a, "3cc98a4f2ce0d63b7ce519fe70419b2b2a5cee6f", "dxmkd56ygkv2n3mtqzoessrkmphqqgbqoxpbmys2z4ecyc5eemmxa")
|
fastmail(_a)
|
||||||
|
|
||||||
-- forgejo on fly
|
-- forgejo on fly
|
||||||
aaaa("git", "2a09:8280:1::a:4caa")
|
aaaa("git", "2a09:8280:1::a:4caa")
|
||||||
|
|
|
@ -21,6 +21,16 @@ function protonmail(domain, verification, dkim)
|
||||||
txt("_dmarc", "v=DMARC1; p=quarantine")
|
txt("_dmarc", "v=DMARC1; p=quarantine")
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function fastmail(domain)
|
||||||
|
-- Configure mail records for fastmail
|
||||||
|
mx(domain, "in1-smtp.messagingengine.com", 10)
|
||||||
|
mx(domain, "in2-smtp.messagingengine.com", 20)
|
||||||
|
cname("fm1._domainkey", "fm1." .. domain .. ".dkim.fmhosted.com")
|
||||||
|
cname("fm2._domainkey", "fm2." .. domain .. ".dkim.fmhosted.com")
|
||||||
|
cname("fm3._domainkey", "fm3." .. domain .. ".dkim.fmhosted.com")
|
||||||
|
txt(domain, "v=spf1 include:spf.messagingengine.com ?all")
|
||||||
|
end
|
||||||
|
|
||||||
function vanityns(ns1, ns2)
|
function vanityns(ns1, ns2)
|
||||||
-- Configure vanity DNS nameservers
|
-- Configure vanity DNS nameservers
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue