Compare commits

..

1 commit

Author SHA1 Message Date
6dbd7d6a80 Address first round of review 2024-12-15 09:32:12 +01:00

View file

@ -35,7 +35,7 @@ in {
proxy_interfaces = "130.83.2.184"; proxy_interfaces = "130.83.2.184";
smtputf8_enable = "no"; # HRZ does not know SMTPUTF8 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 = "192.168.0.24"; # Relay to eihort which relays to HRZ (see https://www.hrz.tu-darmstadt.de/services/it_services/email_infrastruktur/index.de.jsp)
}; };
mailman = { mailman = {
enable = true; enable = true;
@ -64,9 +64,9 @@ in {
systemd.timers."mailAllowlist" = { systemd.timers."mailAllowlist" = {
wantedBy = ["timers.target"]; wantedBy = ["timers.target"];
timerConfig = { timerConfig = {
OnBootSec = "1h"; # Run every hour OnBootSec = "5m"; # Run every 5 minutes
OnUnitActiveSec = "1h"; OnUnitActiveSec = "5m";
RandomizedDelaySec = "10m"; # prevent overload on regular intervals RandomizedDelaySec = "2m"; # prevent overload on regular intervals
Unit = "mailAllowlist.service"; Unit = "mailAllowlist.service";
}; };
}; };