2018-01-10 00:18:19 +00:00
|
|
|
#
|
|
|
|
# aerc main configuration
|
|
|
|
|
|
|
|
[ui]
|
|
|
|
#
|
|
|
|
# Describes the format for each row in a mailbox view. This field is compatible
|
2019-07-03 03:14:43 +00:00
|
|
|
# with mutt's printf-like syntax.
|
2018-01-10 00:18:19 +00:00
|
|
|
#
|
2020-04-22 23:04:24 +00:00
|
|
|
# Default: %D %-17.17n %Z %s
|
2021-11-06 16:44:53 +00:00
|
|
|
index-format=%-20.20D %-17.17n %Z %s
|
2018-01-10 00:18:19 +00:00
|
|
|
|
|
|
|
#
|
2019-06-07 19:35:23 +00:00
|
|
|
# See time.Time#Format at https://godoc.org/time#Time.Format
|
2018-01-10 00:18:19 +00:00
|
|
|
#
|
2019-06-07 19:35:23 +00:00
|
|
|
# Default: 2006-01-02 03:04 PM (ISO 8601 + 12 hour time)
|
|
|
|
timestamp-format=2006-01-02 03:04 PM
|
2018-01-10 00:18:19 +00:00
|
|
|
|
2021-10-26 15:24:45 +00:00
|
|
|
#
|
|
|
|
# Index-only time format for messages that were received/sent today.
|
|
|
|
# If this is not specified, timestamp-format is used instead.
|
|
|
|
#
|
2021-11-06 16:44:53 +00:00
|
|
|
# Default: "03:04 PM" (12 hour time)
|
|
|
|
this-day-time-format=03:04 PM
|
2021-10-26 15:24:45 +00:00
|
|
|
|
2021-11-06 16:32:38 +00:00
|
|
|
#
|
|
|
|
# Index-only time format for messages that were received/sent within the last
|
|
|
|
# 7 days. If this is not specified, timestamp-format is used instead.
|
|
|
|
#
|
2021-11-06 16:44:53 +00:00
|
|
|
# Default: "Monday 03:04 PM" (Week day + 12 hour time)
|
|
|
|
this-week-time-format=Monday 03:04 PM
|
2021-11-06 16:32:38 +00:00
|
|
|
|
2021-10-26 15:24:45 +00:00
|
|
|
#
|
|
|
|
# Index-only time format for messages that were received/sent this year.
|
|
|
|
# If this is not specified, timestamp-format is used instead.
|
|
|
|
#
|
2021-11-06 16:44:53 +00:00
|
|
|
# Default: "January 02" (Month + month day)
|
|
|
|
this-year-time-format=January 02
|
2021-10-26 15:24:45 +00:00
|
|
|
|
2018-01-10 00:18:19 +00:00
|
|
|
#
|
|
|
|
# Width of the sidebar, including the border.
|
|
|
|
#
|
|
|
|
# Default: 20
|
|
|
|
sidebar-width=20
|
|
|
|
|
|
|
|
#
|
|
|
|
# Message to display when viewing an empty folder.
|
|
|
|
#
|
|
|
|
# Default: (no messages)
|
|
|
|
empty-message=(no messages)
|
|
|
|
|
2019-06-12 06:31:52 +00:00
|
|
|
# Message to display when no folders exists or are all filtered
|
|
|
|
#
|
|
|
|
# Default: (no folders)
|
|
|
|
empty-dirlist=(no folders)
|
|
|
|
|
2019-07-16 18:06:22 +00:00
|
|
|
# Enable mouse events in the ui, e.g. clicking and scrolling with the mousewheel
|
|
|
|
#
|
|
|
|
# Default: false
|
|
|
|
mouse-enabled=false
|
|
|
|
|
2019-07-29 14:50:02 +00:00
|
|
|
#
|
|
|
|
# Ring the bell when new messages are received
|
|
|
|
#
|
2020-04-22 23:04:24 +00:00
|
|
|
# Default: true
|
2019-07-29 14:50:02 +00:00
|
|
|
new-message-bell=true
|
|
|
|
|
2020-03-07 16:42:41 +00:00
|
|
|
# Marker to show before a pinned tab's name.
|
|
|
|
#
|
|
|
|
# Default: `
|
2020-03-13 13:09:29 +00:00
|
|
|
pinned-tab-marker='`'
|
2020-03-07 16:42:41 +00:00
|
|
|
|
2019-09-11 16:37:21 +00:00
|
|
|
# Describes the format string to use for the directory list
|
|
|
|
#
|
|
|
|
# Default: %n %>r
|
|
|
|
dirlist-format=%n %>r
|
|
|
|
|
2022-01-28 09:17:13 +00:00
|
|
|
# Delay after which the messages are actually listed when entering a directory.
|
|
|
|
# This avoids loading messages when skipping over folders and makes the UI more
|
|
|
|
# responsive. If you do not want that, set it to 0s.
|
|
|
|
#
|
|
|
|
# Default: 200ms
|
|
|
|
dirlist-delay=200ms
|
|
|
|
|
2019-09-19 22:37:45 +00:00
|
|
|
# List of space-separated criteria to sort the messages by, see *sort*
|
|
|
|
# command in *aerc*(1) for reference. Prefixing a criterion with "-r "
|
|
|
|
# reverses that criterion.
|
|
|
|
#
|
|
|
|
# Example: "from -r date"
|
|
|
|
#
|
|
|
|
# Default: ""
|
|
|
|
sort=
|
|
|
|
|
2019-09-20 19:22:09 +00:00
|
|
|
# Moves to next message when the current message is deleted
|
|
|
|
#
|
2020-04-22 23:04:24 +00:00
|
|
|
# Default: true
|
2019-09-20 19:22:09 +00:00
|
|
|
next-message-on-delete=true
|
|
|
|
|
2020-07-27 08:03:55 +00:00
|
|
|
# The directories where the stylesets are stored. It takes a colon-separated
|
2022-02-19 13:06:57 +00:00
|
|
|
# list of directories. If this is unset or if a styleset cannot be found, the
|
|
|
|
# following paths will be used as a fallback in that order:
|
2020-07-27 08:03:55 +00:00
|
|
|
#
|
2022-02-19 13:06:57 +00:00
|
|
|
# ~/.config/aerc/stylesets
|
|
|
|
# ~/.local/share/aerc/stylesets
|
|
|
|
# /usr/local/share/aerc/stylesets
|
|
|
|
# /usr/share/aerc/stylesets
|
|
|
|
#
|
|
|
|
# default: ""
|
|
|
|
stylesets-dirs=
|
2020-07-27 08:03:55 +00:00
|
|
|
|
2021-11-29 22:48:35 +00:00
|
|
|
# Uncomment to use box-drawing characters for vertical and horizontal borders.
|
|
|
|
#
|
|
|
|
# Default: spaces
|
|
|
|
# border-char-vertical=│
|
|
|
|
# border-char-horizontal=─
|
|
|
|
|
2020-07-27 08:03:55 +00:00
|
|
|
# Sets the styleset to use for the aerc ui elements.
|
|
|
|
#
|
|
|
|
# Default: default
|
|
|
|
styleset-name=default
|
|
|
|
|
2022-01-31 16:32:19 +00:00
|
|
|
# Activates fuzzy search for IMAP folders: the typed string is search in the
|
|
|
|
# folder tree in any position, not necessarily at the beginning.
|
|
|
|
#fuzzy-folder-complete=false
|
|
|
|
|
2021-11-12 17:12:02 +00:00
|
|
|
#[ui:account=foo]
|
|
|
|
#
|
|
|
|
# Enable threading in the ui. Only works with notmuch:// and imap:// accounts
|
|
|
|
# (when the server supports it).
|
|
|
|
#
|
|
|
|
# Default: false
|
|
|
|
#threading-enabled=false
|
|
|
|
|
2018-01-10 00:18:19 +00:00
|
|
|
[viewer]
|
|
|
|
#
|
2019-03-31 18:24:53 +00:00
|
|
|
# Specifies the pager to use when displaying emails. Note that some filters
|
|
|
|
# may add ANSI codes to add color to rendered emails, so you may want to use a
|
|
|
|
# pager which supports ANSI codes.
|
2018-01-10 00:18:19 +00:00
|
|
|
#
|
2019-03-31 18:24:53 +00:00
|
|
|
# Default: less -R
|
|
|
|
pager=less -R
|
2018-01-10 00:18:19 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# If an email offers several versions (multipart), you can configure which
|
|
|
|
# mimetype to prefer. For example, this can be used to prefer plaintext over
|
|
|
|
# html emails.
|
|
|
|
#
|
|
|
|
# Default: text/plain,text/html
|
|
|
|
alternatives=text/plain,text/html
|
|
|
|
|
2019-06-07 08:26:14 +00:00
|
|
|
#
|
|
|
|
# Default setting to determine whether to show full headers or only parsed
|
|
|
|
# ones in message viewer.
|
|
|
|
#
|
|
|
|
# Default: false
|
|
|
|
show-headers=false
|
|
|
|
|
2019-07-15 18:56:44 +00:00
|
|
|
#
|
|
|
|
# Layout of headers when viewing a message. To display multiple headers in the
|
|
|
|
# same row, separate them with a pipe, e.g. "From|To". Rows will be hidden if
|
|
|
|
# none of their specified headers are present in the message.
|
|
|
|
#
|
|
|
|
# Default: From|To,Cc|Bcc,Date,Subject
|
|
|
|
header-layout=From|To,Cc|Bcc,Date,Subject
|
|
|
|
|
2019-07-17 20:51:02 +00:00
|
|
|
# Whether to always show the mimetype of an email, even when it is just a single part
|
|
|
|
#
|
|
|
|
# Default: false
|
|
|
|
always-show-mime=false
|
|
|
|
|
2019-12-20 18:21:33 +00:00
|
|
|
# How long to wait after the last input before auto-completion is triggered.
|
|
|
|
#
|
|
|
|
# Default: 250ms
|
|
|
|
completion-delay=250ms
|
|
|
|
|
|
|
|
#
|
|
|
|
# Global switch for completion popovers
|
|
|
|
#
|
|
|
|
# Default: true
|
|
|
|
completion-popovers=true
|
|
|
|
|
2019-05-14 19:25:30 +00:00
|
|
|
[compose]
|
|
|
|
#
|
|
|
|
# Specifies the command to run the editor with. It will be shown in an embedded
|
|
|
|
# terminal, though it may also launch a graphical window if the environment
|
|
|
|
# supports it. Defaults to $EDITOR, or vi.
|
|
|
|
editor=
|
|
|
|
|
2019-07-22 23:29:07 +00:00
|
|
|
#
|
|
|
|
# Default header fields to display when composing a message. To display
|
2019-11-03 12:51:14 +00:00
|
|
|
# multiple headers in the same row, separate them with a pipe, e.g. "To|From".
|
2019-07-22 23:29:07 +00:00
|
|
|
#
|
|
|
|
# Default: To|From,Subject
|
|
|
|
header-layout=To|From,Subject
|
|
|
|
|
2019-12-20 18:21:35 +00:00
|
|
|
#
|
|
|
|
# Specifies the command to be used to tab-complete email addresses. Any
|
|
|
|
# occurrence of "%s" in the address-book-cmd will be replaced with what the
|
|
|
|
# user has typed so far.
|
|
|
|
#
|
|
|
|
# The command must output the completions to standard output, one completion
|
|
|
|
# per line. Each line must be tab-delimited, with an email address occurring as
|
|
|
|
# the first field. Only the email address field is required. The second field,
|
|
|
|
# if present, will be treated as the contact name. Additional fields are
|
|
|
|
# ignored.
|
|
|
|
address-book-cmd=
|
|
|
|
|
2022-01-31 14:28:58 +00:00
|
|
|
#
|
|
|
|
# Allow to address yourself when replying
|
|
|
|
#
|
|
|
|
# Default: true
|
|
|
|
reply-to-self=true
|
|
|
|
|
2019-03-31 18:24:53 +00:00
|
|
|
[filters]
|
|
|
|
#
|
|
|
|
# Filters allow you to pipe an email body through a shell command to render
|
|
|
|
# certain emails differently, e.g. highlighting them with ANSI escape codes.
|
|
|
|
#
|
|
|
|
# The first filter which matches the email's mimetype will be used, so order
|
|
|
|
# them from most to least specific.
|
|
|
|
#
|
|
|
|
# You can also match on non-mimetypes, by prefixing with the header to match
|
2019-03-31 18:42:18 +00:00
|
|
|
# against (non-case-sensitive) and a comma, e.g. subject,text will match a
|
|
|
|
# subject which contains "text". Use header,~regex to match against a regex.
|
2022-02-19 13:06:57 +00:00
|
|
|
#subject,~^\[PATCH=colordiff
|
2022-02-19 21:11:06 +00:00
|
|
|
text/plain=sed 's/^>\+.*/\x1b[2;36m&\x1b[0m/'
|
2022-02-19 13:06:57 +00:00
|
|
|
#text/html=pandoc -f html -t plain
|
2019-06-07 14:23:12 +00:00
|
|
|
#image/*=catimg -w $(tput cols) -
|
2019-07-21 20:01:51 +00:00
|
|
|
|
|
|
|
[triggers]
|
|
|
|
#
|
|
|
|
# Triggers specify commands to execute when certain events occur.
|
|
|
|
#
|
|
|
|
# Example:
|
2020-04-27 18:19:05 +00:00
|
|
|
# new-email=exec notify-send "New email from %n" "%s"
|
2019-07-21 20:01:51 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Executed when a new email arrives in the selected folder
|
|
|
|
new-email=
|
2019-11-03 12:51:14 +00:00
|
|
|
|
|
|
|
[templates]
|
|
|
|
# Templates are used to populate email bodies automatically.
|
|
|
|
#
|
|
|
|
|
|
|
|
# The directories where the templates are stored. It takes a colon-separated
|
2022-02-19 13:06:57 +00:00
|
|
|
# list of directories. If this is unset or if a template cannot be found, the
|
|
|
|
# following paths will be used as a fallback in that order:
|
|
|
|
#
|
|
|
|
# ~/.config/aerc/templates
|
|
|
|
# ~/.local/share/aerc/templates
|
|
|
|
# /usr/local/share/aerc/templates
|
|
|
|
# /usr/share/aerc/templates
|
2019-11-03 12:51:14 +00:00
|
|
|
#
|
2022-02-19 13:06:57 +00:00
|
|
|
# default: ""
|
|
|
|
template-dirs=
|
2019-11-03 12:51:14 +00:00
|
|
|
|
2022-01-19 20:28:06 +00:00
|
|
|
# The default template to be used for new messages.
|
|
|
|
#
|
|
|
|
# default: new_message
|
|
|
|
new-message=new_message
|
|
|
|
|
2022-01-19 19:57:48 +00:00
|
|
|
# The default template to be used for quoted replies.
|
2019-11-03 12:51:14 +00:00
|
|
|
#
|
|
|
|
# default: quoted_reply
|
|
|
|
quoted-reply=quoted_reply
|
|
|
|
|
2022-01-19 19:57:48 +00:00
|
|
|
# The default template to be used for forward as body.
|
2019-11-03 12:51:14 +00:00
|
|
|
#
|
|
|
|
# default: forward_as_body
|
|
|
|
forwards=forward_as_body
|