Advertisement
Guest User

.muttrc

a guest
Oct 8th, 2012
732
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.60 KB | None | 0 0
  1. #set folder =   pops://pop.mail.yahoo.com:995
  2. #set pop_user   =   yahoo@mailaddress.here
  3. #set spoolfile  =   +INBOX
  4. #mailboxes  =   +INBOX
  5.  
  6.  
  7.  
  8. set folder  =   imaps://imap.googlemail.com:993
  9. set imap_user   =   'gmail@mailaddress.here'
  10. #set imap_pass  =   'PASSWORD'
  11. set spoolfile   =   +INBOX
  12. mailboxes   =   +INBOX
  13.  
  14.  
  15. # SMTP for sending mails
  16. set smtp_url    =   "smtp://gmailusername@smtp.gmail.com:587/"  # using port 587 for TLS
  17. #set smtp_pass= 'PASSWORD'
  18. set from    =   'gmail@address.here'
  19. set realname    =   "john@doe"
  20.  
  21. #colors
  22. #---- Mutt Colors for Black Background -------
  23. color   hdrdefault   blue              black
  24. color   quoted       blue              black
  25. color   signature    blue              black
  26. color   attachment   red               black
  27. color   message      brightred         black
  28. color   error        brightred         black
  29. color   indicator    green               black
  30. color   status       brightgreen       blue
  31. color   tree         white             black
  32. color   normal       white             black
  33. color   markers      red               black
  34. color   search       white             black
  35. color   tilde        brightmagenta     black
  36. color   index        blue              black ~F
  37. color   index        red               black "~N|~O"
  38.  
  39.  
  40.  
  41. # set Editor
  42. set editor='vim + -c "set textwidth=72" -c "set wrap" -c "set nocp" -c "?^$"'
  43.  
  44. # store message headers locally to speed things up
  45. set header_cache =  ~/.mutt/hcache
  46.  
  47. # specify where to save and/or look for postponed messages
  48. set postponed   =   +[Gmail]/Drafts
  49.  
  50. #unset ssl_usesystemcerts    # toggle global cert checking (good for saving local certs)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement