This commit is contained in:
Till 2025-05-03 22:10:55 +02:00
parent 99394cb573
commit bed6aaca07
7 changed files with 101 additions and 86 deletions

View file

@ -0,0 +1,14 @@
{ config, pkgs, ... }:
{
services.opendkim = {
enable = true;
domains = "csl:ktiu.net,t9e.me";
selector = "202412";
settings.UMask = "007";
};
users.users.postfix.extraGroups = [ "opendkim" ];
services.postfix.config.smtpd_milters = [ "unix:/run/opendkim/opendkim.sock" ];
}