Fix ACL SET permission override
This commit is contained in:
@@ -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
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user