mailrs-jmap 1.1.2

JMAP (RFC 8620 + RFC 8621) server-side dispatcher and method handlers — framework-agnostic, BYO mail store via the MailStore trait.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Per-method JMAP handlers (RFC 8621).

pub mod email;
pub mod mailbox;
pub mod submission;
pub mod thread;

pub use email::{handle_email_get, handle_email_query, handle_email_set};
pub use mailbox::{handle_mailbox_get, handle_mailbox_query, mailbox_role};
pub use submission::handle_email_submission_set;
pub use thread::handle_thread_get;