default.nix: add options to open ports 993 (IMAPS) and 995 (POP3S)
Dovecot is already configured to serve IMAPS on port 993 and POP3S on port 995.
This commit is contained in:
@@ -25,7 +25,9 @@ in
|
||||
networking.firewall = {
|
||||
allowedTCPPorts = [ 25 587 ]
|
||||
++ (if enableImap then [ 143 ] else [])
|
||||
++ (if enablePop3 then [ 110 ] else []);
|
||||
++ (if enableImapSsl then [ 993 ] else [])
|
||||
++ (if enablePop3 then [ 110 ] else [])
|
||||
++ (if enablePop3Ssl then [ 995 ] else []);
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user