]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
auth: Auth master process is now running as default_internal_user by default.
authorTimo Sirainen <tss@iki.fi>
Sun, 14 Mar 2010 13:28:31 +0000 (15:28 +0200)
committerTimo Sirainen <tss@iki.fi>
Sun, 14 Mar 2010 13:28:31 +0000 (15:28 +0200)
Workers are still running as root, so PAM will continue to work as before.

--HG--
branch : HEAD

src/auth/auth-settings.c

index 620d1eb8f242f99bf063aa4b2ce7353d8e27aca4..72fe966f0ba7d76489f8e6ab7f3f4f2b092d2b42 100644 (file)
@@ -40,7 +40,7 @@ struct service_settings auth_service_settings = {
        .protocol = "",
        .type = "",
        .executable = "auth",
-       .user = "",
+       .user = "$default_internal_user",
        .group = "",
        .privileged_group = "",
        .extra_groups = "",
@@ -62,7 +62,7 @@ struct service_settings auth_service_settings = {
 
 /* <settings checks> */
 static struct file_listener_settings auth_worker_unix_listeners_array[] = {
-       { "auth-worker", 0600, "", "" }
+       { "auth-worker", 0600, "$default_internal_user", "" }
 };
 static struct file_listener_settings *auth_worker_unix_listeners[] = {
        &auth_worker_unix_listeners_array[0]