From: Timo Sirainen Date: Sun, 9 May 2010 19:05:39 +0000 (+0300) Subject: Changed default_internal_user to dovenull. X-Git-Tag: 2.0.beta5~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8e60a99f55d928e2644d028c3e3e73b30573bced;p=thirdparty%2Fdovecot%2Fcore.git Changed default_internal_user to dovenull. --HG-- branch : HEAD --- diff --git a/doc/example-config/conf.d/10-master.conf b/doc/example-config/conf.d/10-master.conf index 738ec6bf3b..a707b48d8a 100644 --- a/doc/example-config/conf.d/10-master.conf +++ b/doc/example-config/conf.d/10-master.conf @@ -4,7 +4,7 @@ # Login user is internally used by login processes. This is the most untrusted # user in Dovecot system. It shouldn't have access to anything at all. -#default_login_user = dovecot +#default_login_user = dovenull # Internal user is used by unprivileged processes. It should be separate from # login user, so that login processes can't disturb other processes. diff --git a/src/master/master-settings.c b/src/master/master-settings.c index 82a59757c3..e6ac47a528 100644 --- a/src/master/master-settings.c +++ b/src/master/master-settings.c @@ -198,7 +198,7 @@ static const struct master_settings master_default_settings = { .listen = "*, ::", .ssl = "yes:no:required", .default_internal_user = "dovecot", - .default_login_user = "dovecot", + .default_login_user = "dovenull", .default_process_limit = 100, .default_client_limit = 1000, .default_vsz_limit = 256*1024*1024,