tv exim-smarthost: open smtp port

This commit is contained in:
tv 2016-02-01 17:53:16 +01:00
parent fe025213ea
commit b58f37ce38
2 changed files with 4 additions and 2 deletions

View File

@ -41,7 +41,6 @@ with lib;
tv.iptables = {
enable = true;
input-internet-accept-new-tcp = [
"smtp"
"xmpp-client"
"xmpp-server"
];

View File

@ -1,4 +1,6 @@
{ config, pkgs, ... }:
{ config, lib, pkgs, ... }:
with lib;
{
krebs.exim-smarthost = {
@ -34,4 +36,5 @@
{ from = "mirko"; to = "mv"; }
];
};
tv.iptables.input-internet-accept-new-tcp = singleton "smtp";
}