2020-01-23 23:31:23 +00:00
. \" meli - meli.conf.5
2019-09-16 11:07:38 +00:00
. \"
. \" Copyright 2017-2019 Manos Pitsidianakis
. \"
. \" This file is part of meli.
. \"
. \" meli is free software: you can redistribute it and/or modify
. \" it under the terms of the GNU General Public License as published by
. \" the Free Software Foundation, either version 3 of the License, or
. \" (at your option) any later version.
. \"
. \" meli is distributed in the hope that it will be useful,
. \" but WITHOUT ANY WARRANTY; without even the implied warranty of
. \" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
. \" GNU General Public License for more details.
. \"
. \" You should have received a copy of the GNU General Public License
. \" along with meli. If not, see <http://www.gnu.org/licenses/>.
. \"
.Dd September 16 , 2019
.Dt MELI.CONF 5
2019-11-22 11:12:44 +00:00
.Os
2019-09-16 11:07:38 +00:00
.Sh NAME
.Nm meli.conf
.Nd configuration file for the Meli Mail User Agent
.Sh SYNOPSIS
2020-01-27 22:32:40 +00:00
.Pa $XDG_CONFIG_HOME/meli/config.toml
2019-09-16 11:07:38 +00:00
.Sh DESCRIPTION
2020-07-15 17:20:37 +00:00
Configuration for meli is written in TOML which has a few things to consider (quoting the spec):
2019-09-16 11:07:38 +00:00
.Pp
.Bl -bullet -compact
.It
TOML is case sensitive.
.It
A TOML file must be a valid UTF-8 encoded Unicode document.
.It
Whitespace means tab (0x09) or space (0x20).
.It
Newline means LF (0x0A) or CRLF (0x0D 0x0A).
.El
.Pp
Refer to TOML documentation for valid TOML syntax.
2020-01-28 16:43:14 +00:00
.sp
2020-01-29 03:54:13 +00:00
Though not part of TOML syntax,
2019-11-27 20:13:14 +00:00
.Nm
2020-01-29 03:54:13 +00:00
can have nested configuration files by using the following
.Xr m4 1
include macro:
.Dl include(\&"/path/to/file\&")
2019-09-16 11:07:38 +00:00
.Sh SECTIONS
2020-05-28 13:02:57 +00:00
The top level sections of the config are:
.Bl -bullet -compact
.It
accounts
.It
shortcuts
.It
notifications
.It
pager
.It
listing
.It
composing
.It
pgp
.It
terminal
.It
log
.El
2020-01-28 16:43:14 +00:00
.Sh EXAMPLES
example configuration
.sp
2019-09-16 11:07:38 +00:00
.Bd -literal
# Setting up a Maildir account
[accounts.account-name]
2020-02-26 08:54:10 +00:00
root_mailbox = "/path/to/root/folder"
2019-09-16 11:07:38 +00:00
format = "Maildir"
index_style = "Compact"
2019-09-26 09:10:36 +00:00
identity="email@address.tld"
2020-02-26 08:54:10 +00:00
subscribed_mailboxes = ["folder", "folder/Sent"] # or [ "*", ] for all mailboxes
2019-09-16 11:07:38 +00:00
display_name = "Name"
2020-02-26 08:54:10 +00:00
# Set mailbox-specific settings
[accounts.account-name.mailboxes]
2019-12-18 13:40:57 +00:00
"INBOX" = { alias="Inbox" } #inline table
"drafts" = { alias="Drafts" } #inline table
2020-02-26 08:54:10 +00:00
[accounts.account-name.mailboxes."foobar-devel"] # or a regular table
ignore = true # don't show notifications for this mailbox
2019-09-16 11:07:38 +00:00
# Setting up an mbox account
[accounts.mbox]
2020-02-26 08:54:10 +00:00
root_mailbox = "/var/mail/username"
2019-09-16 11:07:38 +00:00
format = "mbox"
index_style = "Compact"
identity="username@hostname.local"
2020-07-15 12:19:27 +00:00
composing.send_mail = { hostname = "localhost", port = 25, auth = { type = "none" }, security = { type = "none" } }
2019-09-16 11:07:38 +00:00
[pager]
2020-05-31 19:37:06 +00:00
filter = "COLUMNS=72 /usr/local/bin/pygmentize -l email"
2019-10-03 16:51:34 +00:00
html_filter = "w3m -I utf-8 -T text/html"
2019-09-16 11:07:38 +00:00
[notifications]
script = "notify-send"
2019-09-27 09:48:48 +00:00
[composing]
2019-09-16 11:07:38 +00:00
# required for sending e-mail
2020-07-15 12:19:27 +00:00
send_mail = 'msmtp --read-recipients --read-envelope-from'
#send_mail = { hostname = "smtp.mail.tld", port = 587, auth = { type = "auto", username = "user", password = { type = "command_eval", value = "gpg2 --no-tty -q -d ~/.passwords/user.gpg" } }, security = { type = "STARTTLS" } }
2020-07-08 09:09:37 +00:00
editor_command = 'vim +/^$'
2019-09-16 11:07:38 +00:00
[shortcuts]
2019-11-26 23:43:03 +00:00
[shortcuts.composing]
edit_mail = 'e'
[shortcuts.listing]
new_mail = 'm'
set_seen = 'n'
2019-10-06 07:58:47 +00:00
[terminal]
theme = "light"
2019-09-16 11:07:38 +00:00
.Ed
.Pp
2020-07-15 17:20:37 +00:00
Available options are listed below.
Default values are shown in parentheses.
2019-09-16 11:07:38 +00:00
.Sh ACCOUNTS
2019-11-22 11:12:44 +00:00
.Bl -tag -width 36 n
2020-02-26 08:54:10 +00:00
.It Ic root_mailbox Ar String
2020-07-15 17:20:37 +00:00
The backend-specific path of the root_mailbox, usually INBOX.
2019-12-12 22:13:54 +00:00
.It Ic format Ar String Op maildir mbox imap notmuch jmap
2020-07-15 17:20:37 +00:00
The format of the mail backend.
2020-02-26 08:54:10 +00:00
.It Ic subscribed_mailboxes Ar [String,]
2020-07-15 17:20:37 +00:00
An array of mailbox paths to display in the UI.
2020-02-26 08:54:10 +00:00
Paths are relative to the root mailbox (eg "INBOX/Sent", not "Sent").
2019-11-24 18:44:24 +00:00
The glob wildcard
.Em \& *
2020-02-26 08:54:10 +00:00
can be used to match every mailbox name and path.
2019-11-22 11:12:44 +00:00
.It Ic identity Ar String
2020-07-15 17:20:37 +00:00
Your e-mail address that is inserted in the From: headers of outgoing mail.
2019-11-22 11:12:44 +00:00
.It Ic index_style Ar String
2020-07-15 17:20:37 +00:00
Sets the way mailboxes are displayed.
2019-09-16 11:07:38 +00:00
.El
2019-11-22 11:12:44 +00:00
.TS
allbox tab(:);
lb l.
conversations:shows one entry per thread
compact:shows one row per thread
threaded:shows threads as a tree structure
plain:shows one row per mail, regardless of threading
.TE
.Bl -tag -width 36 n
.It Ic display_name Ar String
2020-07-15 17:20:37 +00:00
.Pq Em optional
A name which can be combined with your address: "Name <email@address.tld>".
2019-11-22 11:12:44 +00:00
.It Ic read_only Ar boolean
2020-07-15 17:20:37 +00:00
Attempt to not make any changes to this account.
2019-09-16 11:07:38 +00:00
.Pq Em false
2020-01-08 19:41:57 +00:00
.It Ic manual_refresh Ar boolean
2020-07-15 17:20:37 +00:00
.Pq Em optional
If true, do not monitor account for changes (you can use shortcut listing.refresh)
2020-01-08 19:41:57 +00:00
.Pq Em false
.It Ic refresh_command Ar String
2020-07-15 17:20:37 +00:00
.Pq Em optional
command to execute when manually refreshing (shortcut listing.refresh)
2020-01-08 19:41:57 +00:00
.Pq Em None
2020-07-16 20:57:00 +00:00
.It Ic search_backend Ar String
2020-07-15 17:20:37 +00:00
.Pq Em optional
2020-07-16 20:57:00 +00:00
Choose which search backend to use.
2020-01-28 16:43:14 +00:00
Available options are 'none' and 'sqlite3'
2019-11-08 12:40:23 +00:00
.Pq Em "sqlite3"
2019-11-26 23:39:06 +00:00
.It Ic vcard_folder Ar String
2020-07-15 17:20:37 +00:00
.Pq Em optional
Folder that contains .vcf files.
2020-01-28 16:43:14 +00:00
They are parsed and imported read-only.
2020-02-26 08:54:10 +00:00
.It Ic mailboxes Ar mailbox
2020-07-15 17:20:37 +00:00
.Pq Em optional
Configuration for each mailbox.
2020-01-28 16:43:14 +00:00
Its format is described below in
2020-02-26 08:54:10 +00:00
.Sx mailboxes Ns
2019-09-16 11:07:38 +00:00
\& .
.El
2020-07-15 12:19:27 +00:00
.Ss notmuch only
2020-02-26 08:54:10 +00:00
.Ic root_mailbox
2019-11-22 11:12:44 +00:00
points to the directory which contains the
2019-11-14 15:55:06 +00:00
.Pa .notmuch/
2020-01-28 16:43:14 +00:00
subdirectory.
2020-02-26 08:54:10 +00:00
notmuch mailboxes are virtual, since they are defined by user-given notmuch queries.
2020-07-15 17:20:37 +00:00
You must explicitly state the mailboxes you want in the
2020-02-26 08:54:10 +00:00
.Ic mailboxes
2019-11-22 11:12:44 +00:00
field and set the
2019-11-14 15:55:06 +00:00
.Ar query
2020-01-28 16:43:14 +00:00
property to each of them.
Example:
2019-11-14 15:55:06 +00:00
.Bd -literal
[accounts.notmuch]
format = "notmuch"
\& ...
2020-02-26 08:54:10 +00:00
[accounts.notmuch.mailboxes]
2019-11-14 15:55:06 +00:00
"INBOX" = { query="tag:inbox", subscribe = true }
"Drafts" = { query="tag:draft", subscribe = true }
"Sent" = { query="from:username@server.tld from:username2@server.tld", subscribe = true }
.Ed
2020-07-15 12:19:27 +00:00
.Ss IMAP only
2019-09-16 11:07:38 +00:00
IMAP specific options are:
2019-11-22 11:12:44 +00:00
.Bl -tag -width 36 n
.It Ic server_hostname Ar String
2019-09-16 11:07:38 +00:00
example:
.Qq mail.example.tld
2019-11-22 11:12:44 +00:00
.It Ic server_username Ar String
2020-07-15 17:20:37 +00:00
Server username
2019-11-22 11:12:44 +00:00
.It Ic server_password Ar String
2020-07-15 17:20:37 +00:00
Server password
2020-03-12 07:45:18 +00:00
.It Ic server_password_command Ar String
2020-07-15 17:20:37 +00:00
.Pq Em optional
Use instead of
2020-03-12 07:45:18 +00:00
.Ic server_password
2019-11-22 11:12:44 +00:00
.It Ic server_port Ar number
2020-07-15 17:20:37 +00:00
.Pq Em optional
The port to connect to
2019-10-03 16:58:52 +00:00
. \" default value
.Pq Em 143
2019-11-22 11:12:44 +00:00
.It Ic use_starttls Ar boolean
2020-07-15 17:20:37 +00:00
.Pq Em optional
If port is 993 and use_starttls is unspecified, it becomes false by default.
2019-10-03 16:58:52 +00:00
. \" default value
.Pq Em true
2019-11-22 11:12:44 +00:00
.It Ic danger_accept_invalid_certs Ar boolean
2020-07-15 17:20:37 +00:00
.Pq Em optional
Do not validate TLS certificates.
2019-09-16 11:07:38 +00:00
. \" default value
.Pq Em false
2020-07-27 11:59:49 +00:00
.It Ic use_idle Ar boolean
.Pq Em optional
Use IDLE extension.
. \" default value
.Pq Em true
2020-07-28 13:16:08 +00:00
.It Ic use_deflate Ar boolean
.Pq Em optional
Use COMPRESS=DEFLATE extension (if built with DEFLATE support).
. \" default value
.Pq Em true
2020-09-12 19:05:48 +00:00
.It Ic timeout Ar integer
.Pq Em optional
Timeout to use for server connections in seconds.
A timeout of 0 seconds means there's no timeout.
. \" default value
.Pq Em 16
2019-09-16 11:07:38 +00:00
.El
2020-07-15 12:19:27 +00:00
.Ss JMAP only
2020-07-15 17:20:37 +00:00
JMAP specific options
2019-12-12 22:13:54 +00:00
.Bl -tag -width 36 n
.It Ic server_hostname Ar String
example:
.Qq mail.example.tld
.It Ic server_username Ar String
2020-07-15 17:20:37 +00:00
Server username
2019-12-12 22:13:54 +00:00
.It Ic server_password Ar String
2020-07-15 17:20:37 +00:00
Server password
2019-12-12 22:13:54 +00:00
.It Ic server_port Ar number
2020-07-15 17:20:37 +00:00
.Pq Em optional
The port to connect to
2019-12-12 22:13:54 +00:00
. \" default value
.Pq Em 443
.It Ic danger_accept_invalid_certs Ar boolean
2020-07-15 17:20:37 +00:00
.Pq Em optional
Do not validate TLS certificates.
2019-12-12 22:13:54 +00:00
. \" default value
.Pq Em false
.El
2020-07-15 12:19:27 +00:00
.Ss mbox only
2020-07-15 17:20:37 +00:00
mbox specific options
2020-06-20 08:52:05 +00:00
.Bl -tag -width 36 n
.It Ic prefer_mbox_type Ar String
2020-07-15 17:20:37 +00:00
.Pq Em optional
Prefer specific mbox format reader for each message.
Default is mboxcl2 format.
If the preferred format fails, the message is retried with mboxrd and then if it fails again there's a recover attempt, which discards the invalid message.
Valid values
2020-06-20 08:52:05 +00:00
.Bl -bullet -compact
.It
.Ar auto
.It
.Ar mboxo
.It
.Ar mboxrd
.It
.Ar mboxcl
.It
.Ar mboxcl2
.El
. \" default value
.Pq Em auto
.El
2020-07-15 17:20:37 +00:00
To set multiple mailboxes, you have to explicitly state the mailboxes you want in the
2020-06-20 11:49:02 +00:00
.Ic mailboxes
field and set the
.Ar path
property to each of them.
Example:
.Bd -literal
[accounts.mbox]
format = "mbox"
mailboxes."Python mailing list" = { path = "~/.mail/python.mbox", subscribe = true, autoload = true }
.Ed
2020-07-15 17:20:37 +00:00
.Ss MAILBOXES
2019-11-22 11:12:44 +00:00
.Bl -tag -width 36 n
2019-12-18 13:40:57 +00:00
.It Ic alias Ar String
2020-07-15 17:20:37 +00:00
.Pq Em optional
Show a different name for this mailbox in the UI
2019-11-22 11:12:44 +00:00
.It Ic autoload Ar boolean
2020-07-15 17:20:37 +00:00
.Pq Em optional
Load this mailbox on startup
2020-03-02 10:06:19 +00:00
. \" default value
.Pq Em true
2019-11-22 11:12:44 +00:00
.It Ic subscribe Ar boolean
2020-07-15 17:20:37 +00:00
.Pq Em optional
Watch this mailbox for updates
2019-09-16 11:07:38 +00:00
. \" default value
.Pq Em true
2019-11-22 11:12:44 +00:00
.It Ic ignore Ar boolean
2020-07-15 17:20:37 +00:00
.Pq Em optional
Silently insert updates for this mailbox, if any
2019-09-16 11:07:38 +00:00
. \" default value
.Pq Em false
2019-11-22 11:12:44 +00:00
.It Ic usage Ar boolean
2020-07-15 17:20:37 +00:00
.Pq Em optional
special usage of this mailbox.
2020-01-28 16:43:14 +00:00
Valid values are:
2019-09-16 11:07:38 +00:00
.Bl -bullet -compact
.It
.Ar Normal
2020-07-15 17:20:37 +00:00
.Pq Em default
2019-09-16 11:07:38 +00:00
.It
.Ar Inbox
.It
.Ar Archive
.It
.Ar Drafts
.It
.Ar Flagged
.It
.Ar Junk
.It
.Ar Sent
.It
.Ar Trash
.El
2020-02-26 08:54:10 +00:00
otherwise usage is inferred from the mailbox title.
2020-07-15 17:20:37 +00:00
If for example your Sent folder is not named "Sent", you must explicitly set it.
2019-11-22 11:12:44 +00:00
.It Ic conf_override Ar boolean
2020-07-15 17:20:37 +00:00
.Pq Em optional
Override global settings for this mailbox.
2020-01-28 16:43:14 +00:00
Available sections to override are
2019-09-27 09:48:48 +00:00
.Em pager, notifications, shortcuts, composing
2019-09-16 11:07:38 +00:00
and the account options
2020-07-15 17:20:37 +00:00
.Em identity
and
.Em index_style Ns
2020-01-28 16:43:14 +00:00
\& .
Example:
2019-09-16 11:07:38 +00:00
.Bd -literal
2020-02-26 08:54:10 +00:00
[accounts."imap.domain.tld".mailboxes."INBOX"]
2019-09-16 11:07:38 +00:00
index_style = "plain"
2020-02-26 08:54:10 +00:00
[accounts."imap.domain.tld".mailboxes."INBOX".pager]
2019-09-16 11:07:38 +00:00
filter = ""
.Ed
.El
2019-09-27 09:48:48 +00:00
.Sh COMPOSING
2020-07-15 17:20:37 +00:00
Composing specific options
2019-11-22 11:12:44 +00:00
.Bl -tag -width 36 n
2020-07-15 12:19:27 +00:00
.It Ic send_mail Ar String|SmtpServerConf
2020-07-15 17:20:37 +00:00
Command to pipe new mail to (exit code must be 0 for success) or settings for an SMTP server connection.
2020-07-15 12:19:27 +00:00
See section
.Sx SMTP Connections
for its fields.
2020-07-08 09:09:37 +00:00
.It Ic editor_command Ar String
2020-07-15 17:20:37 +00:00
Command to launch editor.
2020-01-28 16:43:14 +00:00
Can have arguments.
Draft filename is given as the last argument.
If it's missing, the environment variable $EDITOR is looked up.
2019-11-22 11:12:44 +00:00
.It Ic embed Ar boolean
2020-07-15 17:20:37 +00:00
.Pq Em optional
Embed editor within meli.
Editor must be xterm compliant.
2019-11-05 06:35:07 +00:00
. \" default value
.Pq Em false
2019-11-22 11:12:44 +00:00
.It Ic format_flowed Ar boolean
2020-07-15 17:20:37 +00:00
.Pq Em optional
Set format=flowed [RFC3676] in text/plain attachments.
2019-11-17 11:27:22 +00:00
. \" default value
.Pq Em true
2020-08-18 09:07:50 +00:00
.It Ic insert_user_agent Ar boolean
.Pq Em optional
Add meli User-Agent header in new drafts
. \" default value
.Pq Em true
2020-03-01 15:45:55 +00:00
.It Ic default_header_values Ar hash table String[String]
Default header values used when creating a new draft.
2020-11-09 20:22:11 +00:00
.It Ic store_sent_mail Ar boolean
.Pq Em optional
Store sent mail after successful submission.
This setting is meant to be disabled for non-standard behaviour in gmail, which auto-saves sent mail on its own.
. \" default value
.Pq Em true
2019-09-16 11:07:38 +00:00
.El
.Sh SHORTCUTS
Shortcuts can take the following values:
2020-07-15 17:20:37 +00:00
.Bl -bullet -compact
.It
.Em Backspace
.It
.Em Left
.It
.Em Right
.It
.Em Up
.It
.Em Down
.It
.Em Home
.It
.Em End
.It
.Em PageUp
.It
.Em PageDown
.It
.Em Delete
.It
.Em Insert
.It
.Em Enter
.It
.Em Tab
.It
.Em Esc
.It
.Em F1..F12
.It
.Em M-char
.It
.Em C-char
.It
.Em char
.El
.Em char
is a single character string.
2020-01-28 16:43:14 +00:00
.sp
The headings before each list indicate the map key of the shortcut list.
For example for the first list titled
2019-11-26 23:43:03 +00:00
.Em general
the configuration is typed as follows:
.Bd -literal
[shortcuts.general]
next_tab = 'T'
.Ed
2020-01-28 16:43:14 +00:00
.sp
2019-11-26 23:43:03 +00:00
and for
.Em compact-listing Ns
:
.Bd -literal
[shortcuts.compact-listing]
open_thread = "Enter"
exit_thread = 'i'
2020-01-28 16:43:14 +00:00
.Ed
.sp
2019-12-18 13:40:57 +00:00
.Pp
2020-01-28 16:43:14 +00:00
.Em general
2019-11-26 23:43:03 +00:00
.Bl -tag -width 36 n
2020-08-25 12:48:38 +00:00
.It Ic toggle_help
Toggle help and shortcuts view.
. \" default value
.Pq Em \& ?
2020-07-25 10:24:42 +00:00
.It Ic enter_command_mode
Enter
.Em COMMAND
mode.
. \" default value
2020-10-14 17:21:22 +00:00
.Pq Ql Em \& :
2019-11-26 23:43:03 +00:00
.It Ic next_tab
Go to next tab.
. \" default value
.Pq Em T
.It Ic go_to_tab
2020-01-28 16:43:14 +00:00
Go to the
2019-11-26 23:43:03 +00:00
.Em n Ns
th tab
.Pq Em cannot be redefined
.El
2020-01-28 16:43:14 +00:00
.sp
.Em listing
2019-11-22 11:12:44 +00:00
.Bl -tag -width 36 n
.It Ic prev_page
2019-09-16 11:07:38 +00:00
Go to previous page.
2019-11-26 23:43:03 +00:00
. \" default value
.Pq Em PageUp
2019-11-22 11:12:44 +00:00
.It Ic next_page
2019-09-16 11:07:38 +00:00
Go to next page.
2019-11-26 23:43:03 +00:00
. \" default value
.Pq Em PageDown
2020-02-26 08:54:10 +00:00
.It Ic prev_mailbox
Go to previous mailbox.
2019-11-26 23:43:03 +00:00
. \" default value
.Pq Em K
2020-02-26 08:54:10 +00:00
.It Ic next_mailbox
Go to next mailbox.
2019-11-26 23:43:03 +00:00
. \" default value
.Pq Em J
2019-11-22 11:12:44 +00:00
.It Ic prev_account
2019-09-16 11:07:38 +00:00
Go to previous account.
2019-11-26 23:43:03 +00:00
. \" default value
.Pq Em l
2019-11-22 11:12:44 +00:00
.It Ic next_account
2019-09-16 11:07:38 +00:00
Go to next account.
2019-11-26 23:43:03 +00:00
. \" default value
.Pq Em h
2019-11-22 11:12:44 +00:00
.It Ic new_mail
2019-09-16 11:07:38 +00:00
Start new mail draft in new tab
2019-11-26 23:43:03 +00:00
. \" default value
.Pq Em m
2020-01-08 19:41:57 +00:00
.It Ic set_seen
Set thread as seen.
. \" default value
.Pq Em n
.It Ic refresh
2020-02-26 08:54:10 +00:00
Manually request a mailbox refresh.
2020-01-08 19:41:57 +00:00
. \" default value
.Pq Em F5
2019-11-26 23:43:03 +00:00
.It Ic search
Search within list of e-mails.
. \" default value
.Pq Em /
.It Ic toggle_menu_visibility
Toggle visibility of side menu in mail list.
. \" default value
.Pq Em `
.El
2020-01-28 16:43:14 +00:00
.sp
.Em compact-listing
2019-11-26 23:43:03 +00:00
.Bl -tag -width 36 n
2019-11-22 11:12:44 +00:00
.It Ic exit_thread
2019-09-16 11:07:38 +00:00
Exit thread view
2019-11-26 23:43:03 +00:00
. \" default value
.Pq Em i
.It Ic open_thread
Open thread.
. \" default value
.Pq Em Enter
.It Ic select_entry
Select thread entry.
. \" default value
.Pq Em v
.El
2020-01-28 16:43:14 +00:00
.sp
.Em pager
2019-11-26 23:43:03 +00:00
.Bl -tag -width 36 n
2019-11-22 11:12:44 +00:00
.It Ic scroll_up
2019-09-16 11:07:38 +00:00
Scroll up pager.
2019-11-26 23:43:03 +00:00
. \" default value
.Pq Em k
2019-11-22 11:12:44 +00:00
.It Ic scroll_down
2019-09-16 11:07:38 +00:00
Scroll down pager.
2019-11-26 23:43:03 +00:00
. \" default value
.Pq Em j
2019-11-22 11:12:44 +00:00
.It Ic page_up
2019-09-16 11:07:38 +00:00
Go to previous pager page
2019-11-26 23:43:03 +00:00
. \" default value
.Pq Em PageUp
2019-11-22 11:12:44 +00:00
.It Ic page_down
2019-09-16 11:07:38 +00:00
Go to next pager pag
2019-11-26 23:43:03 +00:00
. \" default value
.Pq Em PageDown
.El
2020-01-28 16:43:14 +00:00
.sp
.Em contact-list
2019-11-26 23:43:03 +00:00
.Bl -tag -width 36 n
2019-11-22 11:12:44 +00:00
.It Ic create_contact
2019-09-16 11:07:38 +00:00
Create new contact.
2019-11-26 23:43:03 +00:00
. \" default value
.Pq Em c
2019-11-22 11:12:44 +00:00
.It Ic edit_contact
2019-09-16 11:07:38 +00:00
Edit contact under cursor
2019-11-26 23:43:03 +00:00
. \" default value
.Pq Em e
.It Ic mail_contact
Mail contact under cursor
. \" default value
.Pq Em m
.It Ic toggle_menu_visibility
Toggle visibility of side menu in mail list.
. \" default value
.Pq Em `
.El
2020-01-28 16:43:14 +00:00
.sp
.sp
.Em composing
2019-11-26 23:43:03 +00:00
.Bl -tag -width 36 n
.It Ic send_mail
Deliver draft to mailer
. \" default value
.Pq Em s
.It Ic edit_mail
Edit mail.
. \" default value
.Pq Em e
2019-09-16 11:07:38 +00:00
.El
2020-01-28 16:43:14 +00:00
.sp
.Em envelope-view
2019-12-18 13:40:57 +00:00
.Pp
2020-07-15 17:20:37 +00:00
To select an attachment, type its index (you will see the typed result in the command buffer on the bottom right of the status line), then issue the corresponding command.
2019-11-26 23:43:03 +00:00
.Bl -tag -width 36 n
.It Ic add_addresses_to_contacts Ns
Select addresses from envelope to add to contacts.
. \" default value
.Pq Em c
.It Ic view_raw_source
View raw envelope source in a pager.
. \" default value
.Pq Em M-r
.It Ic reply
Reply to envelope.
. \" default value
.Pq Em R
.It Ic edit
Open envelope in composer.
. \" default value
.Pq Em e
.It Ic return_to_normal_view
Return to envelope if viewing raw source or attachment.
. \" default value
.Pq Em r
.It Ic open_attachment
2020-01-28 16:43:14 +00:00
Opens selected attachment with
2019-11-26 23:43:03 +00:00
.Cm xdg-open
. \" default value
.Pq Em a
.It Ic open_mailcap
2020-01-28 16:43:14 +00:00
Opens selected attachment according to its mailcap entry.
See
2020-07-15 17:20:37 +00:00
.Xr meli 1 FILES
2019-11-26 23:43:03 +00:00
for the mailcap file locations.
. \" default value
.Pq Em m
.It Ic go_to_url
Go to url of given index
. \" default value
.Pq Em g
.It Ic toggle_url_mode
2020-01-28 16:43:14 +00:00
Toggles url open mode.
2020-07-15 17:20:37 +00:00
When active, it prepends an index next to each url that you can select by typing the index and open by issuing
2019-11-26 23:43:03 +00:00
.Ic go_to_url
. \" default value
.Pq Em u
.It Ic toggle_expand_headers
Expand extra headers (References and others)
. \" default value
.Pq Em h
.El
2020-01-28 16:43:14 +00:00
.sp
.Em thread-view
2019-11-26 23:43:03 +00:00
.Bl -tag -width 36 n
.It Ic reverse_thread_order
Reverse thread order.
. \" default value
.Pq Em r
.It Ic toggle_mailview
Toggle mail view visibility.
. \" default value
.Pq Em p
.It Ic toggle_threadview
Toggle thread view visibility.
. \" default value
.Pq Em t
.It Ic collapse_subtree
Collapse thread branches.
. \" default value
.Pq Em h
.It Ic prev_page
Go to previous page.
. \" default value
.Pq Em PageUp
.It Ic next_page
Go to next page.
. \" default value
.Pq Em PageDown
.El
2020-01-28 16:43:14 +00:00
.sp
2019-09-16 11:07:38 +00:00
.Sh NOTIFICATIONS
2019-11-22 11:12:44 +00:00
.Bl -tag -width 36 n
.It Ic enable Ar boolean
2020-09-10 17:31:12 +00:00
Enable notifications.
2019-09-16 11:07:38 +00:00
. \" default value
.Pq Em true
2019-11-22 11:12:44 +00:00
.It Ic script Ar String
2020-07-15 17:20:37 +00:00
.Pq Em optional
Script to pass notifications to, with title as 1st arg and body as 2nd
2019-09-16 11:07:38 +00:00
. \" default value
2020-07-15 17:20:37 +00:00
.Pq Em none Ns
\& .
2019-11-22 11:12:44 +00:00
.It Ic xbiff_file_path Ar String
2020-07-15 17:20:37 +00:00
.Pq Em optional
File that gets its size updated when new mail arrives.
2019-09-16 11:07:38 +00:00
.Pq Em none
. \" default value
2019-11-22 11:12:44 +00:00
.It Ic play_sound Ar boolean
2020-07-15 17:20:37 +00:00
.Pq Em optional
Play theme sound in notifications if possible.
2019-09-16 11:07:38 +00:00
.Pq Em false
. \" default value
2019-11-22 11:12:44 +00:00
.It Ic sound_file Ar String
2020-07-15 17:20:37 +00:00
.Pq Em optional
Play sound file in notifications if possible.
2019-09-16 11:07:38 +00:00
. \" default value
.Pq Em none
.El
.Sh PAGER
2019-11-22 11:12:44 +00:00
.Bl -tag -width 36 n
.It Ic headers_sticky Ar boolean
2020-07-15 17:20:37 +00:00
.Pq Em optional
Always show headers when scrolling.
2019-09-16 11:07:38 +00:00
. \" default value
2019-11-24 18:47:05 +00:00
.Pq Em true
2019-11-22 11:12:44 +00:00
.It Ic html_filter Ar String
2020-07-15 17:20:37 +00:00
.Pq Em optional
Pipe html attachments through this filter before display
2019-10-03 16:51:34 +00:00
. \" default value
.Pq Em none
2019-11-22 11:12:44 +00:00
.It Ic filter Ar String
2020-07-15 17:20:37 +00:00
.Pq Em optional
A command to pipe mail output through for viewing in pager.
2019-09-16 11:07:38 +00:00
. \" default value
.Pq Em none
2019-11-22 11:12:44 +00:00
.It Ic format_flowed Ar bool
2020-07-15 17:20:37 +00:00
.Pq Em optional
Respect format=flowed
2019-11-22 11:12:44 +00:00
. \" default value
.Pq Em true
.It Ic split_long_lines Ar bool
2020-07-15 17:20:37 +00:00
.Pq Em optional
Split long lines that would overflow on the x axis.
2019-11-22 11:12:44 +00:00
. \" default value
.Pq Em true
.It Ic minimum_width Ar num
2020-07-15 17:20:37 +00:00
.Pq Em optional
Minimum text width in columns.
2019-11-22 11:12:44 +00:00
. \" default value
.Pq Em 80
2020-07-15 17:20:37 +00:00
.It Ic auto_choose_multipart_alternative Ar boolean
.Pq Em optional
Choose `text/html` alternative if `text/plain` is empty in `multipart/alternative` attachments.
2020-03-01 18:58:24 +00:00
. \" default value
.Pq Em true
2019-09-16 11:07:38 +00:00
.El
2020-01-08 19:41:57 +00:00
.Sh LISTING
.Bl -tag -width 36 n
.It Ic datetime_fmt Ar String
2020-07-15 17:20:37 +00:00
.Pq Em optional
Datetime formatting passed verbatim to strftime(3).
2020-01-08 19:41:57 +00:00
. \" default value
.Pq Em \& %Y-\&%m-\&%d \& %T
.It Ic recent_dates Ar Boolean
2020-07-15 17:20:37 +00:00
.Pq Em optional
Show recent dates as `X {minutes,hours,days} ago`, up to 7 days.
2020-01-08 19:41:57 +00:00
. \" default value
.Pq Em true
2020-03-01 18:24:00 +00:00
.It Ic filter Ar Query
2020-07-15 17:20:37 +00:00
.Pq Em optional
Show only envelopes matching this query.
.Po
For query syntax see
.Xr meli 1 QUERY ABNF SYNTAX
.Pc
2020-03-01 18:24:00 +00:00
. \" default value
.Pq Em None
.Pp
Example:
.Bd -literal
filter = "not flags:seen" # show only unseen messages
.Ed
2020-09-17 13:49:19 +00:00
.It Ic index_style Ar String
Sets the way mailboxes are displayed.
.It Ic sidebar_mailbox_tree_has_sibling Ar String
.Pq Em optional
Sets the string to print in the mailbox tree for a level where its root has a sibling.
See example below for a clear explanation and examples.
.It Ic sidebar_mailbox_tree_no_sibling Ar String
.Pq Em optional
Sets the string to print in the mailbox tree for a level where its root has no sibling.
.It Ic sidebar_mailbox_tree_has_sibling_leaf Ar String
.Pq Em optional
Sets the string to print in the mailbox tree for a leaf level where its root has a sibling.
.It Ic sidebar_mailbox_tree_no_sibling_leaf Ar String
.Pq Em optional
Sets the string to print in the mailbox tree for a leaf level where its root has no sibling.
2020-01-08 19:41:57 +00:00
.El
2020-09-17 13:49:19 +00:00
.Ss Examples of sidebar mailbox tree customization
The default values
2020-10-16 19:28:00 +00:00
.sp
.Bd -literal
2020-09-17 13:49:19 +00:00
has_sibling = " "
no_sibling = " ";
has_sibling_leaf = " "
no_sibling_leaf = " "
.Ed
2020-10-16 19:28:00 +00:00
.sp
2020-09-17 13:49:19 +00:00
render a mailbox tree like the following:
2020-10-16 19:28:00 +00:00
.sp
2020-09-17 13:49:19 +00:00
.Bd -literal
0 Inbox 3
1 Archive
2 Drafts
3 Lists
4 example-list-a
5 example-list-b
2020-10-16 19:28:00 +00:00
6 Sent
2020-09-17 13:49:19 +00:00
7 Spam
8 Trash
.Ed
2020-10-16 19:28:00 +00:00
.sp
2020-09-17 13:49:19 +00:00
Other possible trees:
2020-10-16 19:28:00 +00:00
.sp
2020-09-17 13:49:19 +00:00
.Bd -literal
has_sibling = " ┃"
no_sibling = " "
has_sibling_leaf = " ┣━"
no_sibling_leaf = " ┗━"
.Ed
2020-10-16 19:28:00 +00:00
.sp
2020-09-17 13:49:19 +00:00
.Bd -literal
0 Inbox 3
1 ┣━Archive
2 ┣━Drafts
3 ┣━Lists
4 ┃ ┣━example-list-a
5 ┃ ┗━example-list-b
2020-10-16 19:28:00 +00:00
6 ┣━Sent
2020-09-17 13:49:19 +00:00
7 ┣━Spam
8 ┗━Trash
.Ed
2020-10-16 19:28:00 +00:00
.sp
2020-09-17 13:49:19 +00:00
A completely ASCII one:
2020-10-16 19:28:00 +00:00
.sp
2020-09-17 13:49:19 +00:00
.Bd -literal
has_sibling = " |"
no_sibling = " "
has_sibling_leaf = " |\\ _"
no_sibling_leaf = " \\ _"
.Ed
2020-10-16 19:28:00 +00:00
.sp
2020-09-17 13:49:19 +00:00
.Bd -literal
0 Inbox 3
1 |\\ _Archive
2 |\\ _Drafts
3 |\\ _Lists
4 | |\\ _example-list-a
5 | \\ _example-list-b
2020-10-16 19:28:00 +00:00
6 |\\ _Sent
2020-09-17 13:49:19 +00:00
7 |\\ _Spam
8 \\ _Trash
.Ed
2020-10-16 19:28:00 +00:00
.sp
2019-12-08 09:26:15 +00:00
.Sh TAGS
.Bl -tag -width 36 n
.It Ic colours Ar hash table String[Color]
2020-07-15 17:20:37 +00:00
.Pq Em optional
Set UI colors for tags
2019-12-15 22:14:55 +00:00
.It Ic ignore_tags Ar Array String
2020-07-15 17:20:37 +00:00
.Pq Em optional
Hide tags (not the tagged messages themselves)
2019-12-15 22:14:55 +00:00
.El
2020-01-28 16:43:14 +00:00
.sp
2020-07-15 17:20:37 +00:00
Example:
2020-01-28 16:43:14 +00:00
.sp
2019-12-08 09:26:15 +00:00
.Bd -literal
[tags]
# valid inputs: #HHHHHH, #ABC -> #AABBCC, XTERM_NAME, 0-255 byte
colors = { signed="#Ff6600", replied="DeepSkyBlue4", draft="#f00", replied="8" }
[accounts.dummy]
2020-01-27 22:32:40 +00:00
\& ...
2020-02-26 08:54:10 +00:00
[accounts.dummy.mailboxes]
# per mailbox override:
2019-12-08 09:26:15 +00:00
"INBOX" = { tags.ignore_tags=["inbox", ] }
.Ed
2019-09-26 09:10:36 +00:00
.Sh PGP
2019-11-22 11:12:44 +00:00
.Bl -tag -width 36 n
.It Ic auto_verify_signatures Ar boolean
2020-07-15 17:20:37 +00:00
Auto verify signed e-mail according to RFC3156
2019-09-26 09:10:36 +00:00
. \" default value
.Pq Em true
2019-11-22 11:12:44 +00:00
.It Ic auto_sign Ar boolean
2020-07-15 17:20:37 +00:00
.Pq Em optional
Always sign sent messages
2019-09-26 09:10:36 +00:00
. \" default value
.Pq Em false
2019-11-22 11:12:44 +00:00
.It Ic key Ar String
2020-07-15 17:20:37 +00:00
.Pq Em optional
Key to be used when signing/encrypting (not functional yet)
2019-09-26 09:10:36 +00:00
. \" default value
.Pq Em none
.El
2019-10-06 07:58:47 +00:00
.Sh TERMINAL
2019-11-22 11:12:44 +00:00
.Bl -tag -width 36 n
.It Ic theme Ar String
2020-07-15 17:20:37 +00:00
.Pq Em optional
Theme name to use.
2019-10-06 07:58:47 +00:00
. \" default value
.Pq Em dark
2019-11-22 11:12:44 +00:00
.It Ic ascii_drawing Ar boolean
2020-07-15 17:20:37 +00:00
.Pq Em optional
If true, box drawing will be done with ascii characters.
2019-10-06 08:28:12 +00:00
. \" default value
.Pq Em false
2020-01-27 22:32:40 +00:00
.It Ic use_color Ar boolean
2020-07-15 17:20:37 +00:00
.Pq Em optional
If false, no ANSI colors are used.
2020-01-27 22:32:40 +00:00
. \" default value
.Pq Em true
2019-11-22 11:12:44 +00:00
.It Ic window_title Ar String
2020-07-15 17:20:37 +00:00
.Pq Em optional
Set window title in xterm compatible terminals An empty string means no window title is set.
2019-10-15 19:58:40 +00:00
. \" default value
.Pq Em "meli"
2020-10-09 18:21:15 +00:00
.It Ic file_picker_command Ar String
.Pq Em optional
Set command that prints file paths in stderr, separated by NULL bytes.
Used with
.Ic add-attachment-file-picker
when composing new mail.
. \" default value
.Pq Em None
2020-01-27 22:32:40 +00:00
.It Ic themes Ar hash table String[String[Attribute]]
2020-07-15 17:20:37 +00:00
Define UI themes.
2020-01-28 16:43:14 +00:00
See
2020-01-27 22:32:40 +00:00
.Xr meli-themes 5
for details.
.Bd -literal
[terminal]
theme = "themeB"
[terminal.themes.themeA]
"mail.view.body" = {fg = "HotPink3", bg = "LightSalmon1"}
\& ...
[terminal.themes.themeB]
"mail.view.body" = {fg = "CadetBlue", bg = "White"}
\& ...
[terminal.themes.themeC]
\& ...
.Ed
2020-10-16 19:28:00 +00:00
.It Ic use_mouse Ar bool
Use mouse events.
This will disable text selection, but you will be able to resize some widgets.
This setting can be toggled with
.Cm toggle mouse Ns
\& .
. \" default value
.Pq Em false
.It Ic mouse_flag Ar String
String to show in status bar if mouse is active.
. \" default value
.Pq Em 🖱️
2020-10-16 12:47:00 +00:00
.It Ic progress_spinner_sequence Ar Either \& < Integer, [String] \& >
Choose between 30-something built in sequences (integers between 0-30) or define your own list of strings for the progress spinner animation.
Set to an empty array to disable the progress spinner.
. \" default value
.Pq Em 19
Builtin sequences are:
.Bd -literal
0 ["▁", "▂", "▃", "▄", "▅", "▆", "▇", "█"]
1 ["⣀", "⣄", "⣤", "⣦", "⣶", "⣷", "⣿"]
2 ["⣀", "⣄", "⣆", "⣇", "⣧", "⣷", "⣿"]
3 ["○", "◔", "◐", "◕", "⬤"]
4 ["□", "◱", "◧", "▣", "■"]
5 ["□", "◱", "▨", "▩", "■"]
6 ["□", "◱", "▥", "▦", "■"]
7 ["░", "▒", "▓", "█"]
8 ["░", "█"]
9 ["⬜", "⬛"]
10 ["▱", "▰"]
11 ["▭", "◼"]
12 ["▯", "▮"]
13 ["◯", "⬤"]
14 ["⚪", "⚫"]
15 ["▖", "▗", "▘", "▝", "▞", "▚", "▙", "▟", "▜", "▛"]
16 ["|", "/", "-", "\\ "]
17 [".", "o", "O", "@", "*"]
18 ["◡◡", "⊙⊙", "◠◠", "⊙⊙"]
19 ["◜ ", " ◝", " ◞", "◟ "]
10 ["←", "↖", "↑", "↗", "→", "↘", "↓", "↙"]
11 ["▁", "▃", "▄", "▅", "▆", "▇", "█", "▇", "▆", "▅", "▄", "▃"]
22 ["▉", "▊", "▋", "▌", "▍", "▎", "▏", "▎", "▍", "▌", "▋", "▊", "▉"]
23 ["▖", "▘", "▝", "▗"]
24 ["▌", "▀", "▐", "▄"]
25 ["┤", "┘", "┴", "└", "├", "┌", "┬", "┐"]
26 ["◢", "◣", "◤", "◥"]
27 ["⠁", "⠂", "⠄", "⡀", "⢀", "⠠", "⠐", "⠈"]
28 ["⢎⡰", "⢎⡡", "⢎⡑", "⢎⠱", "⠎⡱", "⢊⡱", "⢌⡱", "⢆⡱"]
29 [".", "o", "O", "°", "O", "o", "."]
.Ed
Or, define an array of strings each consisting of a frame in the progress sequence indicator:
.Bd -literal
# 𝄈⡂″⡈߳܃⢂:߳̈⢁܄ː“⢐″„⠑։ ⡁⡈;ܹ⡂։𝂬̤⡂꞉⣀ܹ⢁⠊𝄈⠉⠑ܸ̈׃ ;⢐;߳⠡܉˸⠒߳꞉⁚𝂬⠑⠒܅⠊;⠔⠢܄ ”⠉ֵ”⢂⢁̈⁚⠊˸⠌ܸ̤⣀𝂬⠤⠨⠢‥¨ ⡠܉꞉꞉⠑׃⠑⡐⠨؛ܸ܆„ܹ⡈⢁;⢄܄؛ ܲ⢄⠡⡁‥؛ܲ⢂“⢈։⠔⢄”꞉܉⠔
# Taken from @SmoothUnicode@botsin.space
progress_spinner_sequence = ["։ ","𝄈","⡂","″","⡈߳","܃ ","⢂",":߳̈","⢁","܄ ","ː ","“","⢐","″","„","⠑","։ "," ","⡁","⡈",";ܹ","⡂","։ ","𝂬̤","⡂","꞉ ","⣀ܹ","⢁","⠊","𝄈","⠉","⠑ܸ̈","׃ "," ",";","⢐",";߳","⠡","܉","˸ ","⠒߳","꞉ ","⁚ ","𝂬","⠑","⠒","܅","⠊",";","⠔","⠢","܄ "," ","”","⠉ֵ","”","⢂","⢁̈","⁚ ","⠊","˸ ","⠌ܸ̤","⣀","𝂬","⠤","⠨","⠢","‥","¨"," ","⡠","܉","꞉ ","꞉ ","⠑","׃ ","⠑","⡐","⠨","؛ܸ","܆","„ܹ","⡈","⢁",";","⢄܄","؛"," ܲ","⢄","⠡","⡁","‥","؛ܲ","⢂","“","⢈","։ ","⠔","⢄","”","꞉ ","܉","⠔"]
.Ed
2019-10-06 08:28:12 +00:00
.El
2020-05-28 13:02:57 +00:00
.Sh LOG
.Bl -tag -width 36 n
.It Ic log_file Ar String
2020-07-15 17:20:37 +00:00
.Pq Em optional
path of the log file
2020-05-28 13:02:57 +00:00
. \" default value
.Pq Pa $XDG_DATA_HOME/meli/meli.log
.It Ic maximum_level Ar String
2020-07-15 17:20:37 +00:00
.Pq Em optional
maximum level of messages to log.
All levels less or equal to the
2020-05-28 13:02:57 +00:00
.Ic maximum_level
2020-07-15 17:20:37 +00:00
will be appended to the log file.
Available levels are, in partial order:
2020-05-28 13:02:57 +00:00
.Bl -bullet -compact
.It
.Em OFF
.It
.Em FATAL
.It
.Em ERROR
.It
.Em WARN
.It
.Em INFO
.It
.Em DEBUG
.It
.Em TRACE
.El
This means that to turn logging off, set
.Ic maximum_level
to
.Em OFF Ns
\& .
. \" default value
.Pq Em INFO
.El
2020-07-15 12:19:27 +00:00
.Sh SMTP Connections
.Bl -tag -width 36 n
.It Ic hostname Ar String
server hostname
.It Ic port Ar Integer
server port
.It Ic envelope_from Ar String
2020-07-15 17:20:37 +00:00
.Pq Em optional
address to set as sender in SMTP transactions
2020-07-15 12:19:27 +00:00
. \" default value
.Pq Em none
.It Ic auth Ar SmtpAuth
SMTP server authentication.
See
.Sx SmtpAuth
subsection.
.It Ic security Ar SmtpSecurity
2020-07-15 17:20:37 +00:00
.Pq Em optional
gpg binary name or file location to use
2020-07-15 12:19:27 +00:00
. \" default value
.Po see
.Sx SmtpSecurity
subsection
.Pc
.It Ic extensions Ar SmtpExtensions
2020-07-15 17:20:37 +00:00
.Pq Em optional
set support for SMTP extensions if they are advertised by the server
2020-07-15 12:19:27 +00:00
. \" default value
.Po see
.Sx SmtpExtensions
subsection
.Pc
.El
.Ss SmtpAuth
.Bl -tag -width 36 n
.It Ic type Ar "none" | "auto"
.El
.Pp
For type "auto":
.Bl -tag -width 36 n
.It Ic username Ar String
2020-10-30 20:40:56 +00:00
.It Ic password Ar SmtpPassword
2020-07-15 12:19:27 +00:00
.It Ic require_auth Ar bool
2020-07-15 17:20:37 +00:00
.Pq Em optional
require authentication in every case
2020-07-15 12:19:27 +00:00
. \" default value
.Pq Em true
.El
2020-10-30 20:40:56 +00:00
.sp
Examples:
.Bd -literal
auth = { type = "auto", username = "user", password = { type = "raw", value = "hunter2" } }
.Ed
.Bd -literal
auth = { type = "auto", username = "user", password = "hunter2" }
.Ed
.Bd -literal
auth = { type = "none" }
.Ed
2020-07-15 12:19:27 +00:00
.Ss SmtpPassword
.Bl -tag -width 36 n
.It Ic type Ar "raw" | "command_evaluation"
.It Ic value Ar String
Either a raw password string, or command to execute.
.El
2020-10-30 20:40:56 +00:00
.sp
Examples:
.Bd -literal
password = { type = "raw", value = "hunter2" }
.Ed
.Bd -literal
password = { type = "command_eval", value = "gpg2 --no-tty -q -d ~/.passwords/user.gpg" }
.Ed
2020-07-15 12:19:27 +00:00
.Ss SmtpSecurity
Default security type is
.Em auto Ns
\& .
.Bl -tag -width 36 n
.It Ic type Ar "none" | "auto" | "starttls" | "tls"
.It Ic danger_accept_invalid_certs Ar bool
Accept invalid SSL/TLS certificates
. \" default value
.Pq Em false
.El
.Ss SmtpExtensions
.Bl -tag -width 36 n
.It Ic pipelining Ar bool
rfc2920
. \" default value
.Pq Em true
.It Ic chunking Ar bool
rfc3030
. \" default value
.Pq Em true
.It Ic prdr Ar bool
draft-hall-prdr-00
. \" default value
.Pq Em true
.It Ic dsn_notify Ar String
RFC3461
. \" default value
.Pq Em FAILURE
.El
2019-09-16 11:07:38 +00:00
.Sh SEE ALSO
2020-01-27 22:32:40 +00:00
.Xr meli 1 ,
.Xr meli-themes 5
2019-09-16 11:07:38 +00:00
.Sh CONFORMING TO
2020-06-26 15:59:12 +00:00
TOML Standard v.0.5.0 https://toml.io/en/v0.5.0
2019-09-16 11:07:38 +00:00
.Sh AUTHORS
Copyright 2017-2019
.An Manos Pitsidianakis Aq epilys@nessuent.xyz
2020-01-28 16:43:14 +00:00
Released under the GPL, version 3 or greater.
This software carries no warranty of any kind.
(See COPYING for full copyright and warranty notices.)
2019-09-16 11:07:38 +00:00
.Pp
.Aq https://meli.delivery