Struct Client

Source
pub struct Client<T: Read + Write> { /* private fields */ }
Expand description

An (unauthenticated) handle to talk to an IMAP server. This is what you get when first connecting. A succesfull call to Client::login or Client::authenticate will return a Session instance that provides the usual IMAP methods.

Implementations§

Source§

impl Client<TcpStream>

Source

pub fn secure<S: AsRef<str>>( self, domain: S, ssl_connector: &TlsConnector, ) -> Result<Client<TlsStream<TcpStream>>>

This will upgrade an IMAP client from using a regular TCP connection to use TLS.

The domain parameter is required to perform hostname verification.

Source§

impl<T: Read + Write> Client<T>

Source

pub fn new(stream: T) -> Client<T>

Creates a new client over the given stream.

For an example of how to use this method to provide a pure-Rust TLS integration, see the rustls.rs in the examples/ directory.

This method primarily exists for writing tests that mock the underlying transport, but can also be used to support IMAP over custom tunnels.

Note: In case you do need to use Client::new over imap::connect, you will need to listen for the IMAP protocol server greeting before authenticating:

let mut client = Client::new(tls);
client.read_greeting().unwrap();
let session = client.login(username, password).unwrap();
Source

pub fn login<U: AsRef<str>, P: AsRef<str>>( self, username: U, password: P, ) -> Result<Session<T>, (Error, Client<T>)>

Log in to the IMAP server. Upon success a Session instance is returned; on error the original Client instance is returned in addition to the error. This is because login takes ownership of self, so in order to try again (e.g. after prompting the user for credetials), ownership of the original Client needs to be transferred back to the caller.

let client = imap::connect(
    ("imap.example.org", 993),
    "imap.example.org",
    &tls_connector).unwrap();

match client.login("user", "pass") {
    Ok(s) => {
        // you are successfully authenticated!
    },
    Err((e, orig_client)) => {
        eprintln!("error logging in: {}", e);
        // prompt user and try again with orig_client here
        return;
    }
}
Source

pub fn authenticate<A: Authenticator, S: AsRef<str>>( self, auth_type: S, authenticator: &A, ) -> Result<Session<T>, (Error, Client<T>)>

Authenticate with the server using the given custom authenticator to handle the server’s challenge.

extern crate imap;
extern crate native_tls;
use native_tls::TlsConnector;

struct OAuth2 {
    user: String,
    access_token: String,
}

impl imap::Authenticator for OAuth2 {
    type Response = String;
    fn process(&self, _: &[u8]) -> Self::Response {
        format!(
            "user={}\x01auth=Bearer {}\x01\x01",
            self.user, self.access_token
        )
    }
}

fn main() {
    let auth = OAuth2 {
        user: String::from("me@example.com"),
        access_token: String::from("<access_token>"),
    };
    let domain = "imap.example.com";
    let tls = TlsConnector::builder().build().unwrap();
    let client = imap::connect((domain, 993), domain, &tls).unwrap();
    match client.authenticate("XOAUTH2", &auth) {
        Ok(session) => {
            // you are successfully authenticated!
        },
        Err((e, orig_client)) => {
            eprintln!("error authenticating: {}", e);
            // prompt user and try again with orig_client here
            return;
        }
    };
}

Trait Implementations§

Source§

impl<T: Debug + Read + Write> Debug for Client<T>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<T: Read + Write> DerefMut for Client<T>

Source§

fn deref_mut(&mut self) -> &mut Connection<T>

Mutably dereferences the value.
Source§

impl<T: Read + Write> Deref for Client<T>

Source§

type Target = Connection<T>

The resulting type after dereferencing.
Source§

fn deref(&self) -> &Connection<T>

Dereferences the value.

Auto Trait Implementations§

§

impl<T> Freeze for Client<T>
where T: Freeze,

§

impl<T> RefUnwindSafe for Client<T>
where T: RefUnwindSafe,

§

impl<T> Send for Client<T>
where T: Send,

§

impl<T> Sync for Client<T>
where T: Sync,

§

impl<T> Unpin for Client<T>
where T: Unpin,

§

impl<T> UnwindSafe for Client<T>
where T: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<P, T> Receiver for P
where P: Deref<Target = T> + ?Sized, T: ?Sized,

Source§

type Target = T

🔬This is a nightly-only experimental API. (arbitrary_self_types)
The target type on which the method may be called.
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.