diff options
author | tv <tv@krebsco.de> | 2016-02-01 17:53:16 +0100 |
---|---|---|
committer | tv <tv@krebsco.de> | 2016-02-01 17:53:16 +0100 |
commit | eda65468603c6f3370840274efdcdf14f42d82f2 (patch) | |
tree | 828775895b1b6d7a213c3410a397face195da2b7 /tv/2configs/exim-smarthost.nix | |
parent | d82584450cc02aeca15aa7df1bb4731863b558e4 (diff) |
tv exim-smarthost: open smtp port
Diffstat (limited to 'tv/2configs/exim-smarthost.nix')
-rw-r--r-- | tv/2configs/exim-smarthost.nix | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tv/2configs/exim-smarthost.nix b/tv/2configs/exim-smarthost.nix index f5f63d2..bcfea78 100644 --- a/tv/2configs/exim-smarthost.nix +++ b/tv/2configs/exim-smarthost.nix @@ -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"; } |