Pop3 client
This is a simple Pop3 client that implements all of the features according to RFC 1939, written in Rust.
It is used in Dust-Mail to connect to Pop servers.
Usage
You can create a new session using the connect
function or the connect_plain
function.
connect
expects a tls connector from the async-native-tls
crate. In the future more tls options will be supported.
If you already have a connected socket, you can also create a new session using the new
function.
Example
extern crate async_pop;
extern crate async_native_tls;
extern crate mailparse;
use TlsConnector;
use parse_mail;
async