Merge pull request #4 from danbst/patch-1
don't enable firewall by default
This commit is contained in:
commit
cd9c8a3690
|
@ -20,7 +20,6 @@
|
||||||
hostName = "${host_prefix}.${domain}";
|
hostName = "${host_prefix}.${domain}";
|
||||||
|
|
||||||
firewall = {
|
firewall = {
|
||||||
enable = true;
|
|
||||||
allowedTCPPorts = [ 25 587 ]
|
allowedTCPPorts = [ 25 587 ]
|
||||||
++ (if enable_imap then [ 143 ] else [])
|
++ (if enable_imap then [ 143 ] else [])
|
||||||
++ (if enable_pop3 then [ 110 ] else []);
|
++ (if enable_pop3 then [ 110 ] else []);
|
||||||
|
|
Loading…
Reference in New Issue