update SPF record: replace protonmail with poste.io mail server

PESO-77

- replace include:_spf.protonmail.ch with ip4:167.235.134.154 and ip6:2a01:4f8:1c1e:9c53::1 (nuremberg-a / mail.pez.sh)
- tighten from ~all (softfail) to -all (hardfail)
This commit is contained in:
Rasmus Wejlgaard 2026-03-28 20:45:44 +00:00
parent 03ce524730
commit eb18c1603c

View file

@ -432,7 +432,7 @@ resource "cloudflare_dns_record" "root-txt-spf" {
zone_id = cloudflare_zone.pez-sh.id zone_id = cloudflare_zone.pez-sh.id
name = "@" name = "@"
type = "TXT" type = "TXT"
content = "v=spf1 include:_spf.protonmail.ch ~all" content = "v=spf1 ip4:167.235.134.154 ip6:2a01:4f8:1c1e:9c53::1 -all"
ttl = 1 ttl = 1
} }