Advertisement
Guest User

muttrc

a guest
Jan 28th, 2016
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. # Sets up mail box in your home folder
  2. set mbox_type=maildir
  3. set mbox="~/mail/inbox/"
  4. set spoolfile="~/mail/inbox/"
  5. set folder="~/mail/"
  6. set record="~/mail/sent/"
  7. set postponed="~/mail/postponed/"
  8. #Gmail account info
  9. set from = "your-usernam@gmail.com"
  10. set realname = "your name"
  11. set imap_user = "your-username@gmail.com"
  12. set imap_pass = "your gmail password"
  13. #My Editor
  14. set editor='vim + -c "set textwidth=72" -c "set wrap" -c "set nocp" -c "?^$"'
  15. #Folders
  16. #Remote Folders
  17. set folder = "imaps://imap.gmail.com:993"
  18. set spoolfile = "+INBOX"
  19. set postponed ="+[Gmail]/Drafts"
  20. #Local Folders
  21. set header_cache =~/.mutt/cache/headers
  22. set message_cachedir =~/.mutt/cache/bodies
  23. set certificate_file =~/.mutt/certificates
  24. #SMTP Setup
  25. set smtp_url = "smtp://your-username@smtp.gmail.com:587/"
  26. set smtp_pass = "your gmail password"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement