Accounts

structure

An account is a group of settings, identified by an account name. Settings are directly taken from your TOML configuration file. Accounts can be managed with those commands:

Settings

email (required)

The email address of the user account.

email = "clement.douin@posteo.net"

default

The current account will be used by default for all other commands.

default = true

display-name

The display name of the user.

It usually corresponds to the full name of the user.

display-name = "Clément DOUIN"

signature

The email signature of the user.

It can be either a path to a file (usually ~/.signature) or a raw string. The signature supports TOML multiline.

signature = "~/.signature"
signature = "Regards,"
signature = """
Thank you,
Regards,
"""

signature-delim

The email signature delimiter of the user signature. Defaults to -- \n.

signature-delim = "~~ \n"

backend

Default backend used for all the features like adding folders, listing envelopes or copying messages.

# valid backends: maildir, imap, notmuch
backend = "imap"