Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Async IMAP implementation in Rust

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT
NotificationsYou must be signed in to change notification settings

chatmail/async-imap

Repository files navigation

Async implementation of IMAP

Crates.io versionDownloaddocs.rs docsCI status

Based on the greatrust-imap library.

This crate lets you connect to and interact with servers that implement the IMAP protocol (RFC3501 and various extensions). After authenticating withthe server, IMAP lets you list, fetch, and search for e-mails, as well as monitor mailboxes forchanges. It supports at least the latest three stable Rust releases (possibly even older ones;check theCI results).

To connect, use the [connect] function. This gives you an unauthenticated [Client]. You canthen use [Client::login] or [Client::authenticate] to perform username/password orchallenge/response authentication respectively. This in turn gives you an authenticated[Session], which lets you access the mailboxes at the server.

The documentation within this crate borrows heavily from the various RFCs, but should not beconsidered a complete reference. If anything is unclear, follow the links to the RFCs embeddedin the documentation for the various types and methods and read the raw text there!

See theexamples/ directory for examples.

Running the test suite

To run the integration tests, you need to haveGreenMailrunning. Theeasiest way to do that is with Docker:

$docker pull greenmail/standalone:1.5.9$docker run -t -i -e GREENMAIL_OPTS='-Dgreenmail.setup.test.all -Dgreenmail.hostname=0.0.0.0 -Dgreenmail.auth.disabled -Dgreenmail.verbose' -p 3025:3025 -p 3110:3110 -p 3143:3143 -p 3465:3465 -p 3993:3993 -p 3995:3995 greenmail/standalone:1.5.9

License

Licensed under either of

Contribution

Unless you explicitly state otherwise, any contribution intentionally submittedfor inclusion in the work by you, as defined in the Apache-2.0 license, shallbe dual licensed as above, without any additional terms or conditions.

About

Async IMAP implementation in Rust

Topics

Resources

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT

Stars

Watchers

Forks

Packages

No packages published

Languages


[8]ページ先頭

©2009-2025 Movatter.jp