summaryrefslogtreecommitdiff
path: root/sys/mta/default.nix
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2025-04-17 16:18:20 -0600
committerAlejandro Soto <alejandro@34project.org>2025-04-19 11:10:00 -0600
commit92554d8615a5fe3b45073a62eb5341f4598463d5 (patch)
tree9b4ac40931680d43c78a7e36902d32566c78fe9f /sys/mta/default.nix
parent94082eb5943f483dda4c1c71e50e57ee665bcddf (diff)
sys/web/sites: add host site
Diffstat (limited to 'sys/mta/default.nix')
-rw-r--r--sys/mta/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/mta/default.nix b/sys/mta/default.nix
index 7a10146..4305f70 100644
--- a/sys/mta/default.nix
+++ b/sys/mta/default.nix
@@ -118,7 +118,9 @@ in
pkgs.writeText "postfix-sender_ccerts"
(concatLines (flatten (mapAttrsToList
(username: user: map
- (alias: "${alias}@${domain} CCERTS ${concatStringsSep "," (map (certPath: config.local.pki.byPath.${certPath}.fingerprint.sha256) user.mail.certs)}")
+ (alias: "${alias}@${domain} CCERTS ${concatStringsSep ","
+ (map (certPath: config.local.pki.byPath.${certPath}.fingerprint.sha256-bytes-upper)
+ user.mail.certs)}")
([ username ] ++ user.hardAliases))
(filterAttrs (_: user: user.mail.certs != [ ]) users))));