mailman: trigger postfix reload when caddy renews

TLS Let's Encrypt certificates
This commit is contained in:
teutat3s 2023-02-25 17:54:47 +01:00
parent d8f608db54
commit 664a0bd5b9
Signed by: teutat3s
GPG key ID: 4FA1D3FA524F22C1

View file

@ -29,6 +29,23 @@ in {
hostname = "list.pub.solar";
};
systemd.paths.watcher-caddy-ssl-file = {
description = "Watches for changes in caddy's TLS cert file (after renewals) to reload postfix";
pathConfig = {
PathChanged = "/var/lib/caddy/.local/share/caddy/certificates/acme-v02.api.letsencrypt.org-directory/list.pub.solar/list.pub.solar.crt";
Unit = "postfix-reload.service";
};
partOf = ["postfix.service"];
};
systemd.services."postfix-reload" = {
description = "Reloads postfix config";
serviceConfig.Type = "oneshot";
script = ''
${pkgs.systemd}/bin/systemctl reload postfix
'';
};
services.mailman = {
enable = true;
# We use caddy instead of nginx