forked from Fachschaft/nixConfig
Compare commits
No commits in common. "6788b31aad9739505d02b5f56317dc0f08fc1a4e" and "eb75da15d4456ecd933b3ccf070472995d6a1930" have entirely different histories.
6788b31aad
...
eb75da15d4
2 changed files with 2 additions and 3 deletions
|
@ -194,8 +194,6 @@ in {
|
||||||
# because only TOML-based keys may use macros to load files from disk.
|
# 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.
|
# 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.
|
# 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 =
|
config.local-keys =
|
||||||
[
|
[
|
||||||
"store.*"
|
"store.*"
|
||||||
|
@ -239,7 +237,7 @@ in {
|
||||||
private-key = "%{file:/run/secrets/dkim_rsa}%";
|
private-key = "%{file:/run/secrets/dkim_rsa}%";
|
||||||
domain = "${domain}";
|
domain = "${domain}";
|
||||||
selector = "rsa-default";
|
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"]; # default from https://stalw.art/docs/smtp/authentication/dkim/sign#signatures
|
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"];
|
||||||
algorithm = "rsa-sha256";
|
algorithm = "rsa-sha256";
|
||||||
canonicalization = "relaxed/relaxed";
|
canonicalization = "relaxed/relaxed";
|
||||||
};
|
};
|
||||||
|
|
|
@ -32,6 +32,7 @@ in {
|
||||||
config = {
|
config = {
|
||||||
transport_maps = ["hash:/var/lib/mailman/data/postfix_lmtp"];
|
transport_maps = ["hash:/var/lib/mailman/data/postfix_lmtp"];
|
||||||
local_recipient_maps = ["hash:/var/lib/mailman/data/postfix_lmtp"];
|
local_recipient_maps = ["hash:/var/lib/mailman/data/postfix_lmtp"];
|
||||||
|
smtputf8_enable = "no"; # HRZ does not know SMTPUTF8
|
||||||
};
|
};
|
||||||
relayHost = "mathebau.de"; # Relay to mail vm which relays to HRZ (see https://www.hrz.tu-darmstadt.de/services/it_services/email_infrastruktur/index.de.jsp)
|
relayHost = "mathebau.de"; # Relay to mail vm which relays to HRZ (see https://www.hrz.tu-darmstadt.de/services/it_services/email_infrastruktur/index.de.jsp)
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue