From 24d6b9bddb8427781f853c27b570f7a600ed0aca Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Fri, 19 Dec 2025 13:55:20 -0600 Subject: [PATCH] update mcintire.me mx --- terraform/dns_mcintire.tf | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/terraform/dns_mcintire.tf b/terraform/dns_mcintire.tf index 9eb1058..c1a8ec1 100644 --- a/terraform/dns_mcintire.tf +++ b/terraform/dns_mcintire.tf @@ -1,6 +1,3 @@ -# DNS configuration for mcintire.me domain -# Mail records point to Mailcow on mail.w5isp.com - resource "powerdns_record" "mcintire_soa" { depends_on = [powerdns_zone.mcintire_me] zone = "mcintire.me." @@ -17,7 +14,7 @@ resource "powerdns_record" "mcintire_mx_mailcow" { name = "mcintire.me." type = "MX" ttl = 3600 - records = ["10 mail.w5isp.com."] + records = ["10 mail.mcintire.me."] } resource "powerdns_record" "mcintire_mx_backup" {