From 7fc3465d56f9b444360aafa1f50d7bdc990033d7 Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Wed, 20 Aug 2025 07:09:47 -0500 Subject: [PATCH] smtp1: Fix mynetworks setting for k8s network The "Kubernetes" subnet is a /27, not a /28. There are hosts in that upper section that was masked out, and these were unable to send e-mails via the relay because they were excluded from the `mynetworks` value. --- host_vars/smtp1.pyrocufflink.blue/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/host_vars/smtp1.pyrocufflink.blue/main.yml b/host_vars/smtp1.pyrocufflink.blue/main.yml index 4b5b739..dd418d4 100644 --- a/host_vars/smtp1.pyrocufflink.blue/main.yml +++ b/host_vars/smtp1.pyrocufflink.blue/main.yml @@ -11,4 +11,4 @@ smtp_mynetworks: - '[2605:6000:3ccd:da01::]/64' - 172.30.0.240/28 - 172.31.1.0/24 -- 172.30.0.160/28 +- 172.30.0.160/27