summaryrefslogtreecommitdiffstats
path: root/tv/2configs/exim-smarthost.nix
diff options
context:
space:
mode:
Diffstat (limited to 'tv/2configs/exim-smarthost.nix')
-rw-r--r--tv/2configs/exim-smarthost.nix50
1 files changed, 0 insertions, 50 deletions
diff --git a/tv/2configs/exim-smarthost.nix b/tv/2configs/exim-smarthost.nix
deleted file mode 100644
index 4a0dcf61..00000000
--- a/tv/2configs/exim-smarthost.nix
+++ /dev/null
@@ -1,50 +0,0 @@
-{ config, lib, pkgs, ... }:
-
-with import <stockholm/lib>;
-
-{
- environment.systemPackages = [
- pkgs.eximlog
- ];
- krebs.exim-smarthost = {
- enable = true;
- dkim = [
- { domain = "viljetic.de"; }
- ];
- sender_domains = [
- "krebsco.de"
- "shackspace.de"
- "viljetic.de"
- ];
- relay_from_hosts = concatMap (host: host.nets.retiolum.addrs) [
- config.krebs.hosts.nomic
- config.krebs.hosts.wu
- config.krebs.hosts.xu
- ];
- internet-aliases = with config.krebs.users; [
- { from = "bku-eppler@viljetic.de"; to = tv.mail; }
- { from = "postmaster@viljetic.de"; to = tv.mail; } # RFC 822
- { from = "mirko@viljetic.de"; to = mv-ni.mail; }
- { from = "tomislav@viljetic.de"; to = tv.mail; }
- { from = "tv@viljetic.de"; to = tv.mail; }
- { from = "tv@shackspace.de"; to = tv.mail; }
- ];
- system-aliases = [
- { from = "mailer-daemon"; to = "postmaster"; }
- { from = "postmaster"; to = "root"; }
- { from = "nobody"; to = "root"; }
- { from = "hostmaster"; to = "root"; }
- { from = "usenet"; to = "root"; }
- { from = "news"; to = "root"; }
- { from = "webmaster"; to = "root"; }
- { from = "www"; to = "root"; }
- { from = "ftp"; to = "root"; }
- { from = "abuse"; to = "root"; }
- { from = "noc"; to = "root"; }
- { from = "security"; to = "root"; }
- { from = "root"; to = "tv"; }
- { from = "mirko"; to = "mv"; }
- ];
- };
- tv.iptables.input-internet-accept-tcp = singleton "smtp";
-}