mirror of
https://git.meli.delivery/meli/meli
synced 2024-10-30 21:20:34 +00:00
1063bb73b5
- Unflatten shortcuts configuration table. Shortcuts now have to be defined in levels: [shortcuts.general] ... [shortcuts.pager] ... - Add shortcuts for thread view - Sort alphabetically in help view
108 lines
3.0 KiB
Plaintext
108 lines
3.0 KiB
Plaintext
# Look into meli.conf(5) for all valid configuration options, their
|
|
# descriptions and default values
|
|
#
|
|
#
|
|
# Setting up a Maildir account
|
|
#[accounts.account-name]
|
|
#root_folder = "/path/to/root/folder"
|
|
#format = "Maildir"
|
|
#index_style = "Conversations" # or [plain, threaded, compact]
|
|
#identity="email@address.tld"
|
|
#display_name = "Name"
|
|
#subscribed_folders = ["INBOX", "INBOX/Sent", "INBOX/Drafts", "INBOX/Junk"]
|
|
|
|
# Set folder-specific settings
|
|
# [accounts.account-name.folders]
|
|
# "INBOX" = { rename="Inbox" }
|
|
# "drafts" = { rename="Drafts" }
|
|
# "foobar-devel" = { ignore = true } # don't show notifications for this folder
|
|
|
|
# Setting up an mbox account
|
|
#[accounts.mbox]
|
|
#root_folder = "/var/mail/username"
|
|
#format = "mbox"
|
|
#index_style = "Compact"
|
|
#identity="username@hostname.local"
|
|
#
|
|
# Setting up an IMAP account
|
|
#[accounts."imap"]
|
|
#root_folder = "INBOX"
|
|
#format = "imap"
|
|
#server_hostname="mail.server.tld"
|
|
#server_password="pha2hiLohs2eeeish2phaii1We3ood4chakaiv0hien2ahie3m"
|
|
#server_username="username@server.tld"
|
|
#server_port="993" # imaps
|
|
#server_port="143" # STARTTLS
|
|
#use_starttls=true #optional
|
|
#index_style = "Conversations"
|
|
#identity = "username@server.tld"
|
|
#display_name = "Name Name"
|
|
#subscribed_folders = ["INBOX", "INBOX/Sent", "INBOX/Drafts", "INBOX/Junk"]
|
|
|
|
# Setting up an account for an already existing notmuch database
|
|
#[accounts.notmuch]
|
|
#root_folder = "/path/to/folder" # where .notmuch/ directory is located
|
|
#format = "notmuch"
|
|
#index_style = "conversations"
|
|
#identity="username@server.tld"
|
|
#display_name = "Name Name"
|
|
# # notmuch folders are virtual, they are defined by their alias and the notmuch query that corresponds to their content.
|
|
# [accounts.notmuch.folders]
|
|
# "INBOX" = { query="tag:inbox", subscribe = true }
|
|
# "Drafts" = { query="tag:draft", subscribe = true }
|
|
# "Sent" = { query="from:username@server.tld from:username2@server.tld", subscribe = true }
|
|
#
|
|
#[pager]
|
|
#filter = "/usr/bin/pygmentize"
|
|
#pager_context = 0 # default, optional
|
|
#headers_sticky = true # default, optional
|
|
|
|
#[notifications]
|
|
#enable = true # default, optional
|
|
#script = "notify-send"
|
|
#xbiff_file_path = PATH # for use with xbiff(1)
|
|
#play_sound = true # default, optional
|
|
#sound_file = PATH # optional
|
|
|
|
##shortcuts
|
|
# Compact mail listing defaults:
|
|
#[shortcuts.compact_listing]
|
|
#exit_thread = 'i'
|
|
#
|
|
#[shortcuts.contact-list]
|
|
#create_contact = 'c'
|
|
#edit_contact = 'e'
|
|
|
|
# Mail listing defaults
|
|
#[shortcuts.listing]
|
|
#prev_page = "PageUp"
|
|
#next_page = "PageDown"
|
|
#prev_folder = 'K'
|
|
#next_folder = 'J'
|
|
#prev_account = 'l'
|
|
#next_account = 'h'
|
|
#new_mail = 'm'
|
|
#set_seen = 'n'
|
|
|
|
# Pager defaults
|
|
|
|
#[shortcuts.pager]
|
|
#scroll_up = 'k'
|
|
#scroll_down = 'j'
|
|
#page_up = "PageUp"
|
|
#page_down = "PageDown"
|
|
|
|
#[composing]
|
|
# required for sending e-mail
|
|
#mailer_cmd = 'msmtp --read-recipients --read-envelope-from'
|
|
#editor_cmd = 'vim +/^$' # optional, by default $EDITOR is used.
|
|
#
|
|
#
|
|
#[pgp]
|
|
#auto_sign = false # always sign sent messages
|
|
#auto_verify_signatures = true # always verify signatures when reading signed e-mails
|
|
#gpg_binary = "/usr/bin/gpg2" #optional
|
|
#
|
|
#[terminal]
|
|
#theme = "dark" # or "light"
|