Guest User

Untitled

a guest
Jun 1st, 2018
402
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. # Basic settings
  2. set from=account-here@gmail.com
  3. set realname="real-name-here"
  4.  
  5. # Basic IMAP stuff
  6. set imap_user="account-here@gmail.com"
  7. set imap_pass="password-here"
  8.  
  9. #Remote folders
  10. set folder="imaps://imap.gmail.com:993"
  11. set spoolfile="+INBOX"
  12. set postponed="+[Gmail]/Drafts"
  13. set trash="imaps://imap.gmail.com/[Gmail]/Trash"
  14.  
  15. #Local folders
  16. set header_cache=~/.mutt/cache/headers
  17. set message_cachedir=~/.mutt/cache/bodies
  18. set certificate_file=~/.mutt/certificates
  19.  
  20. # SMTP stuff
  21. set smtp_url="smtp://account-here@smtp.gmail.com:587/"
  22. set smtp_pass="password-here"
  23.  
  24. # Keybindings
  25. bind editor <space> noop
  26. macro index gi "<change-folder>=INBOX<enter>" "Go to inbox"
  27. macro index ga "<change-folder>=[Gmail]/All Mail<enter>" "Go to all mail"
  28. macro index gs "<change-folder>=[Gmail]/Sent Mail<enter>" "Go to Sent Mail"
  29. macro index gd "<change-folder>=[Gmail]/Drafts<enter>" "Go to drafts"
  30.  
  31. # Misc
  32. set move=no
  33. set imap_keepalive=900
  34.  
  35. # Header stuff
  36. ignore "Authentication-Results:"
  37. ignore "DomainKey-Signature:"
  38. ignore "DKIM-Signature:"
  39. hdr_order Date From To Cc
  40.  
  41. # For better looks
  42. set markers=no # don't put '+' at the beginning of wrapped lines
  43. set pager_index_lines= 5 # how large is the index window?
  44. set sort = 'threads'
  45. set sort_aux = 'last-date-received'
  46.  
  47. # My Editor
  48. set editor='vim + -c "set textwidth=72" -c "set wrap" -c "set nocp" -c "?^$"'
Add Comment
Please, Sign In to add comment