Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
468
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.91 KB | None | 0 0
  1. set from = "gopsychonauts@gmail.com"
  2. set realname = "David McLean"
  3. set imap_user = "gopsychonauts@gmail.com"
  4. set imap_pass = "not telling"
  5. set smtp_url = "smtp://gopsychonauts@smtp.gmail.com:587/"
  6. set smtp_pass = "not telling"
  7.  
  8. set editor="vim"
  9.  
  10. # basic gmail setup
  11. set folder = "imaps://imap.gmail.com:993"
  12. set spoolfile = "+INBOX"
  13. set imap_check_subscribed
  14. set hostname = gmail.com
  15. set mail_check = 120
  16. set timeout = 300
  17. set imap_keepalive = 300
  18. set postponed = "+[GMail]/Drafts"
  19. set record = "+[GMail]/Sent Mail"
  20. set header_cache=~/.mutt/cache/headers
  21. set message_cachedir=~/.mutt/cache/bodies
  22. set certificate_file=~/.mutt/certificates
  23. set move = no
  24. set include
  25. set sort = 'threads'
  26. set sort_aux = 'reverse-last-date-received'
  27. set auto_tag = yes
  28. ignore "Authentication-Results:"
  29. ignore "DomainKey-Signature:"
  30. ignore "DKIM-Signature:"
  31. hdr_order Date From To Cc
  32. alternative_order text/plain text/html *
  33. auto_view text/html
  34. bind editor <Tab> complete-query
  35. bind editor ^T complete
  36. bind editor <space> noop
  37.  
  38. # gmail key bindings
  39. macro index gi "<change-folder>=INBOX<enter>" "Go to inbox"
  40. macro index ga "<change-folder>=[Gmail]/All Mail<enter>" "Go to all mail"
  41. macro index gs "<change-folder>=[Gmail]/Sent Mail<enter>" "Go to Sent Mail"
  42. macro index gd "<change-folder>=[Gmail]/Drafts<enter>" "Go to drafts"
  43. macro index,pager y "<enter-command>unset trash\n<tag-prefix><delete-message>" "Gmail archive message"
  44. macro index,pager d "<enter-command>set trash=\"imaps://imap.googlemail.com/[Gmail]/Bin\"\n<tag-prefix><delete-message>" "Gmail delete message"
  45.  
  46. # colours
  47. color hdrdefault color241 default
  48. color status color30 default
  49. color quoted color60 default
  50.  
  51. color index red default "!~N ~D"
  52. color index red white "~N ~D"
  53. color index yellow default "~O"
  54.  
  55. #set index_format="%?M?(#%03M)&(%4l)?%4C %Z %{%b %d} %-15.15L (%4l) %s"
  56.  
  57. # external stuff
  58. source .mutt/vimkeys.mutt
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement