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

49 lines
1.3 KiB
Nix
Raw Normal View History

2020-01-11 19:43:56 +00:00
{ config, lib, pkgs, ... }: with import <stockholm/lib>; let
2016-04-12 13:16:40 +00:00
2020-01-11 19:43:56 +00:00
to = concatStringsSep "," [
2021-01-16 21:33:58 +00:00
"lass@green.r"
2020-01-11 19:43:56 +00:00
];
2021-01-16 21:33:58 +00:00
mails = import <secrets/mails.nix>;
2016-04-12 13:16:40 +00:00
2020-01-11 19:43:56 +00:00
in {
2020-04-18 12:57:21 +00:00
environment.systemPackages = [ pkgs.review-mail-queue ];
2016-04-12 13:16:40 +00:00
krebs.exim-smarthost = {
enable = true;
2016-04-12 14:32:58 +00:00
dkim = [
{ domain = "lassul.us"; }
];
primary_hostname = "lassul.us";
2016-04-12 13:16:40 +00:00
sender_domains = [
"lassul.us"
];
relay_from_hosts = map (host: host.nets.retiolum.ip6.addr) [
2018-05-20 08:28:49 +00:00
config.krebs.hosts.blue
config.krebs.hosts.coaxmetal
config.krebs.hosts.green
config.krebs.hosts.mors
2019-10-14 13:17:38 +00:00
config.krebs.hosts.xerxes
2016-04-12 13:16:40 +00:00
];
2020-01-11 19:43:56 +00:00
internet-aliases = map (from: { inherit from to; }) mails;
2016-04-12 13:16:40 +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 = "lass"; }
];
};
krebs.iptables.tables.filter.INPUT.rules = [
{ predicate = "-p tcp --dport smtp"; target = "ACCEPT"; }
];
}