From: Timo Sirainen Date: Wed, 7 Feb 2018 14:48:28 +0000 (+0200) Subject: ipc: Change ipc socket's owner to $default_internal_user X-Git-Tag: 2.3.9~2342 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b66fc6ecce80e2fbc4104afd61d53ba375977690;p=thirdparty%2Fdovecot%2Fcore.git ipc: Change ipc socket's owner to $default_internal_user This is mainly used by director process, which runs as $default_internal_user. This setting change is always required for director installations. Also the ipc process itself is already running as $default_internal_user so this should be a rather safe change. --- diff --git a/src/ipc/ipc-settings.c b/src/ipc/ipc-settings.c index 5faba25cdb..d1610d6252 100644 --- a/src/ipc/ipc-settings.c +++ b/src/ipc/ipc-settings.c @@ -9,7 +9,7 @@ /* */ static struct file_listener_settings ipc_unix_listeners_array[] = { - { "ipc", 0600, "", "" }, + { "ipc", 0600, "$default_internal_user", "" }, { "login/ipc-proxy", 0600, "$default_login_user", "" } }; static struct file_listener_settings *ipc_unix_listeners[] = {