Note that we support older stable versions

[skip ci]
This commit is contained in:
Jon Gjengset 2018-11-24 15:16:22 -05:00
parent cb83d0d26c
commit 86d4da84d7
No known key found for this signature in database
GPG key ID: D64AC9D67176DC71
2 changed files with 4 additions and 2 deletions

View file

@ -12,7 +12,8 @@
This crate lets you connect to and interact with servers that implement the IMAP protocol ([RFC This crate lets you connect to and interact with servers that implement the IMAP protocol ([RFC
3501](https://tools.ietf.org/html/rfc3501) and various extensions). After authenticating with 3501](https://tools.ietf.org/html/rfc3501) and various extensions). After authenticating with
the server, IMAP lets you list, fetch, and search for e-mails, as well as monitor mailboxes for the server, IMAP lets you list, fetch, and search for e-mails, as well as monitor mailboxes for
changes. changes. It supports at least the latest three stable Rust releases (possibly even older ones;
check the [CI results](https://travis-ci.org/jonhoo/rust-imap)).
To connect, use the [`connect`] function. This gives you an unauthenticated [`Client`]. You can To connect, use the [`connect`] function. This gives you an unauthenticated [`Client`]. You can
then use [`Client::login`] or [`Client::authenticate`] to perform username/password or then use [`Client::login`] or [`Client::authenticate`] to perform username/password or

View file

@ -1,7 +1,8 @@
//! This crate lets you connect to and interact with servers that implement the IMAP protocol ([RFC //! This crate lets you connect to and interact with servers that implement the IMAP protocol ([RFC
//! 3501](https://tools.ietf.org/html/rfc3501) and various extensions). After authenticating with //! 3501](https://tools.ietf.org/html/rfc3501) and various extensions). After authenticating with
//! the server, IMAP lets you list, fetch, and search for e-mails, as well as monitor mailboxes for //! the server, IMAP lets you list, fetch, and search for e-mails, as well as monitor mailboxes for
//! changes. //! changes. It supports at least the latest three stable Rust releases (possibly even older ones;
//! check the [CI results](https://travis-ci.org/jonhoo/rust-imap)).
//! //!
//! To connect, use the [`connect`] function. This gives you an unauthenticated [`Client`]. You can //! To connect, use the [`connect`] function. This gives you an unauthenticated [`Client`]. You can
//! then use [`Client::login`] or [`Client::authenticate`] to perform username/password or //! then use [`Client::login`] or [`Client::authenticate`] to perform username/password or