From: Timo Sirainen Date: Wed, 27 Apr 2016 20:58:12 +0000 (+0300) Subject: lazy-expunge: Open the mailbox with ACLs ignored. X-Git-Tag: 2.3.0.rc1~3927 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0bcfa2a649ee4da64580648698481df41cd63b24;p=thirdparty%2Fdovecot%2Fcore.git lazy-expunge: Open the mailbox with ACLs ignored. --- diff --git a/src/plugins/lazy-expunge/lazy-expunge-plugin.c b/src/plugins/lazy-expunge/lazy-expunge-plugin.c index 89491d71a4..cce392dac5 100644 --- a/src/plugins/lazy-expunge/lazy-expunge-plugin.c +++ b/src/plugins/lazy-expunge/lazy-expunge-plugin.c @@ -110,7 +110,7 @@ mailbox_open_or_create(struct mailbox_list *list, struct mailbox *src_box, name = get_dest_vname(list, src_box); box = mailbox_alloc(list, name, MAILBOX_FLAG_NO_INDEX_FILES | - MAILBOX_FLAG_SAVEONLY); + MAILBOX_FLAG_SAVEONLY | MAILBOX_FLAG_IGNORE_ACLS); if (mailbox_open(box) == 0) { *error_r = NULL; return box;