Personal-use NixOS configuration
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Make mta-sts report correct mail record

encode42 6d71c510 6f2af50f

+2 -1
+2 -1
packages/server/groupware/mta-sts.nix
··· 3 3 { pkgs, flakeLib, ... }: 4 4 5 5 let 6 + mailDomain = "mx.${domain}"; 6 7 tlsDomain = "mta-sts.${domain}"; 7 8 in 8 9 { ··· 26 27 "version: STSv1" \ 27 28 "mode: enforce" \ 28 29 "max_age: 604800" \ 29 - "mx: ${tlsDomain}" \ 30 + "mx: ${mailDomain}" \ 30 31 > "$out/.well-known/mta-sts.txt" 31 32 '' 32 33 }