himalaya 0.7.0

Command-line interface for email management.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod account;
pub mod email;
pub mod envelope;
pub mod flag;
pub mod folder;
#[cfg(feature = "imap-backend")]
pub mod imap;
pub mod tpl;

pub use self::account::{args, handlers, Account, Accounts};
pub use self::email::*;
pub use self::envelope::*;
pub use self::flag::*;
pub use self::folder::*;
#[cfg(feature = "imap-backend")]
pub use self::imap::*;
pub use self::tpl::*;