himalaya 0.5.4

Command-line interface for email management
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Mailbox module.
//!
//! This module contains everything related to mailbox.

pub mod mbox_arg;
pub mod mbox_handler;

pub mod attr_entity;
pub use attr_entity::*;

pub mod attrs_entity;
pub use attrs_entity::*;

pub mod mbox_entity;
pub use mbox_entity::*;

pub mod mboxes_entity;
pub use mboxes_entity::*;