Advertisement
Guest User

Untitled

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