]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
auth: auth-client socket should be owned by $default_internal_user
authorTimo Sirainen <tss@iki.fi>
Wed, 11 Sep 2013 22:38:54 +0000 (01:38 +0300)
committerTimo Sirainen <tss@iki.fi>
Wed, 11 Sep 2013 22:38:54 +0000 (01:38 +0300)
It's mostly the same as auth-login, which is also owned by it.

src/auth/auth-settings.c

index 27a4e4521855d5b3b29428c4860b65578ee1b069..a834c8adcad5239d654f5c0de38493d20c1bc9b3 100644 (file)
@@ -19,7 +19,7 @@ static struct file_listener_settings auth_unix_listeners_array[] = {
        { "login/login", 0666, "", "" },
        { "token-login/tokenlogin", 0666, "", "" },
        { "auth-login", 0600, "$default_internal_user", "" },
-       { "auth-client", 0600, "", "" },
+       { "auth-client", 0600, "$default_internal_user", "" },
        { "auth-userdb", 0666, "$default_internal_user", "" },
        { "auth-master", 0600, "", "" }
 };