mirror of
https://github.com/webgefrickel/dotfiles
synced 2024-11-11 07:10:40 +00:00
114 lines
3.6 KiB
Plaintext
114 lines
3.6 KiB
Plaintext
# paths
|
|
set folder = ~/Mail
|
|
set certificate_file = ~/Dotfiles/office/certificates.crt
|
|
set message_cachedir = ~/.mutt/cache/bodies
|
|
set mailcap_path = ~/.mutt/mailcap
|
|
set tmpdir = ~/.mutt/tmp
|
|
|
|
# basic options
|
|
set wait_key = no
|
|
set mbox_type = Maildir
|
|
set timeout = 3
|
|
set mail_check = 0
|
|
set delete
|
|
set quit
|
|
set thorough_search
|
|
set mail_check_stats
|
|
unset confirmappend
|
|
unset move
|
|
unset mark_old
|
|
unset beep_new
|
|
|
|
# compose View Options
|
|
set envelope_from # which from?
|
|
set edit_headers # show headers when composing
|
|
set fast_reply # skip to compose when replying
|
|
set askcc # ask for CC:
|
|
set fcc_attach # save attachments with the body
|
|
set forward_format = "Fwd: %s" # format of subject when forwarding
|
|
set forward_decode # decode when forwarding
|
|
set attribution = "On %d, %n wrote:" # format of quoting header
|
|
set reply_to # reply to Reply to: field
|
|
set reverse_name # reply as whomever it was to
|
|
set include # include message in replies
|
|
set forward_quote # include message in forwards
|
|
set editor = "nvim"
|
|
set text_flowed
|
|
unset sig_dashes # no dashes before sig
|
|
unset mime_forward # forward attachments as part of body
|
|
|
|
# status bar, date format, finding stuff etc.
|
|
set status_chars = " *%A"
|
|
set status_format = "[ Folder: %f ] [%r%m messages%?n? (%n new)?%?d? (%d to delete)?%?t? (%t tagged)? ]%>─%?p?( %p postponed )?"
|
|
set date_format = "%d.%m.%Y %H:%M"
|
|
set index_format = "[%Z] %?X?A&-? %D %-20.20F %s"
|
|
set sort = threads
|
|
set sort_aux = reverse-last-date-received
|
|
set uncollapse_jump
|
|
set sort_re
|
|
set reply_regexp = "^(([Rr][Ee]?(\[[0-9]+\])?: *)?(\[[^]]+\] *)?)*"
|
|
set quote_regexp = "^( {0,4}[>|:#%]| {0,4}[a-z0-9]+[>|]+)+"
|
|
set send_charset = "utf-8:iso-8859-1:us-ascii"
|
|
set charset = "utf-8"
|
|
|
|
# when composing emails, use this command to get addresses from mu
|
|
set query_command = "mu cfind --format=mutt-ab '%s'"
|
|
|
|
# Pager View Options
|
|
set pager_index_lines = 10
|
|
set pager_context = 3
|
|
set pager_stop
|
|
set menu_scroll
|
|
set tilde
|
|
unset markers
|
|
|
|
# email headers and attachments
|
|
ignore *
|
|
unignore from: to: cc: bcc: date: subject:
|
|
unhdr_order *
|
|
hdr_order from: to: cc: bcc: date: subject:
|
|
alternative_order text/plain text/enriched text/html
|
|
auto_view text/html
|
|
|
|
# GPG/PGP
|
|
set pgp_sign_as = 2F283D0D
|
|
set crypt_use_gpgme = yes
|
|
set crypt_autosign = no
|
|
set crypt_verify_sig = yes
|
|
set crypt_replysign = yes
|
|
set crypt_replyencrypt = yes
|
|
set crypt_replysignencrypted = yes
|
|
|
|
# sidebar patch config
|
|
set sidebar_visible
|
|
set sidebar_short_path
|
|
set sidebar_folder_indent
|
|
set sidebar_width = 25
|
|
set sidebar_divider_char = ' | '
|
|
set sidebar_indent_string = ' ''
|
|
set sidebar_format = "%B %* [%?N?%N / ?%S]"
|
|
|
|
# Mailboxes to show in the sidebar.
|
|
mailboxes =mailbox
|
|
mailboxes =mailbox/INBOX =mailbox/archive =mailbox/sent =mailbox/drafts =mailbox/junk =mailbox/trash
|
|
mailboxes ="───────────────────"
|
|
mailboxes =viu
|
|
mailboxes =viu/INBOX =viu/archive =viu/sent =viu/drafts =viu/junk =viu/trash
|
|
|
|
# source colors and keybindings
|
|
# keeping those in one place makes it easier for my brain
|
|
source ~/.mutt/colors
|
|
source ~/.mutt/bindings
|
|
|
|
# And finally the account config for multiple accounts
|
|
#############################################################
|
|
|
|
# by default, use mailbox
|
|
set realname = "Steffen Rademacker"
|
|
set spoolfile = "+mailbox/INBOX"
|
|
source ~/.mutt/accounts/mailbox
|
|
|
|
# when changing into other mailboxes, use different adresses etc.
|
|
folder-hook mailbox/* source ~/.mutt/accounts/mailbox
|
|
folder-hook viu/* source ~/.mutt/accounts/viu
|