Guest User

Untitled

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