diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2024-01-01 17:54:48 +0100 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2024-01-01 17:54:48 +0100 |
commit | e2d77defc8496c2795860c6901d752e2c8d1c4ac (patch) | |
tree | 6c7dc021389c67318171086a25ee025ee00954f3 /src/imap/mod.rs | |
parent | d2c3b641fea6106d0fa2a7940abbc026e003f707 (diff) | |
download | aerogramme-e2d77defc8496c2795860c6901d752e2c8d1c4ac.tar.gz aerogramme-e2d77defc8496c2795860c6901d752e2c8d1c4ac.zip |
fixed anonymous + authenticated imap logic
Diffstat (limited to 'src/imap/mod.rs')
-rw-r--r-- | src/imap/mod.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/imap/mod.rs b/src/imap/mod.rs index 73cd943..589231b 100644 --- a/src/imap/mod.rs +++ b/src/imap/mod.rs @@ -1,6 +1,7 @@ mod command; mod flow; mod mailbox_view; +mod response; mod session; use std::task::{Context, Poll}; @@ -19,7 +20,7 @@ use crate::config::ImapConfig; use crate::login::ArcLoginProvider; /// Server is a thin wrapper to register our Services in BàL -pub struct Server{} +pub struct Server {} pub async fn new(config: ImapConfig, login: ArcLoginProvider) -> Result<Server> { unimplemented!(); |