We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7655c5b commit 53fa014Copy full SHA for 53fa014
src/imap.rs
@@ -457,10 +457,10 @@ impl Imap {
457
Err(first_error.unwrap_or_else(|| format_err!("No IMAP connection candidates provided")))
458
}
459
460
- /// Prepare for IMAP operation.
+ /// Prepare a new IMAP session.
461
///
462
- /// Ensure that IMAP client is connected, folders are created and IMAP capabilities are
463
- /// determined.
+ /// This creates a new IMAP connection and ensures
+ /// that folders are created and IMAP capabilities are determined.
464
pub(crate) async fn prepare(&mut self, context: &Context) -> Result<Session> {
465
let configuring = false;
466
let mut session = match self.connect(context, configuring).await {
0 commit comments