pre-alpha release

screenshot: Sample generated config on first run.
Sample generated config on first run.
screenshot: Viewing a thread.
Viewing a thread.

An early release with basic features and only Maildir support has been published in meli’s git repositories. meli is a new experimental mail client for the terminal. It’s a from-scratch implementation in order to experiment with ideas I had about a client’s design.

Contributions and development will be hosted on meli-devel@, as on the long run I would like to make mailing-list driven development comfortable and newbie-friendly by eliminating effort on the side of the contributor; the mailing list software should lift most of the burden by acting as a bug tracker, patch archive, maintainer tool, build tool. Note: no contribution guide has been drafted yet.

You can follow meli-announce@, my mastodon account @epilys@chaos.social and the RSS feed for updates.

General discussion, comments, etc is welcome on meli-general@.

meli aims to be a modal and hopefully a very configurable client. An API for plugins is in the current plans, allowing sufficient control of the client through scripting.

what is usable now

While this stuff is on the roadmap, the pre-alpha supports Maildir folder structures, and three ways to render every folder: one row per thread, one row per message and one row per message but with the thread structure visible. Browsing a thread is done in the same view as reading the email, where you can simultaneously browse the thread and read an mail’s content. Replying to an email can also come with the same thread view in order to have the whole conversation available while composing; composing is done in a different tab, so you can switch tabs anytime.

Commands can be executed via configurable shortcuts (bindings for the current view can be listed with the ? shortcut) in NORMAL mode or commands in EXECUTE mode. Documentation is provided in a man page located in the root folder of the repository. You can view it with man -l meli.1 or rendered with mandoc on the documentation page.

what basic functionality is coming later

For the moment there’s no attachment ability in new e-mails, no IMAP support, no full text search ability or integration with notmuch. I suspect notmuch integration will coincide with the start of the API.

what I am doing generally

MUAs are a lot of work, it turns out. I’ve been trying to scale it horizontally from the beginning, and I believe this helped as I was more focused on the overall architecture than individual functionalities. I have also tried to avoid adding dependencies when I could. I find it scary to install something and get hundreds of packages pulled.

I hope I can make it into a decent tool :)

technical stuff

meli is written in Rust, with an Entity-Component-System design. The mail specific functions are done in a separate library crate, which means it can be reused for other mail applications.

entity component system

A description of the ECS logic can be found here https://en.wikipedia.org/wiki/Entity_component_system Every component of the application represents a single entity that can draw on the terminal, access user data or spawn processes. This is the entity & component part of the ECS architecture merged together.

All components implement the Component trait:

The program’s data state is held in a System object called Context. The State object holds the necessary bits to run the basic event loop.

drawing output

An event loop looks roughly like this:

UI updates are supposed to be incremental for speed. Single envelope updates should only cause the minimally required UI updates.

When drawing, Components update the grid and push the area coordinates of their updates to Context. When State finally redraws in the next event loop, it does a horizontal sweep in all the dirty areas to avoid redrawing common parts. Areas are sorted by x coordinate and common segments of all dirty areas are drawn once.

data handling

To represent relationships between different objects without references, vector indexes and hashmap keys are used. This way most data reading or modification is done inside the Context object. Caution must be exercised to keep all these indirect references up to date when something is modified or deleted.

A great difficulty I face in debugging is visualising all these connections. I’ve started a library to provide access to Debug implementations for gdb’s pretty printing python API but I haven’t reached any result yet.

Mail parsing is done asynchronously in separate threads. Mail backends such as IMAP, Maildir have to implement a Backend trait. So far I’ve used the trait only with Maildir, which means it was written with its needs and abilities in mind. If all goes well, IMAP should start in the nearish future.

Discussions:

Updates:

screenshot: Compact mail listing.
Compact mail listing.
screenshot: Plain mail listing.
Plain mail listing.
screenshot: Threaded mail listing.
Threaded mail listing.
screenshot: View currently applicable shortcuts.
View currently applicable shortcuts.