Unfiltered ports, required for SMTP/IMAP SSL

pull/5/head
Illia Chub 2021-04-09 16:54:35 +03:00
parent 868f506c99
commit 3e75d5ef4a
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ makeConf() {
networking = { networking = {
hostName = "$(hostname)"; hostName = "$(hostname)";
firewall = { 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 ]; allowedUDPPorts = lib.mkForce [ 8443 ];
}; };
}; };