Vomit Mail Tool - vmt

NOTE: vomit is currently undergoing another major refactoring - the crate has been split in two, the addressing scheme was changed from URIs to just paths and the Message-Id was introduced to reference specific mails. Please use the vmt crate to install the CLI tool. Everything is still funtional, but might have some rough edges. The documentation in some places will need a moment to catch up.

Crates.io builds.sr.ht status

vmt is the main tool of the Vomit project. It is designed to let you do anything with your email, except for reading and writing - there are plenty of tools for that. Instead, it helps you locate emails (or attachments of emails) you already know about and lets you efficiently work with those.

NOTE: A lot of experimentation is still happening. The functionality described here should work reasonably reliably, but the interfaces (subcommands, parameters) may change as new features get added.

The central mechanism that vmt employs is providing an interactive search mechanism based on Skim (the Rust equivalent to the somewhat more popular fzf), which lets you pick one or more emails and will produce the filenames of those. These filenames can then e.g. be passed to other tools. It also provides a few built-in commands for common stuff you might want to use other tools for.

The described base functionality is provided by the vmt pick command. It captures your terminal, lets you interactively pick an email, and then writes the email's filename to stdout. Here is an example:

"vmt pick" example

In the simplest case, this could be used to output the file and pipe the contents to something that handles email as input, such as git am. Since this is a common use case, vmt provides the cat subcommand. Here is an example of applying a patch that was circulated on a mailing list:

"vmt cat" example

Of course email is used for other stuff, like sending attachments. vmt has you covered and offers the att subcommand (which itself has various subcommands). Here is a little example listing and then saving attachments:

"vmt att" example

Getting started

Vomit wants mail stored in Maildir++ format. You can use the vmt sync command to sync your IMAP account to a local maildir, or any other tool that does this.

See the installation section for install options and the config file section for the initial configuration.

Addressing resources

Most commands take an optional path. In vomit, a path can refer to either a mailbox, an email, or a MIME part (e.g. an attachment). If a path is omitted, the interactive picker will be executed. If a command expects e.g. an email, but only a mailbox is provided, the interactive picker will be executed to pick an email from the specified mailbox.

A path can be either "virtual", or an actual file system path. As a special case, vomit accepts a path that references a specific MIME part. Such a path will not be understood by other tools.

Here are some examples using actual file system paths:

Vomit supports using a relative path, using the configured maildir as base. The above examples could be written as:

In addition, a "virtual" path can be used, which is (hopefully) more representative of the mental picture one might have about their mailbox layout. It essentially uses the IMAP mailbox names, but always with / as the hierarchy delimiter. It also uses message IDs as identifier for emails:

Commands

``` USAGE: vmt [OPTIONS]

OPTIONS: -a, --account The account to operate on (defaults to first account in config file) -c, --config Sets a custom config file location -h, --help Print help information -v, --verbose Increase output verbosity (can be used multiple times) -V, --version Print version information

SUBCOMMANDS: att Work with mail attachments cat Output entire mail to stdout help Print this message or the help of the given subcommand(s) ls List mailboxes or emails mime Work with MIME parts pick Interactively pick mail(s) and print full path to stdout show Show plain text mail body (if present) sync Sync local maildir to remote IMAP account ```

pick

``` vmt-pick Interactively pick mail(s) and print full path to stdout

USAGE: vmt pick [OPTIONS] [URI]

ARGS: URI of mailbox to pick mail in (omit to pick mailbox interactively)

OPTIONS: -a, --attachments Show attachment marker (can be slow) -A, --attachments-only Show only mails with attachment (can be slow) -d, --date Show date -e, --empty Show empty mailboxes (default: hide) -h, --help Print help information -m, --multiple Allow selection of multiple mails ```

ls

``` vmt-ls List mailboxes or emails

USAGE: vmt ls [OPTIONS] [URI]

ARGS: The item to list (mailbox or mail, omit to list mailboxes)

OPTIONS: -a, --all List all mailboxes (even if empty) -h, --help Print help information -l, --long Show more details -r, --real-name Show real directory name ```

cat

``` vmt-cat Output entire mail to stdout

USAGE: vmt cat [URI]

ARGS: URI of email to output, or mailbox hint for pick. If omitted, use pick to select email

OPTIONS: -h, --help Print help information ```

att

``` vmt-att Work with mail attachments

USAGE: vmt att

OPTIONS: -h, --help Print help information

SUBCOMMANDS: cat Write attachment to stdout help Print this message or the help of the given subcommand(s) ls List attachments save Save attachments in current directory ```

att ls

``` vmt-att-ls List attachments

USAGE: vmt att ls [OPTIONS] [URI]

ARGS: URI of email or attachment to list, or mailbox as hint for pick. If omitted, uses pick to select an email

OPTIONS: -c, --color Use colored output -h, --help Print help information -l, --long Show more details ```

att cat

``` vmt-att-cat Write attachment to stdout

USAGE: vmt att cat [URI]

ARGS: URI of attachment to output, or mailbox or email as hint for pick. If omitted, uses pick to select an attachment

OPTIONS: -h, --help Print help information ```

att save

``` vmt-att-save Save attachments in current directory

USAGE: vmt att save [OPTIONS] [URI]

ARGS: URI of email or attachment to save, or mailbox as hint for pick . If omitted, uses pick to select an attachment, or email if --all is used

OPTIONS: -a, --all Save all attachments of an email -h, --help Print help information ```

mime

``` vmt-mime Work with MIME parts

USAGE: vmt mime

OPTIONS: -h, --help Print help information

SUBCOMMANDS: help Print this message or the help of the given subcommand(s) ls List MIME parts ```

mime ls

``` vmt-mime-ls List MIME parts

USAGE: vmt mime ls [OPTIONS] [URI]

ARGS: URI of email or part to list, or mailbox as hint for pick. If omitted, uses pick to select an email

OPTIONS: -c, --color Use colored output -f, --full Display the full URI (default: only fragment) -F, --only-full Display the full URI and nothing else -h, --help Print help information -l, --long Show more details ```

show

``` vmt-show Show plain text mail body (if present)

USAGE: vmt show [OPTIONS] [URI]

ARGS: URI of email to process, or mailbox as hint for pick. If omitted, uses pick to select an email

OPTIONS: -h, --help Print help information -l, --long Also show subject and sender ```

sync

``` vmt-sync Sync local maildir to remote IMAP account

USAGE: vmt sync [OPTIONS]

OPTIONS: -h, --help Print help information -r, --reconcile Force state cache reconciliation (can be slow, use only if prompted) -t, --threads Number of threads (and IMAP sessions) to use [default: 3] ```

Config file

Per default located at ~/$XDG_CONFIG_HOME/vomit/config.toml, which usually means ~/.config/vomit/config.toml. A configuration file at an arbitrary location can be used by using the global -c <path> flag.

A simple config example:

``` [] local = ~/.maildir

Everything below is only needed if you intend to use vmt sync

remote = "imap.example.com:993" user = "myusername" pass-cmd = "pass show mail/myaccount"

or use this:

password = "s3cr34"

```

Multiple accounts can be specified, by default vmt will use the first one. To use a different one, the global flag -a <account> can be used.

Like all Vomit tools, vmt uses the shared "vomit-config" configuration file. See its documentation for more details. Note that it supports some configuration options that vmt does not need.

Installation

Currently, there is only an AUR package.

For everything else, you can build with cargo build --release and make sure the executable is in your $PATH. If you have your $PATH set up to include your cargo home dir, then cargo install should do.

You can also run cargo install vomit directly, but the version on crates.io might be a few commits behind.