mutt/muttrc

Thu, 04 Oct 2012 20:30:05 +0200

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 04 Oct 2012 20:30:05 +0200
changeset 715
c10fb90893b9
permissions
-rw-r--r--

Correct out of date build configuration, porting to Solaris 11 network
link infrastructure and new libpcap logic. This additionally allows for
device drivers in subdirectories of /dev. Correct packaged nmap
personalities and signatures to work out of the box. Finally, hack
arpd logic to properly close sockets and quit on TERM by repeating
signaling in the run command script. Sadly, all this fails to correct
the run time behaviour of honeyd which fails to bind to the IP layer.

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

mercurial