Cross-platform desktop email client with custom IMAP implementation in Rust.
- Custom IMAP Implementation: Full RFC 9051 (IMAP4rev2) support with RFC 3501 fallback
- OAuth2 Authentication: Support for Gmail, Outlook, Yahoo with PKCE
- Modern GUI: Built with iced (Elm Architecture)
- Pure Rust TLS: No OpenSSL dependency (uses rustls)
- Cross-Platform: Linux, Windows, macOS
| Crate | Description |
|---|---|
mailledger |
Desktop GUI application |
mailledger-imap |
IMAP client library (RFC 9051) |
mailledger-smtp |
SMTP client library (RFC 5321) |
mailledger-oauth |
OAuth2 authentication |
mailledger-mime |
MIME parsing and generation |
mailledger-core |
Core business logic and storage |
# Build all crates
cargo build --workspace
# Run the application
RUST_LOG=debug cargo run -p mailledger
# Run tests
cargo test --workspace
# Check code quality
cargo clippy --workspace
cargo fmt --all --check- Rust 1.88+ (Edition 2024)
- Linux: Wayland compositor (X11 not supported)
mailledger (GUI)
|
+-- mailledger-core (business logic, storage)
|
+-- mailledger-imap (IMAP protocol)
+-- mailledger-smtp (SMTP protocol)
+-- mailledger-oauth (OAuth2)
+-- mailledger-mime (MIME parsing)
MIT License - see LICENSE for details.