agent-first-mail 0.1.0

Give your AI agent a mailbox it can actually work in — your mail pulled down into plain files it reads, triages, drafts, and files entirely on your machine, with nothing sent or changed on the real mailbox until you confirm.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod case_archive;
mod ids;
mod message;
mod push;

pub use case_archive::{ArchiveMessageItem, ArchiveMessages, CaseMessages};
pub use ids::{ArchiveUid, CaseUid, MessageId, PushId};
pub use message::{
    AttachmentRef, AuthAlignment, AuthVerdict, ImapRef, MailDirection, MessageAuthentication,
    MessageFile, MessageStatus, RemoteLocation, RemoteState, RemoteSyncState, WorkspacePendingPush,
    WorkspacePushState, WorkspaceState,
};
pub use push::{
    MessageActionPush, MessagePushAction, OutboundPush, PushItem, PushKind, PushLocation,
    PushPayload, PushStepState, PushStepStatus,
};