More comments

This commit is contained in:
Gonne 2025-03-18 11:28:14 +01:00
parent eb75da15d4
commit e0c742fc88
Signed by: Gonne
SSH key fingerprint: SHA256:J8w3ZCNyz9MoTLV+eU7YRTVw59NYig44i0IWhbsgQG8

View file

@ -194,6 +194,8 @@ in {
# because only TOML-based keys may use macros to load files from disk.
# We want this to be able to load our sieve-script for mail forwarding.
# See https://stalw.art/docs/configuration/overview/#local-and-database-settings for more details.
#
# Unfortunately, the set of served domains as well as the catch-all accounts are still not configured via this nix module.
config.local-keys =
[
"store.*"
@ -237,7 +239,7 @@ in {
private-key = "%{file:/run/secrets/dkim_rsa}%";
domain = "${domain}";
selector = "rsa-default";
headers = ["From" "To" "Cc" "Date" "Subject" "Message-ID" "Organization" "MIME-Version" "Content-Type" "In-Reply-To" "References" "List-Id" "User-Agent" "Thread-Topic" "Thread-Index"];
headers = ["From" "To" "Cc" "Date" "Subject" "Message-ID" "Organization" "MIME-Version" "Content-Type" "In-Reply-To" "References" "List-Id" "User-Agent" "Thread-Topic" "Thread-Index"]; # default from https://stalw.art/docs/smtp/authentication/dkim/sign#signatures
algorithm = "rsa-sha256";
canonicalization = "relaxed/relaxed";
};