muttrc 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. ##
  2. ## @l_prefix@/etc/mutt/Muttrc -- OpenPKG Mutt Global Configuration
  3. ## Copyright (c) 1998-2003 Ralf S. Engelschall <rse@engelschall.com>
  4. ##
  5. # ignore CTRL-Z
  6. unset suspend
  7. # use OpenPKG MTA
  8. set sendmail = @l_prefix@/sbin/sendmail
  9. # use OpenPKG folder paths
  10. set folder = ~/.mail
  11. set record = ~/.mail/sent
  12. set postponed = ~/.mail/postponed
  13. set spoolfile = ~/.mail/inbox
  14. set mbox = ~/.mail/inbox
  15. mailboxes ~/.mail/inbox
  16. # aliases
  17. #source ~/.muttrc.aliases
  18. set alias_file = ~/.muttrc.aliases
  19. set sort_alias = unsorted
  20. # signature
  21. unset sig_dashes
  22. set signature = ~/.signature
  23. # editor
  24. set editor = `echo ${EDITOR-vi}`
  25. set tmpdir = `echo ${TMPDIR-/tmp}`
  26. # addresses
  27. set use_domain
  28. # pager
  29. set pager = builtin
  30. set pager_context = 1
  31. set pager_stop
  32. set pager_index_lines = 0
  33. ignore received content- mime-version status x-status message-id sender
  34. ignore references return-path lines
  35. ignore x-
  36. ignore "from "
  37. # display customization
  38. set to_chars = "L CC "
  39. set charset = iso-8859-1
  40. set quote_regexp = "^([ \t]*>)+"
  41. mono quoted bold
  42. mono markers bold
  43. set menu_scroll
  44. unset mark_old
  45. set help
  46. set delete = yes
  47. set wait_key = no
  48. set confirmappend = no
  49. set confirmcreate = no
  50. folder-hook . set sort=date-sent
  51. # reply/forward customization
  52. unset edit_hdrs
  53. set autoedit
  54. set fast_reply
  55. set date_format = "!%a, %b %d, %Y"
  56. set attribution = "On %d, %n wrote:\n"
  57. set indent_str = "> "
  58. set include = yes
  59. set forw_format = "[FWD] %s"
  60. unset mime_fwd
  61. unset forw_quote
  62. # new mail generation
  63. set hdrs
  64. set use_8bitmime
  65. # no printing by default
  66. set print = no
  67. # show documentation on <ESC>+'h'
  68. macro generic "\eh" "!${PAGER-more} @l_prefix@/share/mutt/manual.txt\n" "Show Mutt Manual"
  69. macro index "\eh" "!${PAGER-more} @l_prefix@/share/mutt/manual.txt\n" "Show Mutt Manual"
  70. macro pager "\eh" "!${PAGER-more} @l_prefix@/share/mutt/manual.txt\n" "Show Mutt Manual"