aboutsummaryrefslogtreecommitdiff
path: root/src/imap/session.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/imap/session.rs')
-rw-r--r--src/imap/session.rs6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/imap/session.rs b/src/imap/session.rs
index 2fa413e..30885d1 100644
--- a/src/imap/session.rs
+++ b/src/imap/session.rs
@@ -52,7 +52,7 @@ impl Manager {
return async { Response::bad("Too fast! Send less pipelined requests.") }.boxed()
}
Err(TrySendError::Closed(_)) => {
- return async { Response::bad("Session task has existed.") }.boxed()
+ return async { Err(BalError::Text("Terminated session".to_string())) }.boxed()
}
};
@@ -147,6 +147,10 @@ impl Instance {
msg.tx.send(res).unwrap_or_else(|e| {
tracing::warn!("failed to send imap response to manager: {:#?}", e)
});
+
+ if let flow::State::Logout = &self.state {
+ break;
+ }
}
//@FIXME add more info about the runner