7 个版本 (1 个稳定版)
使用旧 Rust 2015
1.0.6 | 2017 年 3 月 2 日 |
---|---|
0.0.6 | 2016 年 6 月 18 日 |
0.0.5 | 2015 年 6 月 7 日 |
0.0.4 | 2015 年 4 月 15 日 |
0.0.1 | 2014 年 11 月 21 日 |
#182 in 电子邮件
每月下载 27 次
18KB
513 代码行
rust-pop3
POP3 客户端 for Rust
此客户端支持 SSL。SSL 使用传递给 POP3Stream 的 connect 方法的 SSLContext 进行配置。如果不需要 SSL 支持,只需传递 None。本项目使用 rust-openssl 库来支持 SSL。
安装
通过您的 Cargo.toml
添加 pop3
[dependencies]
pop3 = "*"
使用方法
extern crate pop3;
extern crate openssl;
use openssl::ssl::{SslContext, SslMethod};
use pop3::POP3Stream;
use pop3::POP3Result::{POP3Stat, POP3List, POP3Message};
fn main() {
let mut gmail_socket = match POP3Stream::connect("pop.gmail.com", 995, Some(SslContext::new(SslMethod::Sslv23).unwrap())) {
Ok(s) => s,
Err(e) => panic!("{}", e)
};
gmail_socket.login("username", "password");
let stat = gmail_socket.stat();
match stat {
POP3Stat {num_email,
mailbox_size} => println!("num_email: {}, mailbox_size:{}", num_email, mailbox_size),
_ => println!("Err for stat"),
}
let list_all = gmail_socket.list(None);
match list_all {
POP3List {emails_metadata} => {
for i in emails_metadata.iter() {
println!("message_id: {}, message_size: {}", i.message_id, i.message_size);
}
},
_ => println!("Err for list_all"),
}
let message_25 = gmail_socket.retr(25);
match message_25 {
POP3Message{raw} => {
for i in raw.iter() {
println!("{}", i);
}
},
_ => println!("Error for message_25"),
}
gmail_socket.quit();
}
许可证
MIT
依赖项
~5MB
~114K SLoC