many small updates
[dotfiles.git] / email / .config / mutt / muttrc
1 # Basic information
2 set from="Mart Lubbers <mart@martlubbers.net>"
3 alternates "(mart@cs\.ru\.nl|m\.lubbers@cs\.ru\.nl|mart@martlubbers\.net|Mart\.Lubbers@ru\.nl)"
4 set use_from=yes
5 set reverse_name=yes
6 set envelope_from=yes
7 set mbox_type=Maildir
8 set folder=~/.local/share/offlineimap/mail
9 set spoolfile=+/INBOX/
10 set record=+/Sent/
11 set postponed=+/Drafts/
12 set mask="!^\\.[^.]"
13 source ~/.local/share/offlineimap/mailboxes
14
15 # Receiving, sending and searching
16 set sendmail="checkattach.sh msmtp -a net"
17 set send_charset="us-ascii:utf-8"
18 macro index,pager $ "<shell-escape>sync_mail.sh<enter><sync-mailbox>" "Force refresh"
19
20 # viewing and printing
21 macro attach B "<pipe-entry>firefox \"data:text/html;base64,$(base64 -w 0 <&0)\"<enter>"
22 set print_command='set -e; f=`mktemp -p "$HOME"/.cache/mutt`; \
23 muttprint -P A4 -p TO_FILE:"$f"; evince "$f"; rm "$f"'
24
25 # Set the correct msmtp account for the different addresses
26 send2-hook '~f mart@martlubbers.net'\
27 'set sendmail="checkattach.sh msmtp -a net"'
28 send2-hook '((~f m.lubbers@cs.ru.nl)|(~f m.lubbers@science.ru.nl)|(~f mart@cs.ru.nl)|(~f m.lubbers@cs.ru.nl))'\
29 'set sendmail="checkattach.sh msmtp -a ru"'
30
31 # Macro for switching to the ru address
32 alias identity_1 Mart Lubbers <mart@martlubbers.net>
33 alias identity_2 Mart Lubbers <mart@cs.ru.nl>
34 macro compose v "<edit-from>^Uidentity\_<tab>" "Select from"
35 macro compose <esc>1 "<esc>f^UMart Lubbers <mart@martlubbers.net><enter>"
36 macro compose <esc>2 "<esc>f^UMart Lubbers <mart@cs.ru.nl><enter>"
37
38 # Key bindings
39 bind index gg first-entry
40 bind index G last-entry
41 bind pager k previous-line
42 bind pager j next-line
43 bind pager gg top
44 bind pager G bottom
45 bind index,pager R group-reply
46 bind index,pager F flag-message
47
48 # Misc options
49 set timeout=2
50 set mail_check=0
51 set include=yes
52 set delete=yes
53 set confirmappend=no
54 set fast_reply=yes
55
56 # Display options
57 unset wait_key
58 unset markers
59 set sort_browser=alpha
60 set sort=threads
61 set sort_aux=date
62 set editor="vim -c '%!proofpoint_decoder'"
63 set duplicate_threads=yes
64 ignore headers *
65 unignore headers from to subject date cc
66 set mailcap_path=~/.config/mutt/mailcap
67 set mailcap_sanitize=yes
68 set display_filter="proofpoint_decoder"
69
70 # w3m --dump
71 auto_view text/html
72 # pdftotext
73 auto_view application/pdf
74 # khal
75 auto_view application/ics
76 auto_view text/calendar
77 # libreoffice --cat
78 auto_view application/vnd.openxmlformats-officedocument.wordprocessingml.document
79 auto_view application/vnd.oasis.opendocument.text
80 auto_view application/msword
81 # vcards
82 auto_view text/x-vcard
83
84 # Pager options
85 #set pager=/usr/share/vim/vim82/macros/less.sh
86 set pager_index_lines=5
87 set pager_context=3
88 set pager_stop
89 set menu_scroll
90 set tilde
91 set quote_regexp="^( {0,4}[>|:#%]| {0,4}[a-z0-9]+[>|]+)+"
92
93 # Address book
94 set query_command= "khard email --parsable '%s'"
95 bind editor <Tab> complete-query
96 bind editor ^T complete
97 macro index,pager A \
98 "<pipe-message>khard add-email<return>" \
99 "add the sender email address to khard"
100
101 # sidebar
102 #source ~/.config/mutt/sidebar.muttrc
103
104 # notmuch
105 source ~/.config/mutt/notmuch.muttrc
106
107 # Crypto
108 source ~/.config/mutt/gpg.muttrc
109
110 # Colors
111 source ~/.config/mutt/colors.muttrc