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