From c0a783e05a9edf3d7bd8e6319b313febeb0f885f Mon Sep 17 00:00:00 2001 From: Galileo <46945263+641i130@users.noreply.github.com> Date: Sun, 30 Oct 2022 19:24:49 -0500 Subject: [PATCH] Update examples/plaintext.rs Co-authored-by: Jon Gjengset --- examples/plaintext.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/examples/plaintext.rs b/examples/plaintext.rs index 51bf0c6..4e46725 100644 --- a/examples/plaintext.rs +++ b/examples/plaintext.rs @@ -23,8 +23,7 @@ fn plaintext() -> imap::error::Result> { eprintln!("\nUNENCRYPTED connection made!!!!\n"); eprintln!("This is highly not recommended.\n"); // to do anything useful with the e-mails, we need to log in - - // Makes an unencrypted login message to the IMAP server. This is risky business! + // keep in mind that this is over plain TCP, so may leak all your secrets! let mut imap_session = client.login("user", "pass").unwrap(); // we want to fetch the first email in the INBOX mailbox