Fix ACL SET permission override

This commit is contained in:
Maurus Decimus
2026-04-16 21:24:18 +02:00
parent 30f596051a
commit 1e9daf1ff1
2 changed files with 5 additions and 2 deletions

View File

@@ -79,7 +79,10 @@ This version includes **multiple breaking changes**. If you are upgrading from v
- JMAP: - JMAP:
- Fix `inMailboxOtherThan` query logic. - Fix `inMailboxOtherThan` query logic.
- Fix `hasAttachment` search field (#2778) - Fix `hasAttachment` search field (#2778)
- IMAP: Increment argument max length to `8000` bytes - IMAP:
- Increment argument max length to `8000` bytes
- ACL: Add `RIGHTS` capability (#2762)
- ACL: Fix `ACL SET` permission override.
- WebDAV: Return `304` `NOT_MODIFIED` on `If-None-Match` - WebDAV: Return `304` `NOT_MODIFIED` on `If-None-Match`
- Configuration: Prefix parsing issues (#2495) - Configuration: Prefix parsing issues (#2495)
- OIDC: JWKS Exposes Symmetric Signing Key - OIDC: JWKS Exposes Symmetric Signing Key

View File

@@ -265,7 +265,7 @@ impl<T: SessionStream> Session<T> {
spawn_op!(data, { spawn_op!(data, {
// Validate mailbox // Validate mailbox
let (mailbox_id, current_mailbox, _) = data let (mailbox_id, current_mailbox, _) = data
.get_acl_mailbox(&arguments, false) .get_acl_mailbox(&arguments, true)
.await .await
.imap_ctx(&arguments.tag, trc::location!())?; .imap_ctx(&arguments.tag, trc::location!())?;
let current_mailbox = current_mailbox let current_mailbox = current_mailbox