From d522857ef0d25f424cd97323f06003eea2cb877a Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Wed, 7 Feb 2018 13:06:06 +0200 Subject: [PATCH] imap-hibernate: Change imap-hibernate default socket permissions to allow default_internal_group It would be enough to allow only imap processes access to it, but it shouldn't really harm to allow other processes access to it also. --- src/imap-hibernate/imap-hibernate-settings.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/imap-hibernate/imap-hibernate-settings.c b/src/imap-hibernate/imap-hibernate-settings.c index dadf77d9e0..29847de28a 100644 --- a/src/imap-hibernate/imap-hibernate-settings.c +++ b/src/imap-hibernate/imap-hibernate-settings.c @@ -10,7 +10,7 @@ /* */ static struct file_listener_settings imap_hibernate_unix_listeners_array[] = { - { "imap-hibernate", 0600, "", "" } + { "imap-hibernate", 0660, "", "$default_internal_group" } }; static struct file_listener_settings *imap_hibernate_unix_listeners[] = { &imap_hibernate_unix_listeners_array[0] -- 2.47.3