dovecot-2.2: acl: Oops, ignore_acls check was reversed.

dovecot at dovecot.org dovecot at dovecot.org
Thu Jul 3 19:18:33 UTC 2014


details:   http://hg.dovecot.org/dovecot-2.2/rev/a372391290a3
changeset: 17592:a372391290a3
user:      Timo Sirainen <tss at iki.fi>
date:      Thu Jul 03 22:16:48 2014 +0300
description:
acl: Oops, ignore_acls check was reversed.

diffstat:

 src/plugins/acl/acl-mailbox.c |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r 00b3aa3842b7 -r a372391290a3 src/plugins/acl/acl-mailbox.c
--- a/src/plugins/acl/acl-mailbox.c	Thu Jul 03 21:55:31 2014 +0300
+++ b/src/plugins/acl/acl-mailbox.c	Thu Jul 03 22:16:48 2014 +0300
@@ -583,7 +583,7 @@
 						 mailbox_get_name(box));
 
 	v->free = acl_mailbox_free;
-	if (ignore_acls) {
+	if (!ignore_acls) {
 		abox->acl_enabled = TRUE;
 		v->is_readonly = acl_is_readonly;
 		v->exists = acl_mailbox_exists;


More information about the dovecot-cvs mailing list