about summary refs log tree commit diff
path: root/nixos/modules/services/mail/opensmtpd.nix
diff options
context:
space:
mode:
authorrnhmjoj <rnhmjoj@inventati.org>2021-10-03 11:43:13 +0200
committerrnhmjoj <rnhmjoj@inventati.org>2021-10-03 11:44:57 +0200
commit31790c81dcffee8c267cbc01f16938497ed172af (patch)
tree833ade1312a99c22ac689fe281320d675e9c3fd9 /nixos/modules/services/mail/opensmtpd.nix
parent378d2c5dcec7fef958cca3760448c09a9be2b7a3 (diff)
nixos: make setgid wrappers root-owned
Diffstat (limited to 'nixos/modules/services/mail/opensmtpd.nix')
-rw-r--r--nixos/modules/services/mail/opensmtpd.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/mail/opensmtpd.nix b/nixos/modules/services/mail/opensmtpd.nix
index ef7d53e7d9277..e2647b90907d6 100644
--- a/nixos/modules/services/mail/opensmtpd.nix
+++ b/nixos/modules/services/mail/opensmtpd.nix
@@ -103,7 +103,7 @@ in {
     };
 
     security.wrappers.smtpctl = {
-      owner = "nobody";
+      owner = "root";
       group = "smtpq";
       setuid = false;
       setgid = true;