Skip to content

Commit

Permalink
Merge pull request #236305 from NixOS/backport-236126-to-release-23.05
Browse files Browse the repository at this point in the history
  • Loading branch information
Janik-Haag authored Jun 27, 2023
2 parents 97a8755 + 8ebdbef commit d6670e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nixos/modules/services/mail/exim.nix
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,8 @@ in
wantedBy = [ "multi-user.target" ];
restartTriggers = [ config.environment.etc."exim.conf".source ];
serviceConfig = {
ExecStart = "+${cfg.package}/bin/exim -bdf -q${cfg.queueRunnerInterval}";
ExecReload = "+${coreutils}/bin/kill -HUP $MAINPID";
ExecStart = "!${cfg.package}/bin/exim -bdf -q${cfg.queueRunnerInterval}";
ExecReload = "!${coreutils}/bin/kill -HUP $MAINPID";
User = cfg.user;
};
preStart = ''
Expand Down

0 comments on commit d6670e6

Please sign in to comment.