From 84d2ce3d2f33ff52cd5b01c76986f3b36fa94d9a Mon Sep 17 00:00:00 2001 From: Christine Elisabeth Koppel Date: Sun, 15 Feb 2026 23:41:41 +0100 Subject: [PATCH] Remove proxy.trusted-networks configuration from SMTP, SMTPS, and IMAPS services --- nix-system-configs/modules/system/mail-server.nix | 6 ------ 1 file changed, 6 deletions(-) diff --git a/nix-system-configs/modules/system/mail-server.nix b/nix-system-configs/modules/system/mail-server.nix index b3008e7..0b18ed0 100644 --- a/nix-system-configs/modules/system/mail-server.nix +++ b/nix-system-configs/modules/system/mail-server.nix @@ -89,22 +89,16 @@ in { smtp = { protocol = "smtp"; bind = "[::]:25"; - proxy.trusted-networks = [ - "10.1.1.250/32" - ]; }; submissions = { bind = "[::]:465"; protocol = "smtp"; tls.implicit = true; - # Also trust proxy for SMTPS - proxy.trusted-networks = ["10.1.1.250/32"]; }; imaps = { bind = "[::]:993"; protocol = "imap"; tls.implicit = true; - proxy.trusted-networks = ["10.1.1.250/32"]; }; jmap = { bind = "[::]:8080";