From 3e75d5ef4ae4905590cc8d4c31a2784eff0fe4ae Mon Sep 17 00:00:00 2001 From: Illia Chub Date: Fri, 9 Apr 2021 16:54:35 +0300 Subject: [PATCH] Unfiltered ports, required for SMTP/IMAP SSL --- nixos-infect | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos-infect b/nixos-infect index f7a54fb..8134782 100755 --- a/nixos-infect +++ b/nixos-infect @@ -64,7 +64,7 @@ makeConf() { networking = { hostName = "$(hostname)"; firewall = { - allowedTCPPorts = lib.mkForce [ 22 25 80 143 443 587 8443 ]; + allowedTCPPorts = lib.mkForce [ 22 25 80 143 443 465 587 993 8443 ]; allowedUDPPorts = lib.mkForce [ 8443 ]; }; };