diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2024-01-08 22:44:48 +0100 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2024-01-08 22:44:48 +0100 |
commit | 7eaa7c3ce8908d452147621e79fbc97155efb445 (patch) | |
tree | c22c2a22af5aa235e538274344f3eb2b451bf774 /src | |
parent | 5cc0a4e5129020aad1d5a7ab1cc976fb6bdc259a (diff) | |
download | aerogramme-7eaa7c3ce8908d452147621e79fbc97155efb445.tar.gz aerogramme-7eaa7c3ce8908d452147621e79fbc97155efb445.zip |
Refuse \n without \rbug/thunderbird
Diffstat (limited to 'src')
-rw-r--r-- | src/imap/mod.rs | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/imap/mod.rs b/src/imap/mod.rs index 4142ef9..2640183 100644 --- a/src/imap/mod.rs +++ b/src/imap/mod.rs @@ -20,7 +20,7 @@ use futures::stream::{FuturesUnordered, StreamExt}; use tokio::net::TcpListener; use tokio::sync::watch; -use imap_codec::imap_types::response::Greeting; +use imap_codec::imap_types::{core::Text, response::Greeting}; use imap_flow::server::{ServerFlow, ServerFlowEvent, ServerFlowOptions}; use imap_flow::stream::AnyStream; @@ -108,7 +108,12 @@ async fn client(mut ctx: ClientContext) -> Result<()> { // Send greeting let (mut server, _) = ServerFlow::send_greeting( ctx.stream, - ServerFlowOptions::default(), + ServerFlowOptions { + crlf_relaxed: false, + literal_accept_text: Text::unvalidated("OK"), + literal_reject_text: Text::unvalidated("Literal rejected"), + ..ServerFlowOptions::default() + }, Greeting::ok( Some(Code::Capability(ctx.server_capabilities.to_vec())), "Aerogramme", |