From: Timo Sirainen Date: Sun, 14 Mar 2010 13:28:31 +0000 (+0200) Subject: auth: Auth master process is now running as default_internal_user by default. X-Git-Tag: 2.0.beta4~58 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=635df5b4cbcd7b24c825e01d9dd66d3a4274c4c7;p=thirdparty%2Fdovecot%2Fcore.git auth: Auth master process is now running as default_internal_user by default. Workers are still running as root, so PAM will continue to work as before. --HG-- branch : HEAD --- diff --git a/src/auth/auth-settings.c b/src/auth/auth-settings.c index 620d1eb8f2..72fe966f0b 100644 --- a/src/auth/auth-settings.c +++ b/src/auth/auth-settings.c @@ -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 = { /* */ 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]