Advertisement
Guest User

muttrc - config

a guest
Jun 29th, 2015
287
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.06 KB | None | 0 0
  1. #Install Mutt and w3m
  2. sudo pacman -S mutt w3m
  3.  
  4. #Config File
  5. set from = "keithkeekw@gmail.com"
  6. set realname = "Keith Kee KW"
  7. set imap_user = "keithkeekw@gmail.com"
  8. set imap_pass = "xxxxxx"
  9.  
  10. ##REMOTE GMAIL FOLDERS
  11. set folder = "imaps://imap.gmail.com:993"
  12. set spoolfile = "+INBOX"
  13. set postponed ="+[Google Mail]/Drafts"
  14. set trash = "+[Google Mail]/Trash"
  15.  
  16. ##SMTP Settings to sent email
  17. set smtp_url = "smtp://keithkeekw@smtp.gmail.com:587­/"
  18. set smtp_pass = "xxxxxx"
  19.  
  20. ##LOCAL FOLDERS FOR CACHED HEADERS AND CERTIFICATES
  21. set header_cache =~/.mutt/cache/headers
  22. set message_cachedir =~/.mutt/cache/bodies
  23. set certificate_file =~/.mutt/certificates
  24.  
  25. ##SECURING
  26. set move = no #Stop asking to "move read messages to mbox"!
  27. set imap_keepalive = 900
  28.  
  29. ##Sort by newest conversation first.
  30. set sort = reverse-threads
  31. set sort_aux = last-date-received
  32.  
  33. ##Set editor to create new email
  34. set editor='nano'
  35.  
  36.  
  37. #Config file from Arch Linux
  38. set folder = imaps://imap.gmail.com/
  39. set imap_user = keithkeekw@gmail.com
  40. set imap_pass = your-imap-password
  41. set spoolfile = +INBOX
  42. mailboxes = +INBOX
  43.  
  44. # Store message headers locally to speed things up.
  45. # If hcache is a folder, Mutt will create sub cache folders for each account which may speeds things up even more.
  46. set header_cache = ~/.cache/mutt
  47.  
  48. # Store messages locally to speed things up, like searching message bodies.
  49. # Can be the same folder as header_cache.
  50. # This will cost important disk usage according to your e-mail amount.
  51. set message_cachedir = "~/.cache/mutt"
  52.  
  53. # Specify where to save and/or look for postponed messages.
  54. set postponed = +[Gmail]/Drafts
  55.  
  56. # Allow Mutt to open new imap connection automatically.
  57. unset imap_passive
  58.  
  59. # Keep IMAP connection alive by polling intermittently (time in seconds).
  60. set imap_keepalive = 300
  61.  
  62. # How often to check for new mail (time in seconds).
  63. set mail_check = 120
  64.  
  65.  
  66. #Viewing HTML
  67. ~/.mutt/muttrc
  68. auto_view text/html
  69. alternative_order text/plain text enriched text/html
  70.  
  71. ~/.mutt/mailcap
  72. text/html; w3m -I %{charset} -T text/html; copiousoutput
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement