2016-04-12 13:16:17 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
2016-10-20 18:54:38 +00:00
|
|
|
with import <stockholm/lib>;
|
2016-04-12 13:16:17 +00:00
|
|
|
|
|
|
|
{
|
2021-01-24 08:47:52 +00:00
|
|
|
krebs.exim-retiolum = {
|
|
|
|
enable = true;
|
|
|
|
system-aliases = [
|
|
|
|
{ from = "root"; to = "lass"; }
|
|
|
|
];
|
|
|
|
};
|
2016-04-12 13:16:17 +00:00
|
|
|
krebs.iptables.tables.filter.INPUT.rules = [
|
|
|
|
{ predicate = "-i retiolum -p tcp --dport smtp"; target = "ACCEPT"; }
|
|
|
|
];
|
|
|
|
}
|