Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
546
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.70 KB | None | 0 0
  1. # A basic .muttrc for use with Gmail
  2.  
  3. # Change the following six lines to match your Gmail account details
  4. set imap_user = "jessicatysu@gmail.com"
  5. set imap_pass = "***"
  6. set smtp_url = "smtp://jessicatysu@smtp.gmail.com:587/"
  7. set smtp_pass = "***"
  8. set from = "jessicatysu@gmail.com"
  9. set realname = "wabbit"
  10.  
  11. # Change the following line to a different editor you prefer.
  12. set editor = "vi"
  13.  
  14. # Basic config, you can leave this as is
  15. set folder = "imaps://imap.gmail.com:993"
  16. set spoolfile = "imaps://imap.gmail.com:993/INBOX"
  17. set imap_check_subscribed
  18. set hostname = gmail.com
  19. set mail_check = 120
  20. set timeout = 300
  21. set imap_keepalive = 300
  22. #set postponed = "imaps://imap.gmail.com/[GMail]/Drafts"
  23. #set record = "imaps://imap.gmail.com/[GMail]/Sent Mail"
  24. set header_cache=~/.mutt/cache/headers
  25. set message_cachedir=~/.mutt/cache/bodies
  26. set certificate_file=~/.mutt/certificates
  27. set move = no
  28. set include
  29. set sort = 'threads'
  30. set sort_aux = 'reverse-last-date-received'
  31. set auto_tag = yes
  32. ignore "Authentication-Results:"
  33. ignore "DomainKey-Signature:"
  34. ignore "DKIM-Signature:"
  35. hdr_order Date From To Cc
  36. alternative_order text/plain text/html *
  37. auto_view text/html
  38. bind editor <Tab> complete-query
  39. bind editor ^T complete
  40. bind editor <space> noop
  41.  
  42. # Gmail-style keyboard shortcuts
  43. macro index,pager y "<delete-message>" "Gmail archive message"
  44. #macro index,pager gi "<change-folder>=INBOX<enter>" "Go to inbox"
  45. #macro index,pager ga "<change-folder>=[Gmail]/All Mail<enter>" "Go to all mail"
  46. #macro index,pager gs "<change-folder>=[Gmail]/Starred<enter>" "Go to starred messages"
  47. #macro index,pager gd "<change-folder>=[Gmail]/Drafts<enter>" "Go to drafts"
  48.  
  49. # Other
  50. bind index "^" imap-fetch-mail
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement