diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2024-01-10 14:45:36 +0100 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2024-01-10 14:45:36 +0100 |
commit | 0c6e745d11725b4a15d2c380f5bb60067c26ddd9 (patch) | |
tree | 6e29c4012b75df51dd75afc32c8ac8bcd0070868 /src/imap/mod.rs | |
parent | 20193aa023b3f6a6d24d8127f1d8dcb81a43aa3b (diff) | |
download | aerogramme-0c6e745d11725b4a15d2c380f5bb60067c26ddd9.tar.gz aerogramme-0c6e745d11725b4a15d2c380f5bb60067c26ddd9.zip |
update imap-codec
Diffstat (limited to 'src/imap/mod.rs')
-rw-r--r-- | src/imap/mod.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/imap/mod.rs b/src/imap/mod.rs index 2640183..61a265a 100644 --- a/src/imap/mod.rs +++ b/src/imap/mod.rs @@ -175,6 +175,11 @@ async fn client(mut ctx: ClientContext) -> Result<()> { } } }, + flow => { + server.enqueue_status(Status::bye(None, "Unsupported server flow event").unwrap()); + tracing::error!("session task exited for {:?} due to unsupported flow {:?}", ctx.addr, flow); + + } }, // Managing response generated by Aerogramme |