Adding muttrc
This commit is contained in:
parent
70b8e2b59c
commit
9bd493911c
1 changed files with 76 additions and 0 deletions
76
.muttrc
Normal file
76
.muttrc
Normal file
|
|
@ -0,0 +1,76 @@
|
||||||
|
# Gmail stuff
|
||||||
|
#set imap_user="hunter.haugen@gmail.com"
|
||||||
|
set imap_user="hunner"
|
||||||
|
#set imap_pass="password"
|
||||||
|
|
||||||
|
#set smtp_url="smtp://hunter.haugen@smtp.gmail.com:587/"
|
||||||
|
set smtp_url="smtp://mailhost.cecs.pdx.edu:587/"
|
||||||
|
set ssl_min_dh_prime_bits=512
|
||||||
|
#set smtp_pass="password"
|
||||||
|
set from="hunner@cat.pdx.edu"
|
||||||
|
set realname="Hunter Haugen"
|
||||||
|
|
||||||
|
#set folder="imaps://imap.gmail.com:993"
|
||||||
|
set folder="imaps://mailhost.cecs.pdx.edu:993"
|
||||||
|
set spoolfile="+INBOX"
|
||||||
|
#set postponed="+[Gmail]/Drafts"
|
||||||
|
#set record="+[Gmail]/Sent Mail"
|
||||||
|
|
||||||
|
# Cache message headers for quick retrieval
|
||||||
|
set header_cache=~/.mutt/cache/headers
|
||||||
|
set message_cachedir=~/.mutt/cache/bodies
|
||||||
|
set certificate_file=~/.mutt/certificates
|
||||||
|
|
||||||
|
set move=no
|
||||||
|
|
||||||
|
# Sort like gmail sorts it
|
||||||
|
set sort=threads
|
||||||
|
set sort_aux=last-date-received
|
||||||
|
# Automatically poll subscribed mailboxes for new mail
|
||||||
|
set imap_check_subscribed
|
||||||
|
# Display download progress every 5K
|
||||||
|
set net_inc=5
|
||||||
|
|
||||||
|
# Ignore gmail stuff, just in case
|
||||||
|
ignore "Authentication-Results:"
|
||||||
|
ignore "DomainKey-Signature:"
|
||||||
|
ignore "DKIM-Signature:"
|
||||||
|
|
||||||
|
# Pretty it up
|
||||||
|
# ----
|
||||||
|
# default list of header fields to weed out when displaying mail
|
||||||
|
# ignore them all and then unignore what you want to see
|
||||||
|
ignore *
|
||||||
|
unignore Date To From: Cc Subject X-Tts
|
||||||
|
hdr_order Date To From: Cc Subject X-Tts
|
||||||
|
color normal default default
|
||||||
|
color header red default '^(Cc|Date|To|From|Subject|X-Tts):'
|
||||||
|
color hdrdefault cyan default
|
||||||
|
|
||||||
|
color index white default ~N
|
||||||
|
color index brightwhite default ~O
|
||||||
|
color index magenta default ~F
|
||||||
|
color index brightblack default ~D
|
||||||
|
|
||||||
|
color tree magenta default
|
||||||
|
color quoted magenta default
|
||||||
|
color quoted1 white default
|
||||||
|
color quoted2 brightred default
|
||||||
|
color quoted3 brightmagenta default
|
||||||
|
|
||||||
|
#color body cyan default "((ftp|http|https)://|news:)[^ >)\"\t]+"
|
||||||
|
color body magenta default "[-a-z_0-9.+]+@[-a-z_0-9.]+\.[a-z]{2,3}"
|
||||||
|
color error green default
|
||||||
|
color indicator black red
|
||||||
|
color signature brightblack default
|
||||||
|
color status black red
|
||||||
|
color tilde blue default
|
||||||
|
|
||||||
|
# Key bindings
|
||||||
|
bind pager h display-toggle-weed
|
||||||
|
|
||||||
|
# Macros
|
||||||
|
macro index c "<change-folder>?<toggle-mailboxes>" "open a different folder"
|
||||||
|
macro pager c "<change-folder>?<toggle-mailboxes>" "open a different folder"
|
||||||
|
macro index \ec "T.*\n;WN;WO^T.*\n" "catch up"
|
||||||
|
macro generic ,sm ":source $HOME/.muttrc\r" "Resource .muttrc without restart"
|
||||||
Loading…
Add table
Add a link
Reference in a new issue