stockholm/tv/2configs/exim-smarthost.nix

41 lines
1.2 KiB
Nix
Raw Normal View History

2016-02-01 16:53:16 +00:00
{ config, lib, pkgs, ... }:
2016-02-14 15:43:44 +00:00
with config.krebs.lib;
2015-09-26 22:24:17 +00:00
{
krebs.exim-smarthost = {
enable = true;
primary_hostname = "${config.networking.hostName}.retiolum";
sender_domains = [
"shackspace.de"
"viljetic.de"
];
relay_from_hosts = [
"10.243.13.37"
];
internet-aliases = with config.krebs.users; [
2015-10-05 01:07:14 +00:00
{ from = "mirko@viljetic.de"; to = mv.mail; }
2015-09-26 22:24:17 +00:00
{ from = "tomislav@viljetic.de"; to = tv.mail; }
{ from = "tv@destroy.dyn.shackspace.de"; to = tv.mail; }
2015-10-05 01:07:14 +00:00
{ from = "tv@viljetic.de"; to = tv.mail; }
2015-09-26 22:24:17 +00:00
];
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"; }
];
};
2016-02-01 16:53:16 +00:00
tv.iptables.input-internet-accept-new-tcp = singleton "smtp";
2015-09-26 22:24:17 +00:00
}