Personal-use NixOS configuration
0
fork

Configure Feed

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

Switch mta-sts.txt generation to use printf for more consistent results

encode42 88994f78 020e59b3

+6 -6
+6 -6
packages/server/groupware/mta-sts.nix
··· 22 22 pkgs.runCommand "testdir" { } '' 23 23 mkdir -p "$out/.well-known" 24 24 25 - echo " 26 - version: STSv1 27 - mode: enforce 28 - max_age: 604800 29 - mx: ${tlsDomain} 30 - " > "$out/.well-known/mta-sts.txt" 25 + printf "%s\n" \ 26 + "version: STSv1" \ 27 + "mode: enforce" \ 28 + "max_age: 604800" \ 29 + "mx: ${tlsDomain}" 30 + > "$out/.well-known/mta-sts.txt" 31 31 '' 32 32 } 33 33 '';