diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2024-01-03 15:00:05 +0100 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2024-01-03 15:00:05 +0100 |
commit | ef257e286a5377031bfde9645629825d3223b3d4 (patch) | |
tree | 78853c708949b709061e5b1f24f16343ceaee895 /src/imap/mod.rs | |
parent | 6d37924399dd5d04f5be2506e3e044dd165f6399 (diff) | |
download | aerogramme-ef257e286a5377031bfde9645629825d3223b3d4.tar.gz aerogramme-ef257e286a5377031bfde9645629825d3223b3d4.zip |
implement move
Diffstat (limited to 'src/imap/mod.rs')
-rw-r--r-- | src/imap/mod.rs | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/imap/mod.rs b/src/imap/mod.rs index 693c99a..0b5555a 100644 --- a/src/imap/mod.rs +++ b/src/imap/mod.rs @@ -1,9 +1,9 @@ +mod capability; mod command; mod flow; mod mailbox_view; mod response; mod session; -mod capability; use std::net::SocketAddr; @@ -102,14 +102,18 @@ async fn client(mut ctx: ClientContext) -> Result<()> { let (mut server, _) = ServerFlow::send_greeting( ctx.stream, ServerFlowOptions::default(), - Greeting::ok(Some(Code::Capability(ctx.server_capabilities.to_vec())), "Aerogramme").unwrap(), + Greeting::ok( + Some(Code::Capability(ctx.server_capabilities.to_vec())), + "Aerogramme", + ) + .unwrap(), ) .await?; use crate::imap::response::{Body, Response as MyResponse}; use crate::imap::session::Instance; use imap_codec::imap_types::command::Command; - use imap_codec::imap_types::response::{Response, Code, Status}; + use imap_codec::imap_types::response::{Code, Response, Status}; use tokio::sync::mpsc; let (cmd_tx, mut cmd_rx) = mpsc::channel::<Command<'static>>(10); |