Advertisement
Guest User

Untitled

a guest
Feb 21st, 2016
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. # Account Hooks
  2.  
  3. # clean first
  4. account-hook . 'unset imap_user; unset imap_pass; unset tunnel'
  5.  
  6. # account one
  7. account-hook domain.net "set imap_user=id@domain.net imap_pass=${my_password}"
  8.  
  9. # account two
  10. account-hook outlook.xyz.ch "set imap_user=id@xyz.ch imap_pass=${my_pastwo}"
  11.  
  12. # account three
  13. account-hook mail.domain.ch "set imap_user=id@domain.ch imap_pass=${my_passthree}"
  14.  
  15. # Folders and hooks
  16.  
  17. # domain.net
  18. folder-hook 'domain.net' 'source ~/.mutt/domain.net'
  19.  
  20. # xyz
  21. folder-hook 'outlook.xyz.ch' 'source ~/.mutt/outlook.xyz.ch'
  22.  
  23. # domain.ch
  24. folder-hook 'mail.domain.ch' 'source ~/.mutt/domain.ch'
  25.  
  26. # source "default" on startup
  27. source ~/.mutt/domain.net
  28.  
  29. # ~/.mutt/account.one
  30. set hostname="mail.domain.net"
  31. color status color144 color234
  32. ..
  33.  
  34. # ~/.mutt/account.two
  35. set hostname = "outlook.xyz.ch"
  36. color status brightyellow magenta
  37. ..
  38.  
  39. # .mutt/account.three
  40. set hostname="mail.domain.ch"
  41. color status cyan brightblue
  42. ..
  43.  
  44. # Some minimal Mutt settings, Gentoo-style. These reflect the Gentoo
  45. # predilection for maildir folders.
  46. #
  47. # Please don't add settings to this file to change other user
  48. # preferences (such as colors), since those can be hard for a user to
  49. # undo if their preference doesn't match yours! For example, it is
  50. # *impossible* currently in mutt to remove color settings from objects
  51. # other than the index.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement