mutt/muttrc

Fri, 07 Sep 2012 19:08:07 +0200

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Fri, 07 Sep 2012 19:08:07 +0200
changeset 667
9dacbd1d1aa2
permissions
-rw-r--r--

Correct build configuration in Solaris subdir, correct english grammar,
remove irrelevant strip notice, introduce custom CFLAG logic, facilitate
use of Solaris Studio compiler with needed build configuration
adjustments, conditionally build 64 bit position independent code,
and accommodate tun(7) in newer Solaris releases by renaming driver
and module from conflicting 'tun' to 'vtun'. These changes include
some nonstandard 'I give up' logic causing out of tree builds by
manipulating the PATH, for example.

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

mercurial