diff options
author | Alex Auvolat <alex@adnab.me> | 2022-07-12 16:35:11 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-07-12 16:35:11 +0200 |
commit | 46d952598474e851ee528515d7a9ffab88d3ad49 (patch) | |
tree | a062bc94e8a1841f8d017c97cccbebc1d44cf1a4 /src/imap/mailbox_view.rs | |
parent | d4e0e66581ff785e89edd15e2b8d68640f370a0e (diff) | |
download | aerogramme-46d952598474e851ee528515d7a9ffab88d3ad49.tar.gz aerogramme-46d952598474e851ee528515d7a9ffab88d3ad49.zip |
Implement APPEND
Diffstat (limited to 'src/imap/mailbox_view.rs')
-rw-r--r-- | src/imap/mailbox_view.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/imap/mailbox_view.rs b/src/imap/mailbox_view.rs index db6f490..e4df3d0 100644 --- a/src/imap/mailbox_view.rs +++ b/src/imap/mailbox_view.rs @@ -37,7 +37,7 @@ const DEFAULT_FLAGS: [Flag; 5] = [ /// what the client knows, and produces IMAP messages to be sent to the /// client that go along updates to `known_state`. pub struct MailboxView { - mailbox: Arc<Mailbox>, + pub(crate) mailbox: Arc<Mailbox>, known_state: UidIndex, } |