sieve-parser 0.1.2

Parsing the Sieve language and exporting an abstract representation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod discard;
pub mod fileinto;
pub mod keep;
pub mod redirect;
pub mod reject;
pub mod vacation;

pub use discard::ActionDiscard;
pub use fileinto::ActionFileinto;
pub use keep::ActionKeep;
pub use redirect::ActionRedirect;
pub use reject::ActionReject;
pub use vacation::ActionVacation;