Advertisement
Guest User

Untitled

a guest
May 6th, 2017
819
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.10 KB | None | 0 0
  1. set imap_user = 'tiberiuturbureanu@gmail.com'
  2. set imap_pass = 'smth'
  3.  
  4. set smtp_url = "smtp://tiberiuturbureanu@smtp.gmail.com:587/"
  5. set smtp_pass = "smth"
  6.  
  7. set from = "tiberiuturbureanu@gmail.com"
  8. set realname = "Tibi Turbureanu"
  9.  
  10. set spoolfile = imaps://imap.gmail.com:993/INBOX
  11. set folder = imaps://imap.gmail.com:993
  12. set record = "imaps://imap.gmail.com/[Gmail]/Sent Mail"
  13. set postponed = "imaps://imap.gmail.com/[Gmail]/Drafts"
  14. set header_cache = "~/.mutt/cache/headers"
  15. set certificate_file = ~/.mutt/certificates
  16. set editor = "vim"
  17. set mail_check = 10
  18. set timeout = 20
  19. set move = no
  20.  
  21. color attachment magenta default
  22. color error white red # errors yell at you in red
  23. color hdrdefault red default # headers
  24. color indicator white black # currently selected message
  25. color markers cyan default # the + for wrapped pager lines
  26. color message black default # informational messages, not mail
  27. color normal black default # plain text
  28. color quoted green default # quoted text
  29. color search green default # hilite search patterns in the pager
  30. color signature red default # signature (after "-- ") is red
  31. color status white black # status bar
  32. color tilde blue default # ~'s after message body
  33. color tree red default # thread tree in index menu is magenta
  34. color signature red default
  35. color underline yellow default
  36. color header cyan default ^(From|Subject): # Important headers
  37. color body magenta default "(ftp|http)://[^ ]+" # picks up URLs
  38. color body magenta default [-a-z_0-9.]+@[-a-z_0-9.]+
  39.  
  40. # Coloring quoted text - coloring the first 7 levels:
  41. color quoted cyan default
  42. color quoted1 yellow default
  43. color quoted2 red default
  44. color quoted3 green default
  45. color quoted4 cyan default
  46. color quoted5 yellow default
  47. color quoted6 red default
  48. color quoted7 green default
  49.  
  50. # Colorize smileys: :-) ;-) :-/ :-(
  51. color body yellow default "[;:]-[)/(|]"
  52. color body yellow default "[;:][)/(|]"
  53. color body green default "[[:alpha:]]\+://[^ ]*"
  54.  
  55. color index green default ~N # New
  56. color index green default ~O # Old
  57. color index yellow default ~F
  58. color index blue default ~T
  59. color index red default ~D
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement