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 /tests | |
parent | d2c3b641fea6106d0fa2a7940abbc026e003f707 (diff) | |
download | aerogramme-e2d77defc8496c2795860c6901d752e2c8d1c4ac.tar.gz aerogramme-e2d77defc8496c2795860c6901d752e2c8d1c4ac.zip |
fixed anonymous + authenticated imap logic
Diffstat (limited to 'tests')
-rw-r--r-- | tests/imap_features.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/imap_features.rs b/tests/imap_features.rs index 844b176..3479292 100644 --- a/tests/imap_features.rs +++ b/tests/imap_features.rs @@ -187,7 +187,7 @@ fn select_inbox(imap: &mut TcpStream) -> Result<()> { } fn status_mailbox(imap: &mut TcpStream) -> Result<()> { - imap.write(&b"25 STATUS archive (UIDNEXT MESSAGES)\r\n"[..])?; + imap.write(&b"25 STATUS archive (UIDNEXT MESSAGES)\r\n"[..])?; let mut buffer: [u8; 6000] = [0; 6000]; let _read = read_lines(imap, &mut buffer, Some(&b"25 OK"[..]))?; |