From 60c8c645953f78efba191c0a02afa00448f9dfe0 Mon Sep 17 00:00:00 2001 From: Victor Nawothnig Date: Fri, 20 Aug 2021 12:12:52 +0200 Subject: [PATCH] nixos/dovecot: Switch systemd service type to notify --- nixos/modules/services/mail/dovecot.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/modules/services/mail/dovecot.nix b/nixos/modules/services/mail/dovecot.nix index 1ccfb357750b..14780c15aa20 100644 --- a/nixos/modules/services/mail/dovecot.nix +++ b/nixos/modules/services/mail/dovecot.nix @@ -429,6 +429,7 @@ in startLimitIntervalSec = 60; # 1 min serviceConfig = { + Type = "notify"; ExecStart = "${dovecotPkg}/sbin/dovecot -F"; ExecReload = "${dovecotPkg}/sbin/doveadm reload"; Restart = "on-failure";