diff options
Diffstat (limited to 'src/imap/session.rs')
-rw-r--r-- | src/imap/session.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/imap/session.rs b/src/imap/session.rs index f4e3d0f..12bbfee 100644 --- a/src/imap/session.rs +++ b/src/imap/session.rs @@ -1,10 +1,10 @@ -use anyhow::{Result, anyhow, bail}; use crate::imap::capability::{ClientCapability, ServerCapability}; use crate::imap::command::{anonymous, authenticated, selected}; use crate::imap::flow; use crate::imap::request::Request; use crate::imap::response::{Response, ResponseOrIdle}; use crate::login::ArcLoginProvider; +use anyhow::{anyhow, bail, Result}; use imap_codec::imap_types::command::Command; //----- @@ -63,7 +63,6 @@ impl Instance { } } - pub async fn command(&mut self, cmd: Command<'static>) -> ResponseOrIdle { // Command behavior is modulated by the state. // To prevent state error, we handle the same command in separate code paths. |