muttrc 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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]*([A-Za-z ]+>|[]>:}][]>:}]*)"
  41. set smileys="(>From )|(>?[;:][-^]?[][)(><}{|/DP][)}]*)"
  42. mono quoted bold
  43. mono markers bold
  44. set menu_scroll
  45. unset mark_old
  46. set help
  47. set delete = yes
  48. set wait_key = no
  49. set confirmappend = no
  50. set confirmcreate = no
  51. folder-hook . set sort=date-sent
  52. # reply/forward customization
  53. unset edit_hdrs
  54. set autoedit
  55. set fast_reply
  56. set date_format = "!%a, %b %d, %Y"
  57. set attribution = "On %d, %n wrote:\n"
  58. set indent_str = "> "
  59. set include = yes
  60. set forw_format = "[FWD] %s"
  61. unset mime_fwd
  62. unset forw_quote
  63. unset metoo
  64. # new mail generation
  65. set hdrs
  66. set use_8bitmime
  67. # autoviewing via .mailcap handlers
  68. auto_view text/html image/*
  69. # no printing by default
  70. set print = no
  71. # toggle sort mode
  72. macro index \cxd set sort=date-sent
  73. macro index \cxt set sort=threads
  74. # show documentation on <ESC>+'h'
  75. macro generic "\eh" "!${PAGER-more} @l_prefix@/share/mutt/manual.txt\n" "Show Mutt Manual"
  76. macro index "\eh" "!${PAGER-more} @l_prefix@/share/mutt/manual.txt\n" "Show Mutt Manual"
  77. macro pager "\eh" "!${PAGER-more} @l_prefix@/share/mutt/manual.txt\n" "Show Mutt Manual"