I/O m2dir

M2dir client library, written in Rust.
This library is composed of 2 feature-gated layers:
- Low-level I/O-free coroutines: these
no_std-compatible state machines contain the whole m2dir logic and can be used anywhere - Mid-level std client: a standard, blocking m2dir client built on
std::fs
Table of contents
Features
- I/O-free coroutines:
no_stdstate machines; no filesystem calls, no async runtime, nostdrequired, drive against any blocking, async, or fuzz harness. - Standard, blocking client (requires
clientfeature) backed bystd::fs. - m2dir delivery protocol: the message-store coroutine writes to a temporary file in the same directory first, then atomically renames it to
<date>,<checksum>.<nonce>. - Sidecar flag metadata via
.meta/<id>.flags: add / remove / replace flags as a separate file alongside each entry. - No external base64 / rand / percent dependencies: the m2dir spec's custom base64, FNV hashing, percent-encoding, and pseudo-random byte generation are kept as in-crate
no_stdmodules.
[!TIP] I/O m2dir is written in Rust and uses cargo features to gate backend support. The default feature set is declared in Cargo.toml or on docs.rs.
Specification coverage
This library implements the m2dir mail storage format as I/O-agnostic coroutines.
| Coroutine | What it does |
|---|---|
M2dirCreate |
Creates an m2dir folder, its .meta sub-directory and the .m2dir marker file |
M2dirDelete |
Recursively removes an m2dir |
M2dirList |
Walks the m2store tree and surfaces every directory carrying a .m2dir marker |
M2dirEntryStore |
Writes a temporary file, then atomically renames to <date>,<checksum>.<nonce> |
M2dirEntryGet |
Locates an entry by id, reads its contents and validates the checksum |
M2dirEntryList |
Lists every confirmed entry inside an m2dir |
M2dirEntryDelete |
Removes an entry file and every sibling .meta/<id>* file |
M2dirFlagAdd |
Merges flags into an entry's .meta/<id>.flags sidecar |
M2dirFlagRemove |
Removes flags from an entry's .meta/<id>.flags sidecar (deletes the file when empty) |
M2dirFlagSet |
Replaces an entry's .meta/<id>.flags sidecar (deletes the file when the new set is empty) |
Usage
I/O m2dir can be consumed two ways, depending on how much of the I/O stack you want to own. Each mode is gated by cargo features.
Whichever mode you pick, every coroutine implements the M2dirCoroutine trait. Its resume(arg: Option<M2dirArg>) method returns a M2dirCoroutineState<Yield, Return> with two variants:
Yielded(Y): intermediate.Yis the per-coroutine yield type; every io-m2dir coroutine picks the standardM2dirYield, whose variants areWantsPid,WantsRandom { len },WantsDirCreate,WantsDirRead,WantsDirRemove,WantsFileCreate,WantsFileRead,WantsFileExists,WantsFileRemove,WantsRename. The driver services the request and feeds back the matchingM2dirArgvariant on the nextresume.Complete(R): terminal. By conventionR = Result<Output, Error>carrying the operation's final value.
I/O-free coroutines
No features required: works in #![no_std], no filesystem calls, no async runtime. You own the loop and the syscalls; the library only computes the operations to perform and consumes their results.
Drive a multi-step command (store an entry) against a blocking caller (the same shape works under async or in-memory replay):
use ;
use ;
let m2dir = from_path;
let bytes = b"From: alice@example.com\r\nSubject: Hello\r\n\r\nHello!\r\n".to_vec;
let mut coroutine = new;
let mut arg: = None;
let entry = loop ;
println!;
Std client
Enable the client feature (on by default). M2dirClient::new(root) wraps a filesystem root and exposes one method per coroutine; the resume loop is driven for you via M2dirClient::run and std::fs.
[]
= "0.1.0" # client is enabled by default
use ;
let client = new;
client.init_store.unwrap;
let inbox = client.create_m2dir.unwrap;
let bytes = b"From: alice@example.com\r\nSubject: Hello\r\n\r\nHello!\r\n".to_vec;
let entry = client.store.unwrap;
let mut flags = default;
flags.insert;
client.add_flags.unwrap;
println!;
Examples
Have a look at real-world projects built on top of this library:
- Himalaya CLI: CLI to manage emails
- Himalaya TUI: TUI to manage emails
- Neverest: CLI to synchronize emails
AI disclosure
This project is developed with AI assistance. This section documents how, so users and downstream packagers can make informed decisions.
-
Tools: Claude Code (Anthropic), Opus 4.7, invoked locally with a persistent project-scoped memory and a small set of repo-specific rules.
-
Used for: Refactors, mechanical multi-file edits, boilerplate (feature gates, error enums, derive macros, trait impls), test scaffolding, doc polish, exploratory design conversations.
-
Not used for: Engineering, critical code, git manipulation (commit, merge, rebase…), real-world tests.
-
Verification: Every AI-assisted change is read, compiled, tested, and formatted before commit (
nix develop --command cargo check / cargo test / cargo fmt). Behavioural correctness is verified against the relevant spec, not assumed from the model output. Tests are never adjusted to fit AI-generated code; the code is adjusted to fit correct behaviour. -
Limitations: AI models occasionally produce code that compiles and passes tests but is subtly wrong: off-by-one errors, missed edge cases, plausible but nonexistent APIs, stale spec references. The verification workflow catches most of this; it does not catch all of it. Bug reports are welcome and taken seriously.
-
Last reviewed: 30/05/2026
License
This project is licensed under either of:
at your option.
Social
- Chat on Matrix
- News on Mastodon or RSS
- Mail at pimalaya.org@posteo.net
Sponsoring
Special thanks to the NLnet foundation and the European Commission that have been financially supporting the project for years:
- 2022 → 2023: NGI Assure
- 2023 → 2024: NGI Zero Entrust
- 2024 → 2026: NGI Zero Core
- 2027 in preparation…
If you appreciate the project, feel free to donate using one of the following providers:
