mailsystem: Configure rspamd as spam filter

This commit is contained in:
Thomas Preisner 2024-12-05 14:10:04 +01:00
parent b805502099
commit 9149f03384
6 changed files with 143 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;
};
}