diff options
author | Alex Auvolat <alex@adnab.me> | 2022-06-29 16:04:11 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-06-29 16:04:11 +0200 |
commit | 9ef069923bbf7358caf1f2739befe20adbdca760 (patch) | |
tree | 31d8e072d58ae5717703c9339d69664405d4d2dd /src/imap/mailbox_view.rs | |
parent | d737e33b5ac4a09ada10de70b78b866481d69cba (diff) | |
download | aerogramme-9ef069923bbf7358caf1f2739befe20adbdca760.tar.gz aerogramme-9ef069923bbf7358caf1f2739befe20adbdca760.zip |
Add call to testing procedure
Diffstat (limited to 'src/imap/mailbox_view.rs')
-rw-r--r-- | src/imap/mailbox_view.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/imap/mailbox_view.rs b/src/imap/mailbox_view.rs index d03538f..ee36911 100644 --- a/src/imap/mailbox_view.rs +++ b/src/imap/mailbox_view.rs @@ -37,6 +37,9 @@ impl MailboxView { /// has a satisfactory summary of the current mailbox's state. /// These are the messages that are sent in response to a SELECT command. pub async fn new(mailbox: Arc<Mailbox>) -> Result<(Self, Vec<Body>)> { + // TODO THIS IS JUST A TEST REMOVE LATER + mailbox.test().await?; + let state = mailbox.current_uid_index().await; let new_view = Self { |