update mutt and mailcap

This commit is contained in:
Barak Michener 2018-08-10 13:33:41 -07:00
parent 9f29b0eb44
commit 08aba1e3d0
2 changed files with 17 additions and 1 deletions

3
.mailcap Normal file
View file

@ -0,0 +1,3 @@
text/html; w3m -I %{charset} -T text/html -cols 150; copiousoutput;
#text/html; pandoc -f html -t markdown; copiousoutput;

15
.muttrc
View file

@ -36,6 +36,7 @@ bind index,pager s flag-message #Star a message
macro index,pager + "<save-message>=[Gmail]/Important<enter>" "Mark as important" macro index,pager + "<save-message>=[Gmail]/Important<enter>" "Mark as important"
macro index,pager ! "<save-message>=[Gmail]/Spam<enter>" "Report spam" macro index,pager ! "<save-message>=[Gmail]/Spam<enter>" "Report spam"
bind index,pager a group-reply #Reply all bind index,pager a group-reply #Reply all
bind pager A view-attachments #In emails
bind index,pager \# delete-thread #Delete bind index,pager \# delete-thread #Delete
bind index,pager l copy-message #Label bind index,pager l copy-message #Label
bind index L limit bind index L limit
@ -74,7 +75,7 @@ set beep_new
set sort = reverse-threads set sort = reverse-threads
set sort_aux = last-date-received set sort_aux = last-date-received
alternative_order text/plain text/html alternative_order text/plain text/enriched text/html
auto_view text/html auto_view text/html
#set alias_file = ~/.mutt/aliases #set alias_file = ~/.mutt/aliases
@ -89,6 +90,8 @@ bind index gg first-entry
bind index G last-entry bind index G last-entry
#bind index A toggle-read #bind index A toggle-read
bind index n mail bind index n mail
bind index _ collapse-all
bind index - collapse-thread
macro index c "<change-folder>?<toggle-mailboxes>" "open a different folder" macro index c "<change-folder>?<toggle-mailboxes>" "open a different folder"
macro pager c "<change-folder>?<toggle-mailboxes>" "open a different folder" macro pager c "<change-folder>?<toggle-mailboxes>" "open a different folder"
@ -118,3 +121,13 @@ color header brightblue black ^Subject:
color body brightred black [\-\.+_a-zA-Z0-9]+@[\-\.a-zA-Z0-9]+ color body brightred black [\-\.+_a-zA-Z0-9]+@[\-\.a-zA-Z0-9]+
color body brightblue black (https?|ftp)://[\-\.,/%~_:?&=\#a-zA-Z0-9]+ color body brightblue black (https?|ftp)://[\-\.,/%~_:?&=\#a-zA-Z0-9]+
color index brightcyan default ~N color index brightcyan default ~N
color index yellow default "~v~(!~N)~(!~F)" # collapsed thread with no New or Flagged
color index red default "~v~(~F)~(!~N)" # collapsed thread with Flagged but no New
color index green default "~v~(~N)" # collapsed thread with New
folder-hook . exec collapse-all
## TO show the number of messages in a collapsed thread
## you need to add "%M" to the "index_format", eg:
#set index_format="%4C %Z %2M %[!%y%m%d] %-17.17F (%3l) %s"
set index_format="%4C %Z %2M %{%b %d} %-15.15L (%?l?%4l&%4c?) %s"