mailsystem: Configure rspamd as spam filter

This commit is contained in:
Thomas Preisner 2024-12-05 14:10:04 +01:00
parent b7fac23bd1
commit d35763a8a2
6 changed files with 144 additions and 2 deletions

11
mailsystem/kresd.nix Normal file
View file

@ -0,0 +1,11 @@
{
config,
lib,
...
}: let
cfg = config.mailsystem;
in {
config = lib.mkIf cfg.enable {
services.kresd.enable = true;
};
}