dockerfiles/mutt/.muttrc

77 lines
2.6 KiB
Plaintext
Raw Normal View History

2014-12-05 08:09:20 +01:00
# A basic .muttrc for use with Gmail
# Change the following six lines to match your Gmail account details
set imap_user = "%GMAIL_LOGIN%"
set imap_pass = "%GMAIL_PASS%" # leave blank for prompt
set smtp_url = "smtps://$imap_user@smtp.gmail.com:465/"
set smtp_pass = "%GMAIL_PASS%" # will prompt if blank
set from = "%GMAIL_FROM%"
set realname = "%GMAIL_NAME%"
# Change the following line to a different editor you prefer (and update the Dockerfile accordingly, of course).
set editor = "vim"
# I like seeing some headers. :)
ignore *
unignore date subject x- user-agent posted-to content-type
unignore to cc bcc reply-to from
set edit_headers = yes
my_hdr X-Docker-Image: jess/mutt
# TODO figure out how to use the sidebar more effectively :)
set sidebar_visible = no
# Tianon keybindings and settings, because he's special.
bind pager <up> previous-line
bind pager <down> next-line
set resolve = no # uh, don't randomly take me to other messages when I do things
# Basic config, you can leave this as is
set folder = "imaps://imap.gmail.com:993"
set spoolfile = "+INBOX"
set imap_check_subscribed
set hostname = gmail.com
set mail_check = 120
set timeout = 300
set imap_keepalive = 300
set postponed = "+[Gmail]/Drafts"
set record = "" # gmail automatically handles saving sent emails
2014-12-05 20:37:42 +01:00
2014-12-05 08:09:20 +01:00
set header_cache=~/.mutt/cache/headers
set message_cachedir=~/.mutt/cache/bodies
set certificate_file=~/.mutt/certificates
2014-12-05 20:37:42 +01:00
2014-12-05 08:09:20 +01:00
set move = no
set include
2014-12-05 20:37:42 +01:00
set sort = 'reverse-threads'
set sort_aux = 'last-date-received'
2014-12-05 08:09:20 +01:00
set auto_tag = yes
2014-12-05 20:37:42 +01:00
2014-12-05 08:09:20 +01:00
ignore "Authentication-Results:"
ignore "DomainKey-Signature:"
ignore "DKIM-Signature:"
hdr_order Date From To Cc
alternative_order text/plain text/html *
auto_view text/html
2014-12-05 20:37:42 +01:00
2014-12-05 08:09:20 +01:00
bind editor <Tab> complete-query
bind editor ^T complete
bind editor <space> noop
# Gmail-style keyboard shortcuts
2014-12-05 20:37:42 +01:00
macro index,pager gi "<change-folder>=INBOX<enter>" "Go to Inbox"
macro index,pager ga "<change-folder>=[Gmail]/All Mail<enter>" "Go to All Mail"
macro index,pager gs "<change-folder>=[Gmail]/Starred<enter>" "Go to Starred"
macro index,pager gd "<change-folder>=[Gmail]/Drafts<enter>" "Go to Drafts"
macro index,pager gt "<change-folder>=[Gmail]/Sent Mail<enter>" "Go to Sent Mail"
macro index,pager y "<enter-command>unset trash\n <delete-message>" "Archive"
macro index,pager d "<enter-command>set trash=\"imaps://imap.googlemail.com/[GMail]/Bin\"\n <delete-message>" "Trash"
macro index,pager ! <save-message>=[Gmail]/Spam<enter><enter> "Report spam"
macro index,pager + <save-message>=[Gmail]/Important<enter><enter> "Mark as important"
2014-12-05 08:09:20 +01:00
# colors
source /home/user/mutt-colors-solarized-dark-16.muttrc
2014-12-05 08:30:36 +01:00
source /home/user/mutt-patch-highlighting.muttrc