  The Mutt E-Mail Client
  by Michael Elkins <me@cs.hmc.edu>
  v0.81, 4 Aug 1997

  ``All mail clients suck.  This one just sucks less.'' -me, circa 1995

  11..  CCoommmmaanndd lliinnee ooppttiioonnss

  Running mutt with no arguments will make Mutt attempt to read your
  spool mailbox.  However, it is possible to read other mailboxes and to
  send messages from the command line as well.

       -a      attach a file to a message
       -c      specify a carbon-copy (Cc) address
       -F      specify an alternate file to read initialization commands
       -f      specify a mailbox to load
       -h      print help on command line options
       -H      specify a draft file from which to read a header and body
       -i      specify a file to include in a message composition
       -n      do not read the system Muttrc
       -m      specify a default mailbox type
       -p      recall a postponed message
       -R      open mailbox in read-only mode
       -s      specify a subject (enclose in quotes if it contains spaces)
       -v      show version number and compile-time definitions
       -x      simulate the mailx(1) compose mode
       -y      show a menu containing the files specified by the mailboxes command
       -z      exit immediately if there are no messages in the mailbox
       -Z      open the first folder with new message,exit immediately if none

  To read messages in a mailbox

  mutt [ -nz ] [ -F _m_u_t_t_r_c ] [ -m _t_y_p_e ] [ -f _m_a_i_l_b_o_x ]

  To compose a new message

  mutt [ -n ] [ -F _m_u_t_t_r_c ] [ -a _f_i_l_e ] [ -c _a_d_d_r_e_s_s ] [ -i _f_i_l_e_n_a_m_e ] [
  -s _s_u_b_j_e_c_t ] _a_d_d_r_e_s_s [ _a_d_d_r_e_s_s ... ]

  Mutt also supports a ``batch'' mode to send prepared messages.  Simply
  redirect input from the file you wish to send.  For example,

  mutt -s "data set for run #2" professor@bigschool.edu < ~/run2.dat

  This command will send a message to ``professor@bigschool.edu'' with a
  subject of ``data set for run #2''.  In the body of the message will
  be the contents of the file ``~/run2.dat''.

  22..  GGeettttiinngg SSttaarrtteedd

  This section is intended as a brief overview of how to use Mutt.
  There are many other features which are described elsewhere in the
  manual.  There is even more information available in the Mutt FAQ and
  various web pages.  See the Mutt Page for more details.

  The keybindings described in this section are the defaults as
  distributed.  Your local system administrator may have altered the
  defaults for your site.  You can always type ``?'' in any menu to
  display the current bindings.
  22..11..  MMoovviinngg AArroouunndd iinn MMeennuuss

  Information is presented in menus, very similar to ELM.  Here is a
  table showing the common keys used to navigate menus in Mutt.

  j or Down       move to the next entry
  k or Up         move to the previous entry
  z or PageDn     go to the next page
  Z or PageUp     go to the previous page
  =               jump to the first entry
  *               jump to the last entry
  q               exit the current menu
  ?               list all keybindings for the current menu

  22..22..  EEddiittiinngg IInnppuutt FFiieellddss

  Mutt has a builtin line editor which is used as the primary way to
  input textual data such as email addresses or filenames.  The keys
  used to move around while editing are very similar to those of Emacs.

  ^A              move to the start of the line
  ^B or <Left>    move back one char
  ^D              delete the char under the cursor
  ^E              move to the end of the line
  ^F or <Right>   move forward one char
  ^G              abort
  ^K              delete to the end of the line
  ^U              delete entire line
  <Tab>           complete filename (only when prompting for a file)
  <Up>            recall previous string from history
  <Down>          recall next string from history
  <Return>        finish editing

  22..33..  SSeeaarrcchhiinngg aanndd RReegguullaarr EExxpprreessssiioonnss

  All text patterns for searching and matching in Mutt must be specified
  as regular expressions (regexp) in the ``POSIX extended'' syntax
  (which is more or less the syntax used by GNU awk). The search is case
  sensitive if the pattern contains at least one upper case letter, and
  case insensitive otherwise. Note that ``\'' must be quoted if used for
  a regular expression in an initialization command: ``\\''.  For more
  information, see the section on ``searching''.

  22..44..  MMaaiillbbooxx FFoorrmmaattss

  Mutt supports reading and writing of four different mailbox formats:
  mbox, MMDF, MH and Maildir.  The mailbox type is autodetected, so
  there is no need to use a flag for different mailbox types.  When
  creating new mailboxes, mutt uses the default specified with the
  ``$mbox_type'' variable.

  mmbbooxx.  This is the most widely used mailbox format for UNIX.  All
  messages are stored in a single file.  Each message has a line of the
  form:

  From me@cs.hmc.edu Fri, 11 Apr 1997 11:44:56 PST

  to denote the start of a new message (this is often referred to as the
  ``From_'' line).

  MMMMDDFF.  This is a variant of the _m_b_o_x format.  Each message is
  surrounded by lines containing ``^A^A^A^A'' (four control-A's).

  MMHH.  A radical departure from _m_b_o_x and _M_M_D_F, a mailbox consists of a
  directory and each message is stored in a separate file.  The filename
  indicates the message number (however, this is may not correspond to
  the message number Mutt displays).  Deleted messages are renamed with
  a comma (,) prepended to the filename. NNoottee::  Mutt detects this type
  of mailbox by looking for either .mh_sequences or .xmhcache (needed to
  distinguish normal directories from MH mailboxes).  Mutt does not
  update these files, yet.

  MMaaiillddiirr.  The newest of the mailbox formats, used by the Qmail MTA (a
  replacement for sendmail).  Similar to _M_H, except that it adds three
  subdirectories of the mailbox: _t_m_p, _n_e_w and _c_u_r.  Filenames for the
  messages are chosen in such a way they are unique, even when two
  programs are writing the mailbox over NFS, which means that no file
  locking is needed.

  22..55..  MMaaiillbbooxx SShhoorrttccuuttss

  There are a number of built in shortcuts which refer to specific
  mailboxes.  These shortcuts can be used anywhere you are prompted for
  a file or mailbox path.

  +o  ! -- refers to your spool (incoming) mailbox

  +o  > -- refers to your $mbox file

  +o  < -- refers to your $record file

  +o  ~ -- refers to your home directory

  +o  = or + -- refers to your $folder directory

  22..66..  RReeaaddiinngg MMaaiill

  Similar to many other mail clients, there are two modes in which mail
  is read in Mutt.  The first is the index of messages in the mailbox,
  which is called the ``index'' in Mutt.  The second mode is the display
  of the message contents.  This is called the ``pager.''

  The next few sections describe the functions provided in each of these
  modes.

  22..66..11..  TThhee MMeessssaaggee IInnddeexx

  c               change-folder           change to a different mailbox
  C               copy-message
  D               delete-pattern          delete messages matching a pattern
  d               delete-message
  F               flag-message            mark as important
  J               next-message
  K               previous-message
  l               limit                   show messages matching a pattern
  N               mark-as-new             mark message as new
  o               sort-mailbox            change the current sort method
  O               sort-reverse            reverse sort the mailbox
  q               quit                    save changes and exit
  s               save-message
  t               tag-message
  u               undelete-message
  v               view-attachments
  x               exit                    abort changes and exit
  <Return>        display-message
  <Tab>           jump-new                jump to the next new message
  $               sync-mailbox            save changes to mailbox
  %               display-address         show the author's full e-mail address
  /               search
  ESC /           search-reverse
  ^L              redraw                  clear and redraw the screen
  ^T              tag-pattern             tag messages matching a pattern
  ^U              undelete-pattern        undelete messages matching a pattern

  22..66..11..11..  SSttaattuuss FFllaaggss

  In addition to who sent the message and the subject, a short summary
  of the disposition of each message is printed beside the message
  number.  Zero or more of the following ``flags'' may appear, which
  mean:

  D       message is deleted
  K       contains a PGP public key
  M       requires mailcap to view
  N       message is new
  O       message is old
  P       message is PGP encrypted
  r       message has been replied to
  S       message is PGP signed
  !       message is flagged
  *       message is tagged

  Some of the status flags can be turned on or off using

  +o  sseett--ffllaagg (default: w)

  +o  cclleeaarr--ffllaagg (default: W)

  22..66..22..  TThhee PPaaggeerr

  By default, Mutt uses its builtin pager to display the body of
  messages.  The pager is very similar to the Unix program _l_e_s_s though
  not nearly as featureful.

  <Return>        go down one line
  <Space> display the next page (or next message if at the end of a message)
  -       go back to the previous page
  n       display the next message
  ?       show keybindings
  /       search for a regular expression (pattern)
  \       toggle search patttern coloring

  In addition, many of the functions from the _i_n_d_e_x are available in the
  pager, such as _d_e_l_e_t_e_-_m_e_s_s_a_g_e or _c_o_p_y_-_m_e_s_s_a_g_e (this is one advantage
  over using an external pager to view messages).

  22..77..  UUssiinngg TTaaggss

  Sometimes it is desirable to perform an operation on a group of
  messages all at once rather than one at a time.  An example might be
  to save messages to a mailing list to a separate folder, or to delete
  all messages with a given subject.  To tag all messages matching a
  pattern, use the tag-pattern function, which is bound to ``control-T''
  by default.  Or you can select individual messages by hand using the
  ``tag-message'' function, which is bound to ``t'' by default.  See
  ``'' for Mutt's searching syntax.

  Once you have tagged the desired messages, you can use the ``tag-
  prefix'' operator, which is the ``;'' (semicolon) key by default.
  When the ``tag-prefix'' operator is used, the nneexxtt operation will be
  applied to all tagged messages if that operation can be used in that
  manner.  If the ``$auto_tag'' variable is set, the next operation
  applies to the tagged messages automatically, without requiring the
  ``tag-prefix''.

  22..88..  HHaannddlliinngg MMaaiilliinngg LLiissttss

  Mutt has a few configuration options that make dealing with large
  amounts of mail easier.  The first thing you must do is to let Mutt
  know what addresses you consider to be mailing lists (technically this
  does not have to be a mailing list, but that is what it is most often
  used for).  This is accomplished through the use of the ``lists''
  command in your muttrc.

  Now that Mutt knows what your mailing lists are, it can do several
  things, the first of which is the ability to show the list name in the
  _i_n_d_e_x menu display.  This is useful to distinguish between personal
  and list mail in the same mailbox.  In the ``$hdr_format'' variable,
  the escape ``%L'' will return the string ``To <list>'' when ``list''
  appears in the ``To'' field, and ``Cc <list>'' when it appears in the
  ``Cc'' field (otherwise it returns the name of the author).

  Often times the ``To'' and ``Cc'' fields in mailing list messages tend
  to get quite large. Most people do not bother to remove the author of
  the message they are reply to from the list, resulting in two or more
  copies being sent to that person.  The ``list-reply'' function, which
  by default is bound to ``L'' in the _i_n_d_e_x menu and _p_a_g_e_r, helps reduce
  the clutter by only replying to the mailing list addresses instead of
  all recipients.

  The other method some mailing list admins use is to generate a
  ``Reply-To'' field which points back to the mailing list address
  rather than the author of the message.  This can create problems when
  trying to reply directly to the author in private, since most mail
  clients will automatically reply to the address given in the ``Reply-
  To'' field.  Mutt uses the ``reply_to'' variable to help decide which
  address to use.  If set, you will be prompted as to whether or not you
  would like to use the address given in the ``Reply-To'' field, or
  reply directly to the address given in the ``From'' field.  When
  unset, the ``Reply-To'' field will be used when present.

  Lastly, Mutt has the ability to ``sort'' the mailbox into ``threads''.
  A thread is a group of messages which all relate to the same subject.
  This is usually organized into a tree-like structure where a message
  and all of its replies are represented graphically.  If you've ever
  used a threaded news client, this is the same concept.  It makes
  dealing with large volume mailing lists easier because you can easily
  delete uninteresting threads and quickly find topics of value.

  22..99..  TThhrreeaaddeedd MMooddee

  When the mailbox is ``sorted'' by _t_h_r_e_a_d_s, there are a few additional
  functions available in the _i_n_d_e_x and _p_a_g_e_r modes.

  ^D      delete-thread           delete all messages in the current thread
  ^N      next-thread             jump to the start of the next thread
  ^P      previous-thread         jump to the start of the previous thread

  See also: ``$strict_threads''.

  22..1100..  MMiisscceellllaanneeoouuss FFuunnccttiioonnss

  bbrroowwssee--uurrll (default: ^B)

  Uses the regular expression set by ``url_regexp'' to extract all
  matching URLs in the header _a_n_d body of the current message.  If more
  than one match occurs, the _u_r_l menu is brought up and the user may
  select which to browse.  The program used to view the URL is specified
  by the ``web_browser'' variable (see
  <ftp://ftp.cs.hmc.edu/pub/me/mutt/contrib/url_handler.sh> for an
  example of calling different programs based on the URL method).  NNoottee::
  at this time, the search for URLs in the message searches the
  equivalent of what you would see in the pager.  This includes whether
  or not headers are being ``weeded''.

  ccrreeaattee--aalliiaass (default: a)

  Creates a new alias based upon the current message (or prompts for a
  new one).  Once editing is complete, an ``alias'' command is added to
  the file specified by the ``$alias_file'' variable for future use.
  NNoottee:: Specifying an ``$alias_file'' does not add the aliases specified
  there-in, you must also ``source'' the file.

  ddiissppllaayy--hheeaaddeerrss (default: h)

  Toggles the weeding of message header fields specified by ``ignore''
  commands.

  eenntteerr--ccoommmmaanndd (default: ``:'')

  This command is used to execute any command you would normally put in
  a configuration file.  A common use is to check the settings of
  variables, or in conjunction with ``macros'' to change settings on the
  fly.

  lliisstt--rreeppllyy (default: L)

  Reply to the current or tagged message(s) by extracting any addresses
  which match the addresses given by the ``lists'' command.  Using this
  when replying to messages posted to mailing lists help avoid duplicate
  copies being sent to the author of the message you are replying to.

  ttooggggllee--qquuootteedd (default: T)

  The _p_a_g_e_r uses the ``$quote_regexp'' variable to detect quoted text
  when displaying the body of the message.  This function toggles the
  display of the quoted material in the message.  It is particularly
  useful when are interested in just the response and there is a large
  amount of quoted text in the way.

  22..1111..  SSeennddiinngg MMaaiill

  The following bindings are available in the _i_n_d_e_x for sending
  messages.

  m       compose a new message
  r       reply to sender
  g       reply to all recipients
  L       reply to mailing list address
  f       forward message
  b       bounce (remail) message

  Bouncing a message sends the message as is to the recipient you
  specify.  Forwarding a message allows you to add comments or modify
  the message you are forwarding.  Bouncing a message uses the ``-t''
  option of sendmail to specify the recipient on the command line.

  Mutt will then enter the _c_o_m_p_o_s_e menu and prompt you for the
  recipients to place on the ``To:'' header field.  Next, it will ask
  you for the ``Subject:'' field for the message, providing a default if
  you are replying to or forwarding a message.  See also ``$askcc'',
  ``$askbcc'', ``$autoedit'', and ``$fast_reply'' for changing how mutt
  asks these questions.

  Mutt will then automatically start your ``$editor'' on the message
  body.  If the ``$edit_hdrs'' variable is set, the headers will be at
  the top of the message in your editor.  Any messages you are replying
  to will be added in sort order to the message, with appropriate
  ``$attribution'', ``$indent_str'' and ``$post_indent_str''.  When
  forwarding a message, if the ``$mime_fwd'' variable is unset, a copy
  of the forwarded message will be included.  If you have specified a
  ``$signature'', it will be appended to the message.

  Once you have finished editing the body of your mail message, you are
  returned to the _c_o_m_p_o_s_e menu.  The following options are available:

  a       attach-file             attach a file
  d       edit-description        edit description on attachment
  D       detach-file             detach a file
  t       edit-to                 edit the To field
  c       edit-cc                 edit the Cc field
  b       edit-bcc                edit the Bcc field
  s       send-message            send the message
  S       edit-subject            edit the Subject
  f       edit-fcc                specify an ``Fcc'' mailbox
  p       pgp-menu                select PGP options (US version only)
  P       postpone-message        postpone this message until later
  q       quit                    quit (abort) sending the message
  i       ispell                  check spelling (if available on your system)

  22..1122..  PPoossttppoonniinngg MMaaiill

  At times it is desirable to delay sending a message that you have
  already begun to compose.  When the _p_o_s_t_p_o_n_e_-_m_e_s_s_a_g_e function is used
  in the _c_o_m_p_o_s_e menu, the body of your message and attachments are
  stored in the mailbox specified by the ``$postponed'' variable.  This
  means that you can recall the message even if you exit Mutt and then
  restart it at a later time.

  Once a message is postponed, there are several ways to resume it.
  From the command line you can use the ``-p'' option, or if you _c_o_m_p_o_s_e
  a new message from the _i_n_d_e_x or _p_a_g_e_r you will be prompted if
  postponed messages exist.  If multiple messages are currently
  postponed, the _p_o_s_t_p_o_n_e_d menu will pop up and you can select which
  message you would like to resume.

  NNoottee:: If you postpone a reply to a message, the reply setting of the
  message is only updated when you actually finish the message and send
  it.  Also, you must be in the same folder with the message you replied
  to for the status of the message to be updated.

  See also the ``$postpone'' quad-option.

  33..  CCoonnffiigguurraattiioonn

  While the default configuration (or ``preferences'') make Mutt usable
  right out of the box, it is often desirable to tailor Mutt to suit
  your own tastes.  When Mutt is first invoked, it will attempt to read
  the ``system'' configuration file (defaults set by your local system
  administrator), unless the ``-n'' command line option is specified.
  This file is typically /usr/local/share/Muttrc or
  /usr/local/lib/Muttrc.  Next, it looks for a file in your home
  directory named .muttrc.  In this file is where you place commands to
  configure Mutt.

  33..11..  SSyynnttaaxx ooff IInniittiiaalliizzaattiioonn FFiilleess

  An initialization file consists of a series of commands, each on its
  own line.  The hash mark, or pound sign (``#''), is used as a
  ``comment'' character.  You can use it to annotate your initialization
  file.  All text after the comment character to the end of the line is
  ignored.  For example,

       my_hdr X-Disclaimer: Why are you listening to me? # This is a comment

  \ quotes the next character, just as in shells such as bash and zsh.
  For example, if want to put quotes ``"'' inside of a string, you can
  use ``\'' to force the next character to be a literal instead of
  interpreted character.

       set realname='Michael \'MuttDude\' Elkins'

  ``\\'' means to insert a literal ``\'' into the line.  ``\n'' and
  ``\r'' have their usual C meanings of linefeed and carriage-return,
  respectively.

  It is also possible to substitute the output of a Unix command in an
  initialization file.  This is accomplished by enclosing the command in
  backquotes (``).  For example,

       my_hdr X-Operating-System: `uname -a`

  The output of the Unix command ``uname -a'' will be substituted before
  the line is parsed.  Note that since initialization files are line
  oriented, only the first line of output from the Unix command will be
  substituted.

  33..22..  AAlliiaasseess

  Usage: alias _k_e_y _a_d_d_r_e_s_s [ , _a_d_d_r_e_s_s, ... ]

  It's usually very cumbersome to remember or type out the address of
  someone you are communicating with.  Mutt allows you to create
  ``aliases'' which map a short string to a full address.

  NNoottee:: if you want to create an alias for a group (by specifying more
  than one address), you mmuusstt separate the addresses with a comma
  (``,'').

  To remove an alias or aliases:

  unalias _a_d_d_r [ _a_d_d_r _._._. ]

       alias muttdude me@cs.hmc.edu (Michael Elkins)
       alias theguys manny, moe, jack

  33..33..  SSppeecciiffyy aann aalltteerrnnaattee ee--mmaaiill aaddddrreessss

  Usage: alternates _a_d_d_r_e_s_s [ _a_d_d_r_e_s_s ... ]

  When displaying the contents of a mailbox, Mutt attempts to indicate
  messages which are addressed to you (as opposed to mail from lists).
  Often times you might receive mail at an address that Mutt doesn't
  understand as being yours.  The alternates command allows you to
  specify _a_l_t_e_r_n_a_t_e addresses where you receive mail.

  If your network is such that you can receive mail at any number of
  hosts in a subnetwork, it can be burdensome to list all possible
  addresses.  In this case, you can make use of the wildcard character
  (``*'') to match any possibility.  The wildcard character mmuusstt be the
  first character in the domain part of the address (the part _a_f_t_e_r the
  at sign (``@'').  For example,

       alternates joe@*.bigcompany.com

  This example would make any host in the ``bigcompany.com'' domain
  match.

  33..44..  CChhaannggiinngg tthhee ddeeffaauulltt kkeeyy bbiinnddiinnggss

  Usage: bind _m_a_p _k_e_y _f_u_n_c_t_i_o_n

  This command allows you to change the default key bindings (operation
  invoked when pressing a key).  _k_e_y is the key (or key sequence) you
  wish to bind.

  To specify a control character, use the sequence _\_C_x, where _x is the
  letter of the control character (for example, to specify control-A use
  ``\Ca'').  Note that the case of _x as well as _\_C is ignored, so that
  _\_C_A_, _\_C_a_, _\_c_A and _\_c_a are all equivalent.

  In addition, _k_e_y may consist of:

       \t              tab
       \r              carriage return
       \n              newline
       \e              escape
       up              up arrow
       down            down arrow
       left            left arrow
       right           right arrow
       pageup          Page Up
       pagedown        Page Down
       backspace       Backspace
       delete          Delete
       insert          Insert
       enter           Enter
       home            Home
       end             End
       f0              function key 1
       f9              function key 10

  _k_e_y does not need to be enclosed in quotes unless it contains a space
  (`` '').

  _f_u_n_c_t_i_o_n specifies which action to take when _k_e_y is pressed.

  _m_a_p specifies in which menu the binding belongs.  The currently
  defined maps are:

  +o  alias

  +o  attach

  +o  browser

  +o  index

  +o  compose

  +o  pager

  +o  url

  You will probably only want to customize the bindings for _i_n_d_e_x and
  _p_a_g_e_r.

  33..55..  SSeettttiinngg vvaarriiaabblleess bbaasseedd uuppoonn mmaaiillbbooxx

  Usage: folder-hook _p_a_t_t_e_r_n _c_o_m_m_a_n_d

  It is often desirable to change settings based on which mailbox you
  are reading.  The folder-hook command provides a method by which you
  can execute any configuration command.  _p_a_t_t_e_r_n is a regular
  expression specifying in which mailboxes to execute _c_o_m_m_a_n_d before
  loading.  If a mailbox matches multiple folder-hook's, they are
  executed in the order given in the muttrc.

  Note that the settings are _n_o_t restored when you leave the mailbox.
  For example, a command action to perform is to change the sorting
  method based upon the mailbox being read:

  folder-hook mutt set sort=thread

  However, the sorting method is not restored to its previous value when
  reading a different mailbox.  To specify a _d_e_f_a_u_l_t command, use the
  pattern ``.'':

  folder-hook . "set sort=date-sent"

  33..66..  SSppeecciiffyyiinngg aalltteerrnnaattee llooccaall hhoossttss

  Usage: localsite _a_d_d_r_e_s_s [ _a_d_d_r_e_s_s _._._. ]

  Mutt gives you the ability to use a different signature file based on
  whether you are sending a message to a local organization or to a
  remote site.  The localsite command allows you to specify hosts that
  are to be considered part of your local organization, thus using the
  ``local_sig'' variable.

  33..77..  KKeeyybbooaarrdd mmaaccrrooss

  Usage: macro _m_e_n_u _k_e_y _s_e_q_u_e_n_c_e

  Macros are useful when you would like a single key to perform a series
  of actions.  When you press _k_e_y in menu _m_e_n_u, Mutt will behave as if
  you had typed _s_e_q_u_e_n_c_e.  So if you have a common sequence of commands
  you type, you can create a macro to execute those commands with a
  single key.

  33..88..  UUssiinngg ccoolloorr aanndd mmoonnoo vviiddeeoo aattttrriibbuutteess

  Usage: color _o_b_j_e_c_t _f_o_r_e_g_r_o_u_n_d _b_a_c_k_g_r_o_u_n_d [ _r_e_g_e_x_p ]

  If your terminal supports color, you can spice up Mutt by creating
  your own color scheme.  To define the color of an object (type of
  information), you must specify both a foreground color aanndd a
  background color (it is not possible to only specify one or the
  other).

  _o_b_j_e_c_t can be one of:

  +o  attachment

  +o  body (match _r_e_g_e_x_p in the body of messages)

  +o  bold (hiliting bold patterns in the body of messages)

  +o  error (error messages printed by Mutt)

  +o  header (match _r_e_g_e_x_p in the message header)

  +o  hdrdefault (default color of the message header in the pager)

  +o  indicator (arrow or bar used to indicate the current item in a
     menu)

  +o  markers (the ``+'' markers at the beginning of wrapped lines in the
     pager)

  +o  message (informational messages)

  +o  normal

  +o  quoted (text preceded by ``>'' in the body of a message)

  +o  search (hiliting of words in the pager)

  +o  signature

  +o  status (mode lines used to display info about the mailbox or
     message)

  +o  tilde (the ``~'' used to pad blank lines in the pager)

  +o  tree (thread tree drawn in the message index and attachment menu)

  +o  underline (hiliting underlined patterns in the body of messages)

  _f_o_r_e_g_r_o_u_n_d and _b_a_c_k_g_r_o_u_n_d can be one of the following:

  +o  white

  +o  black

  +o  green

  +o  magenta

  +o  blue

  +o  cyan

  +o  yellow

  +o  red

  _f_o_r_e_g_r_o_u_n_d can optionally be prefixed with the keyword bright to make
  the foreground color boldfaced (e.g., brightred).

  If your terminal does not support color, it is still possible change
  the video attributes through the use of the ``mono'' command:

  Usage: mono _<_o_b_j_e_c_t_> _<_a_t_t_r_i_b_u_t_e_>

  where _a_t_t_r_i_b_u_t_e is one of the following:

  +o  none

  +o  bold

  +o  underline

  +o  reverse

  33..99..  IIggnnoorriinngg ((wweeeeddiinngg)) uunnwwaanntteedd mmeessssaaggee hheeaaddeerrss

  Usage: [un]ignore _p_a_t_t_e_r_n [ _p_a_t_t_e_r_n ... ]

  Messages often have many header fields added by automatic processing
  systems, or which may not seem useful to display on the screen.  This
  command allows you to specify header fields which you don't normally
  want to see.

  You do not need to specify the full header field name.  For example,
  ``ignore content-'' will ignore all header fields that begin with the
  pattern ``content-''.

  To remove a previously added token from the list, use the ``unignore''
  command.  Note that if you do ``ignore x-'' it is not possible to
  ``unignore x-mailer,'' for example.  The ``unignore'' command does nnoott
  make Mutt display headers with the given pattern.

  ``unignore *'' will remove all tokens from the ignore list.

  For example:

       # Sven's draconian header weeding
       ignore *
       unignore from date subject to cc
       unignore organization organisation x-mailer: x-newsreader: x-mailing-list:
       unignore posted-to:

  33..1100..  MMaaiilliinngg lliissttss

  Usage: [un]lists _a_d_d_r_e_s_s [ _a_d_d_r_e_s_s ... ]

  Mutt has a few nice features for ``handling mailing lists''.  In order
  to take advantage of them, you must specify which addresses belong to
  mailing lists.

  It is important to note that you should nneevveerr specify the domain name
  ( the part after the ``@'') with the lists command.  You should only
  specify the ``mailbox'' portion of the address (the part before the
  ``@'').  For example, if you've subscribed to the Mutt mailing list,
  you will receive mail addressed to _m_u_t_t_-_u_s_e_r_s_@_c_s_._h_m_c_._e_d_u.  So, to tell
  Mutt that this is a mailing list, you would add ``lists mutt-users''
  to your initialization file.

  The ``unlists'' command is to remove a token from the list of mailing-
  lists.  Use ``unlists *'' to remove all tokens.

  33..1111..  UUssiinngg MMuullttiippllee ssppooooll mmaaiillbbooxxeess

  Usage: mbox-hook _p_a_t_t_e_r_n _m_a_i_l_b_o_x

  This command is used to move read messages from a specified mailbox to
  a different mailbox automatically when you quit or change folders.
  _p_a_t_t_e_r_n is a regular expression specifying the mailbox to treat as a
  ``spool'' mailbox and _m_a_i_l_b_o_x specifies where mail should be saved
  when read.

  Unlike some of the other _h_o_o_k commands, only the _f_i_r_s_t matching
  pattern is used (it is not possible to save read mail in more than a
  single mailbox).

  33..1122..  DDeeffiinniinngg mmaaiillbbooxxeess wwhhiicchh rreecceeiivvee mmaaiill

  Usage: mailboxes _f_i_l_e_n_a_m_e [ _f_i_l_e_n_a_m_e ... ]

  This command specifies folders which can receive mail and which will
  be checked for new messages.  By default, the main menu status bar
  displays how many of these folders have new messages.

  When changing folders, pressing _s_p_a_c_e will cycle through folders with
  new mail.

  Pressing TAB in the directory browser will bring up a menu showing the
  files specified by the mailboxes command, and indicate which contain
  new messages.  Mutt will automatically enter this mode when invoked
  from the command line with the -y option.

  NNoottee: new mail is detected by comparing the last modification time to
  the last access time.  Utilities like biff or frm or any other program
  which accesses the mailbox might cause Mutt to never detect new mail
  for that mailbox if they do not properly reset the access time.

  33..1133..  UUsseerr ddeeffiinneedd hheeaaddeerrss

  Usage:
  my_hdr _s_t_r_i_n_g
  unmy_hdr _f_i_e_l_d [ _f_i_e_l_d ... ]

  The ``my_hdr'' command allows you to create your own header fields
  which will be added to every message you send.

  For example, if you would like to add an ``Organization:'' header
  field to all of your outgoing messages, you can put the command

       my_hdr Organization: A Really Big Company, Anytown, USA

  in your .muttrc.

  NNoottee::  space characters are _n_o_t allowed between the keyword and the
  colon (``:'').  The standard for electronic mail (RFC822) says that
  space is illegal there, so Mutt enforces the rule.

  If you would like to add a header field to a single message, you
  should either set the ``edit_hdrs'' variable, or use the _e_d_i_t_-_h_e_a_d_e_r_s
  function (default: ``E'') in the send-menu so that you can edit the
  header of your message along with the body.

  To remove user defined header fields, use the ``unmy_hdr'' command.
  You may specify an asterisk (``*'') to remove all header fields, or
  the fields to remove.  For example, to remove all ``To'' and ``Cc''
  header fields, you could use:

       unmy_hdr to cc

  33..1144..  SSppeecciiffyy DDeeffaauulltt SSaavvee FFiilleennaammeess

  Usage: save-hook _r_e_g_e_x_p _f_i_l_e_n_a_m_e

  Mutt attempts to determine a default filename when saving message
  based upon defined ``mailing lists'' or who the message is from.  The
  save-hook command is used to override this default.  Messages which
  are from addresses matching _r_e_g_e_x_p will use the _f_i_l_e_n_a_m_e as the
  default.  For example, if you want to save mail from a specific
  person, you could add

  save-hook me@(turing\.)?cs\.hmc.edu +elkins

  or if you wanted to specify a default for all mail from a certain
  domain, you could use

  save-hook aol\.com +spam

  33..1155..  CChhaannggee sseettttiinnggss bbaasseedd uuppoonn mmeessssaaggee rreecciippiieennttss

  Usage: send-hook _r_e_g_e_x_p _c_o_m_m_a_n_d

  This command can be using to execute arbitrary configuration commands
  based upon recipients of the message.  _r_e_g_e_x_p is a regular expression
  matching the desired address.  _c_o_m_m_a_n_d is executed when _r_e_g_e_x_p matches
  recipients of the message.  When multiple matches occur, commands are
  executed in the order they are specified in the muttrc.

  Example: send-hook mutt "set mime_fwd signature=''"

  NNoottee:: the send-hook's are only executed ONCE after getting the initial
  list of recipients.  Adding a recipient after replying or editing the
  message will NOT cause any send-hook to be executed.

  33..1166..  SSeettttiinngg vvaarriiaabblleess

  Usage: set [no]_v_a_r_i_a_b_l_e[=_v_a_l_u_e] [ _v_a_r_i_a_b_l_e ... ]

  This command is used to set (and unset) ``configuration variables''.
  There are four basic types of variables: boolean, number, string and
  quadoption.  _b_o_o_l_e_a_n variables can be _s_e_t (true) or _u_n_s_e_t (false).
  _n_u_m_b_e_r variables can be assigned a positive integer value.

  _s_t_r_i_n_g variables consist of any number of printable characters.
  _s_t_r_i_n_g_s must be enclosed in quotes if they contain spaces or tabs.
  You may also use the ``C'' escape sequences \\nn and \\tt for newline and
  tab, respectively.

  _q_u_a_d_o_p_t_i_o_n variables are used to control whether or not to be prompted
  for certain actions, or to specify a default action.  A value of _y_e_s
  will cause the action to be carried out automatically as if you had
  answered yes to the question.  Similarly, a value of _n_o will cause the
  the action to be carried out as if you had answered ``no.''  A value
  of _a_s_k_-_y_e_s will cause a prompt with a default answer of ``yes'' and
  _a_s_k_-_n_o will provide a default answer of ``no.''

  Prefixing a variable with ``no'' will unset it.  Example: set
  noaskbcc.

  For _b_o_o_l_e_a_n variables, you may optionally prefix the variable name
  with inv to toggle the value (on or off).  This is useful when writing
  macros.  Example: set invsmart_wrap.

  Using the enter-command function in the _i_n_d_e_x menu, you can query the
  value of a variable by prefixing the name of the variable with a
  question mark:

       set ?allow_8bit

  The question mark is actually only required for boolean variables.

  33..1166..11..  RReeaaddiinngg iinniittiiaalliizzaattiioonn ccoommmmaannddss ffrroomm aannootthheerr ffiillee

  Usage: source _f_i_l_e_n_a_m_e

  This command allows the inclusion of initialization commands from
  other files.  For example, I place all of my aliases in
  ~/.mail_aliases so that I can make my ~/.muttrc readable and keep my
  aliases private.

  If the filename begins with a tilde (``~''), it will be expanded to
  the path of your home directory.

  33..1177..  CCoonnffiigguurraattiioonn vvaarriiaabblleess

  33..1177..11..  aabboorrtt__uunnmmooddiiffiieedd

  Type: quadoption
  Default: yes

  If set to _y_e_s, composition will automatically abort after editing the
  message body if no changes are made to the file (this check only
  happens after the _f_i_r_s_t edit of the file).  When set to _n_o,
  composition will never be aborted.

  33..1177..22..  aalliiaass__ffiillee

  Type: string
  Default: ~/.muttrc

  The default file in which to save aliases created by the ``create-
  alias'' function.  NNoottee::  Mutt will not automatically source this
  file; you must explicitly use the ``source'' command for it to be
  executed.

  33..1177..33..  aallllooww__88bbiitt

  Type: boolean
  Default: set

  Controls whether 8-bit data is converted to 7-bit using either Quoted-
  Printable or Base64 encoding when sending mail.

  33..1177..44..  aarrrrooww__ccuurrssoorr

  Type: boolean
  Default: unset

  When set, an arrow (``->'') will be used to indicate the current entry
  in menus instead of hiliting the whole line.  On slow network or modem
  links this will make response faster because there is less that has to
  be redrawn on the screen when moving to the next or previous entries
  in the menu.

  33..1177..55..  aasskkbbcccc

  Type: boolean
  Default: unset

  If set, Mutt will prompt you for blind-carbon-copy (Bcc) recipients
  before editing an outgoing message.

  33..1177..66..  aasskkcccc

  Type: boolean
  Default: unset

  If set, Mutt will prompt you for carbon-copy (Cc) recipients before
  editing the body of an outgoing message.

  33..1177..77..  aattttrriibbuuttiioonn

  Type: format string
  Default: "On %d, %n wrote:"

  This is the string that will precede a message which has been included
  in a reply.  For a full listing of defined escape sequences see the
  section on ``hdr_format''.

  33..1177..88..  aauuttooeeddiitt

  Type: boolean
  Default: unset

  When set, Mutt will skip the initial send-menu and allow you to
  immediately begin editing the body of your message when replying to
  another message.  The send-menu may still be accessed once you have
  finished editing the body of your message.

  If the ``edit_hdrs'' variable is also set, the initial prompts in the
  send-menu are always skipped, even when composing a new message.

  33..1177..99..  aauuttoo__ttaagg

  Type: boolean
  Default: unset

  When set, functions in the _i_n_d_e_x menu which affect a message will be
  applied to all tagged messages (if there are any).  When unset, you
  must first use the tag-prefix function (default: ";") to make the next
  function apply to all tagged messages.

  33..1177..1100..  cchhaarrsseett

  Type: string
  Default: iso-8859-1

  Character set your terminal uses to display and enter textual data.
  This information is required to properly label outgoing messages which
  contain 8-bit characters so that receiving parties can display your
  messages in the correct character set.

  33..1177..1111..  cchheecckk__nneeww

  Type: boolean
  Default: set

  NNoottee:: this option only affects _m_a_i_l_d_i_r and _M_H style mailboxes.

  When _s_e_t, Mutt will check for new mail delivered while the mailbox is
  open.  Especially with MH mailboxes, this operation can take quite
  some time since it involves scanning the directory and checking each
  file to see if it has already been looked at.  If _c_h_e_c_k___n_e_w is _u_n_s_e_t,
  no check for new mail is performed while the mailbox is open.

  33..1177..1122..  ccoonnffiirrmmaappppeenndd

  Type: boolean
  Default: set

  When set, Mutt will prompt for confirmation when appending messages to
  an existing mailbox.

  33..1177..1133..  ccoonnffiirrmmccrreeaattee

  Type: boolean
  Default: set

  When set, Mutt will prompt for confirmation when saving messages to a
  mailbox which does not yet exist before creating it.

  33..1177..1144..  ccooppyy

  Type: quadoption
  Default: yes

  This variable controls whether or not copies of your outgoing messages
  will be saved for later references.  Also see ``record'',
  ``save_name'', ``force_name'' and ``save-hook''.

  33..1177..1155..  ddaattee__ffoorrmmaatt

  Type: string
  Default: "!%a, %b %d, %Y at %I:%M:%S%p %Z"

  This variable controls the format of the date printed by the ``%d''
  sequence in ``hdr_format''.  This is passed to the _s_t_r_f_t_i_m_e call to
  process the date. See the man page for _s_t_r_f_t_i_m_e_(_3_) for the proper
  syntax.

  Unless the first character in the string is a bang (``!''), the month
  and week day names are expanded according to the locale specified in
  the variable ``locale''. If the first character in the string is a
  bang, the bang is discarded, and the month and week day names in the
  rest of the string are expanded in the _C locale (that is in US
  English).

  33..1177..1166..  ddeelleettee

  Type: quadoption
  Default: ask-yes

  Controls whether or not messages are really deleted when closing or
  synchronizing a mailbox.  If set to _y_e_s, messages marked for deleting
  will automatically be purged without prompting.  If set to _n_o,
  messages marked for deletion will be kept in the mailbox.

  33..1177..1177..  ddssnn__nnoottiiffyy

  Type: string
  Default: "failure,delay"

  If Mutt was compiled with support for DSN, this variable sets the
  request for when notification is returned.  The string consists of a
  comma separated list (no spaces!) of one or more of the following:
  _n_e_v_e_r, to never request notification, _f_a_i_l_u_r_e, to request notification
  on transmission failure, _d_e_l_a_y, to be notified of message delays,
  _s_u_c_c_e_s_s, to be notified of successful transmission.

  33..1177..1188..  ddssnn__rreettuurrnn

  Type: string Default: "hdrs"

  This variable controls how much of your message is returned in DSN
  messages.  It may be set to either _h_d_r_s to return just the message
  header, or _f_u_l_l to return the full message.

  33..1177..1199..  eeddiitt__hhddrrss

  Type: boolean
  Default: unset

  This option allows you to edit the header of your outgoing messages
  along with the body of your message.

  33..1177..2200..  eeddiittoorr

  Type: String
  Default: value of environment variable $VISUAL, $EDITOR, or "vi"

  This variable specifies which editor to use when composing messages.

  33..1177..2211..  eessccaappee

  Type: string
  Default: ~

  Escape character to use for functions in the builtin editor.

  33..1177..2222..  ffaasstt__rreeppllyy

  Type: boolean
  Default: unset

  When set, the initial prompt for recipients and subject are skipped
  when replying to messages.

  NNoottee:: this variable has no effect when the ``autoedit'' variable is
  set.

  33..1177..2233..  ffcccc__aattttaacchh

  Type: boolean
  Default: set

  This variable controls whether or not attachments on outgoing messages
  are saved along with the main body of your message.

  33..1177..2244..  ffoollddeerr

  Type: String
  Default: ~/Mail

  Specifies the default location of your mailboxes.  A `+' or `=' at the
  beginning of a pathname will be expanded to the value of this
  variable.  Note that if you change this variable from the default
  value you need to make sure that the assignment occurs _b_e_f_o_r_e you use
  `+' or `=' for any other variables since expansion takes place during
  the `set' command.

  33..1177..2255..  ffoorrccee__nnaammee

  Type: Boolean
  Default: unset

  This variable is similar to ``save_name'', except that Mutt will store
  a copy of your outgoing message by the username of the address you are
  sending to even if that mailbox does not exist.

  Also see the ``record'' variable.

  33..1177..2266..  ffoorrww__ffoorrmmaatt

  Type: format string
  Default: "[%a: %s]"

  This variable controls the default subject when forwarding a message.
  It uses the same format sequences as the ``hdr_format'' variable.

  33..1177..2277..  hhddrr__ffoorrmmaatt

  Type: format string
  Default: "%4C %Z %{%b %d} %-15.15L (%4l) %s"

  This variable allows you to customize the message index display to
  your personal taste.

  ``Format strings'' are similar to the strings used in the ``C''
  function printf to format output (see the man page for more detail).
  The following sequences are defined in Mutt:

       %a      address of the author
       %c      number of characters (bytes) in the message
       %C      current message number
       %d      date and time of the message in the format specified by
               ``date_format''
       %f      entire From: line (address + real name)
       %F      entire From: line, unless from self
       %i      message-id of the current message
       %l      number of lines in the message
       %L      list-from function
       %n      real (personal) name of author
       %s      subject of the message
       %S      status of the message (N/D/!/*/r)
       %T      total number of message in the mailbox
       %t      the appropriate character from the $to_chars string
       %u      user (login) name of the author
       %Z      message status flags

       %{fmt}  the date and time of the message is converted to sender's
               time zone, and ``fmt'' is expanded by the system call
               ``strftime''; a leading bang disables locales
       %[fmt]  the date and time of the message is converted to the local
               time zone, and ``fmt'' is expanded by the system call
               ``strftime''; a leading bang disables locales

       %>X     right justify the rest of the string and pad with character "X"
       %|X     pad to the end of the line with character "X"

  33..1177..2288..  hheeaaddeerr

  Type: boolean
  Default: unset

  When set, this variable causes Mutt to include the _f_u_l_l header of the
  message you are replying to into the edit buffer.

  33..1177..2299..  hheellpp

  Type: boolean
  Default: set

  When set, help lines describing the bindings for the major functions
  provided by each menu are displayed on the first line of the screen.

  _N_o_t_e_: The binding will not be displayed correctly if the function is
  bound to a sequence rather than a single keystroke.  Also, the help
  line may not be updated if a binding is changed while Mutt is running.
  Since this variable is primarily aimed at new users, neither of these
  should present a major problem.

  33..1177..3300..  hhiissttoorryy

  Type: number
  Default: 10

  This variable controls the size (in number of strings remembered) of
  the string history buffer.

  33..1177..3311..  hhoolldd

  Type: boolean
  Default: set

  If set, this causes Mutt nnoott to move read messages from your
  ``spoolfile'' file to your ``mbox'' file.

  33..1177..3322..  hhoossttnnaammee

  Type: string
  Default: varies

  Specifies the hostname to use after the ``@'' in local e-mail
  addresses.  This overrides the compile time definition obtained from
  /etc/resolv.conf.

  33..1177..3333..  iinn__rreeppllyy__ttoo

  Type: format string
  Default: "%i; from \"%n\" on %{!%a, %b %d, %Y at %I:%M:%S%p}"

  This specifies the format of the In-Reply-To: header field added when
  replying to a message.  This uses the same format as the
  ``$hdr_format'' variable.

  33..1177..3344..  iinncclluuddee

  Type: quadoption
  Default: ask-yes
  Controls whether or not a copy of the message(s) you are replying to
  is included in your reply.

  33..1177..3355..  iinnddeenntt__ssttrr

  Type: format string
  Default: "> "

  Specifies the string to prepend to each line of text quoted in a
  message to which you are replying.  You are strongly encouraged not to
  change this value, as it tends to agitate the more fanatical netizens.

  33..1177..3366..  iissppeellll

  Type: string
  Default: "ispell"

  How to invoke ispell (GNU's spell-checking software).

  33..1177..3377..  llooccaall__ssiigg

  Type: string
  Default: none

  The filename of your signature file which should be copied into the
  message buffer when the recipients are all local.  NNoottee:: setting this
  variable overrides the value of ``signature''.  Also see the
  ``remote_sig'' variable.

  33..1177..3388..  llooccaallee

  Type: string
  Default: "C"

  The locale used by _s_t_r_f_t_i_m_e_(_3_) to format dates. Legal values are the
  strings your system accepts for the locale variable _L_C___T_I_M_E.

  33..1177..3399..  mmaaiillccaapp__ppaatthh

  Type: string
  Default: $MAILCAPS or
  ~/.mailcap:/usr/local/share/mailcap:/etc/mailcap:/usr/etc/mailcap:/usr/local/etc/mailcap

  This variable specifies which files took consult when attempting to
  display MIME bodies not directly supported by Mutt.

  33..1177..4400..  mmaarrkk__oolldd

  Type: Boolean
  Default: set

  Controls whether or not Mutt makes the distinction between _n_e_w
  messages and _o_l_d uunnrreeaadd messages.  By default, Mutt will mark new
  messages as old if you exit a mailbox without reading them.  The next
  time you start Mutt, the messages will show up with an "O" next to
  them in the index menu, indicating that they are old.  In order to
  make Mutt treat all unread messages as new only, you can unset this
  variable.

  33..1177..4411..  mmaarrkkeerrss

  Type: boolean
  Default: set

  Controls the display of wrapped lines in the internal pager. If set, a
  ``+'' marker is displayed at the beginning of wrapped lines. Also see
  the ``smart_wrap'' variable.

  33..1177..4422..  mmaasskk

  Type: string
  Default: "^(\.\.$|[^.])"

  A regular expression used in the file browser. Files whose names don't
  match this mask will not be shown.

  33..1177..4433..  mmbbooxx

  Type: String
  Default: +inbox

  This specifies the folder into which read mail in your ``spoolfile''
  folder will be appended.

  33..1177..4444..  mmbbooxx__ttyyppee

  Type: String
  Default: mbox

  The default mailbox type used when creating new folders. May be any of
  mbox, MMDF, MH and Maildir.

  33..1177..4455..  mmeettoooo

  Type: boolean
  Default: unset

  If set, Mutt will nnoott remove your address from the list of recipients
  when replying to a message.

  33..1177..4466..  mmiimmee__ffwwdd

  Type: boolean
  Default: unset

  When set, the message you are forwarding will be attached as a
  separate MIME part instead of included in the main body of the
  message.  This is useful for forwarding MIME messages so the receiver
  can properly view the message.

  33..1177..4477..  mmoovvee

  Type: quadoption
  Default: ask-no

  If the ``hold'' variable is unset, you will be asked to confirm moving
  read messages from your spool mailbox to your ``mbox'' mailbox.

  33..1177..4488..  nnoo__hhddrrss

  Type: boolean
  Default: unset

  When set, the header fields normally added by the ``my_hdr'' command
  are not created.  This variable _m_u_s_t be set before composing a new
  message or replying in order to take effect.  If unset, the user
  defined header fields are added to every new message (except when
  sending in batch mode).

  33..1177..4499..  ppaaggeerr

  Type: string
  Default: internal

  This variable specifies which pager you would like to use to view
  messages.

  33..1177..5500..  ppaaggeerr__ccoonntteexxtt

  Type: number
  Default: 0

  This variable controls the number of lines of context that are given
  when displaying the next or previous page in the internal-pager.  By
  default, Mutt will display the line after the last one on the screen
  at the top of the next page (0 lines of context).

  33..1177..5511..  ppaaggeerr__ffoorrmmaatt

  Type: format string
  Default: "-%S- %C/%T: %-20.20n   %s"

  This variable controls the format of the one-line message ``status''
  displayed before each message in either the internal or an external
  pager.  The valid sequences are listed in the ``hdr_format'' section.

  33..1177..5522..  ppaaggeerr__ssttoopp

  Type: boolean
  Default: unset

  When set, the internal-pager will nnoott move to the next message when
  you are at the end of a message and invoke the _n_e_x_t_-_p_a_g_e function.

  33..1177..5533..  ppggpp

  Type: string
  Default: system dependent

  This variable allows you to override the compile time definition of
  where the PGP binary resides on your system.

  33..1177..5544..  ppggpp__aauuttoossiiggnn

  Type: boolean
  Default: unset

  Setting this variable will cause Mutt to always attempt to PGP/MIME
  sign outgoing messages.  This can be overridden by use of the _p_g_p_-
  _m_e_n_u, when signing is not required or encryption is requested as well.

  33..1177..5555..  ppggpp__eennccrryyppttsseellff

  Type: boolean
  Default: set

  If set, the PGP _+_e_n_c_r_y_p_t_t_o_s_e_l_f flag is used when encrypting messages.

  33..1177..5566..  ppggpp__rreeppllyyppggpp

  Type: boolean
  Default: unset

  If set, automatically PGP encrypt replies to messages which are
  encrypted.

  33..1177..5577..  ppggpp__ssiiggnn__aass

  Type: string
  Default: unset

  If you have more than one key pair, this option allows you to specify
  which of your private keys to use.  It is recommended that you use the
  keyid form to specify your key (e.g., ``0xABCDEFGH'').

  33..1177..5588..  ppggpp__ttiimmeeoouutt

  Type: number
  Default: 500

  The number of seconds after which a cached passphrase will expire if
  not used.

  33..1177..5599..  ppiippee__ddeeccooddee

  Type: boolean
  Default: unset

  Used in connection with the _p_i_p_e_-_m_e_s_s_a_g_e command.  When unset, Mutt
  will pipe the messages without any preprocessing. When set, Mutt will
  weed headers and will attempt to PGP/MIME decode the messages first.

  33..1177..6600..  ppiippee__sseepp

  Type: string
  Default: newline

  The separator to add between messages when piping a list of tagged
  messages to an external Unix command.

  33..1177..6611..  ppiippee__sspplliitt

  Type: boolean
  Default: unset

  Used in connection with the _p_i_p_e_-_m_e_s_s_a_g_e command and the ``tag-
  prefix'' operator. If this variable is unset, when piping a list of
  tagged messages Mutt will concatenate the messages and will pipe them
  as a single folder.  When set, Mutt will pipe the messages one by one.
  In both cases the the messages are piped in the current sorted order,
  and the ``pipe_sep'' separator is added after each message.

  33..1177..6622..  ppooiinntt__nneeww

  Type: boolean
  Default: set

  This variable controls whether mutt will position you at the first new
  (or unread) message in the mailbox when the mailbox is first opened.

  33..1177..6633..  ppoopp__ddeelleettee

  Type: boolean
  Default: unset

  If set, Mutt will delete successfully downloaded messages from the POP
  server when using the fetch-mail function.  When unset, Mutt will
  download messages but also leave them on the POP server.

  33..1177..6644..  ppoopp__hhoosstt

  Type: string
  Default: none

  The name or address of your POP3 server.

  33..1177..6655..  ppoopp__ppaassss

  Type: string
  Default: unset

  Specifies the password for you POP account.  If unset, Mutt will
  prompt you for your password when you invoke the fetch-mail function.
  WWaarrnniinngg: you should only use this option when you are on a fairly
  secure machine, because the superuser can read your muttrc even if you
  are the only one who can read the file.

  33..1177..6666..  ppoopp__ppoorrtt

  Type: number
  Default: 110

  This variable specifies which port your POP server is listening on.

  33..1177..6677..  ppoopp__uusseerr

  Type: string
  Default: login name on local system

  Your login name on the POP3 server.

  33..1177..6688..  ppoosstt__iinnddeenntt__ssttrr

  Type: format string
  Default: none

  Similar to the ``attribution'' variable, Mutt will append this string
  after the inclusion of a message which is being replied to.

  33..1177..6699..  ppoossttppoonnee

  Type: quadoption
  Default: ask-yes

  Controls whether or not messages are saved in the ``postponed''
  mailbox when you elect not to send immediately.

  33..1177..7700..  ppoossttppoonneedd

  Type: string
  Default: ~/postponed

  Mutt allows you to indefinitely ``postpone sending a message'' which
  you are editing.  When you choose to postpone a message, Mutt saves it
  in the folder specified by this variable.  Also see the ``postpone''
  variable.

  33..1177..7711..  pprriinntt

  Type: quadoption
  Default: ask-no

  Controls whether or not Mutt asks for confirmation before printing.
  This is useful for people (like me) who accidentally hit ``p'' often.

  33..1177..7722..  pprriinntt__ccmmdd

  Type: string
  Default: lpr

  This specifies the command that should be used to print messages.

  33..1177..7733..  pprroommpptt__aafftteerr

  Type: boolean
  Default: set

  If you use an _e_x_t_e_r_n_a_l ``pager'', setting this variable will cause
  Mutt to prompt you for a command when the pager exits rather than
  returning to the index menu.  If unset, Mutt will return to the index
  menu when the external pager exits.

  33..1177..7744..  qquuoottee__rreeggeexxpp

  Type: string
  Default: "^[>|#:}] "

  A regular expression used in the internal-pager to determine quoted
  sections of text in the body of a message.

  33..1177..7755..  rreeaadd__iinncc

  Type: number
  Default: 10

  If set to a value greater than 0, Mutt will display which message it
  is currently on when reading a mailbox.  The message is printed after
  _r_e_a_d___i_n_c messages have been read (e.g., if set to 25, Mutt will print
  a message when it reads message 25, and then again when it gets to
  message 50).  This variable is meant to indicate progress when reading
  large mailboxes which may take some time.

  When set to 0, only a single message will appear before the reading
  the mailbox.

  Also see the ``write_inc'' variable.

  33..1177..7766..  rreeaallnnaammee

  Type: string
  Default: GCOS field from /etc/passwd

  This variable specifies what "real" or "personal" name should be used
  when sending messages.

  33..1177..7777..  rreeccaallll

  Type: quadoption
  Default: ask-yes

  Controls whether or not you are prompted to recall postponed messages
  when composing a new message.  Also see ``postponed''

  33..1177..7788..  rreeccoorrdd

  Type: string
  Default: none

  This specifies the file into which your outgoing messages should be
  appended.  (This is meant as the primary method for saving a copy of
  your messages, but another way to do this is using the ``my_hdr''
  command to create a _B_c_c_: field with your email address in it.)

  The value of _$_r_e_c_o_r_d is overridden by the ``force_name'' and
  ``save_name'' variables.

  33..1177..7799..  rreeffeerreenncceess

  Type: number
  Default: 10

  If set to a value greater than 0, Mutt will trim the reference list in
  the _R_e_f_e_r_e_n_c_e_s_: field to at most that number of entries when replying.
  If set to 0, all entries are included.

  33..1177..8800..  rreemmoottee__ssiigg

  Type: string
  Default: none

  The filename of the signature file which should be appended to the
  message buffer when the destination of the message is a remote host.
  NNoottee:: setting this variable overrides the value of ``signature''.
  Also see the ``local_sig'' variable.

  33..1177..8811..  rreeppllyy__ttoo

  Type: quadoption
  Default: ask-yes

  If set, Mutt will ask you if you want to use the address listed in the
  Reply-To header field when replying to a message.  If you answer no,
  it will use the address in the From: header field instead.  This
  option is useful for reading a mailing list that sets the Reply-To
  header field to the list address and you want to send a private
  message to the author of a message.

  33..1177..8822..  rreessoollvvee

  Type: boolean
  Default: set

  When set, the cursor will be automatically advanced to the next
  (possibly undeleted) message whenever a command that modifies the
  current message is executed.

  33..1177..8833..  rreevveerrssee__aalliiaass

  Type: boolean
  Default: unset

  This variable controls whether or not mutt will display the "personal"
  name from your aliases in the index menu if it finds an alias that
  matches the message's sender.  For example, if you have the following
  alias:

  alias juser abd30425@somewhere.net (Joe User)

  and then you receive mail which contains the following header:

  From: abd30425@somewhere.net

  It would be displayed in the index menu as ``Joe User'' instead of
  ``abd30425@somewhere.net.''  This is useful when the person's e-mail
  address is not human friendly (like Compu$erve addresses).

  33..1177..8844..  ssaavvee__eemmppttyy

  Type: boolean
  Default: set

  When unset, mailboxes which contain no saved messages will be removed
  when closed (the exception is ``spoolfile'' which is never removed).
  If set, mailboxes are never removed.  NNoottee:: This only applies to mbox
  and MMDF folders, mutt does not delete MH and Maildir directories.

  33..1177..8855..  ssaavvee__nnaammee

  Type: boolean
  Default: unset

  This variable controls how copies of outgoing messages are saved.
  When set, a check is made to see if a mailbox specified by the
  recipient address exists (this is done by searching for a ``save-
  hook'' or a mailbox in the ``folder'' directory with the _u_s_e_r_n_a_m_e part
  of the recipient address).  If the mailbox exists, the outgoing
  message will be saved to that mailbox, otherwise the message is saved
  to the ``record'' mailbox.

  Also see the ``force_name'' variable.

  33..1177..8866..  sseennddmmaaiill

  Type: string
  Default: /usr/lib/sendmail -t -oi -oem

  Specifies the program and arguments used to deliver mail sent by Mutt.

  33..1177..8877..  sshheellll

  Type: string
  Default: retrieved from passwd file

  Command to use when spawning a subshell.

  33..1177..8888..  ssiigg__ddaasshheess

  Type: boolean
  Default: set

  If set, a line containing ``-- '' will be inserted before your
  ``signature''.  It is ssttrroonnggllyy recommended that you not unset this
  variable unless your ``signature'' contains just your name.  The
  reason for this is because many software packages use ``-- \n'' to
  detect your signature.  For example, Mutt has the ability to hilite
  the signature in a different color in the builtin pager.

  33..1177..8899..  ssiiggnnaattuurree

  Type: string
  Default: ~/.signature

  Specifies the filename of your signature, which is appended to all
  outgoing messages.   If the filename ends with a pipe (``|''), it is
  assumed that filename is a shell command and input should be read from
  its stdout.

  NNoottee::  This variable is overridden by both the ``remote_sig'' and
  ``local_sig'' commands.

  33..1177..9900..  ssmmaarrtt__wwrraapp

  Type: boolean
  Default: set

  Controls the display of lines longer then the screen width in the
  internal pager. If set, long lines are wrapped at a word boundary.  If
  unset, lines are simply wrapped at the screen edge. Also see the
  ``markers'' variable.

  33..1177..9911..  ssoorrtt

  Type: string
  Default: date-sent

  Specifies how to sort messages in the _i_n_d_e_x menu.  Valid values are

  +o  date-sent

  +o  date-received

  +o  from

  +o  mailbox-order (unsorted)

  +o  subject

  +o  threads

  You may optionally use the reverse- prefix to specify reverse sorting
  order (example: set sort=reverse-date-sent).

  33..1177..9922..  ssoorrtt__bbrroowwsseerr

  Type: string

  Specifies how to sort entries in the file browser.  By default, the
  entries are sorted alphabetically.  Valid values:

  +o  date

  +o  alpha (alphabetically)

  You may optionally use the reverse- prefix to specify reverse sorting
  order (example: set sort_browser=reverse-date).

  33..1177..9933..  ssppoooollffiillee

  Type: string
  Default: most likely /var/mail/$USER or /usr/spool/mail/$USER

  If your spool mailbox is in a non-default place where Mutt cannot find
  it, you can specify its location with this variable.  Mutt will
  automatically set this variable to the value of the environment
  variable $MAIL if it is not set.

  33..1177..9944..  ssttaattuuss__cchhaarrss

  Type: string
  Default: "-*%"

  Controls the characters used by the "%r" indicator in
  ``status_format''. The first character is used when the mailbox is
  unchanged. The second is used when the mailbox has been changed, and
  it needs to be resynchronized. The third is used for read-only
  mailboxes.

  33..1177..9955..  ssttaattuuss__ffoorrmmaatt

  Type: string
  Default: "-%r-Mutt: %f [%?M/?%m msgs, %?n new, ?%?d del, ?%?F flag,
  ?%?t tag, ?%?p post, ?%?b inc, ?%l]---(%s)%|-"

  Controls the format of the status line displayed in the _i_n_d_e_x menu.
  This string is similar to ``hdr_format'', but has its own set of
  printf()-like sequences:

       %b      number of mailboxes with new mail
       %d      number of deleted messages
       %h      local hostname
       %f      the full pathname of the current mailbox
       %l      size (in bytes) of the current mailbox
       %m      the number of messages in the mailbox
       %M      the number of messages shown (i.e., which match the current limit)
       %n      number of new messages in the mailbox
       %p      number of postponed messages
       %r      modified/read-only indicator, according to $status_chars
       %s      current sorting mode
       %t      number of tagged messages
       %v      Mutt version string

       %>X     right justify the rest of the string and pad with "X"
       %|X     pad to the end of the line with "X"

  It is also possible to optionally print a variable if it is non-zero.
  For example, you might want to display a message about how many new
  messages there are only if there actually are new messages.  To
  optionally print a variable, use:

  %?...?

  Immediately after the first question mark (?) you should place the
  normal sequence from the above table (_w_i_t_h_o_u_t the %).  You may then
  add an optional string to it.  Here are some examples:

  %?n new? %?t tagged? %?m shown?

  This will print ``N new'' iiff ``N'' is not zero, otherwise it will
  ignore everything between the question marks that surround it.  The
  same goes for the other examples on that line.

  33..1177..9966..  ssttaattuuss__oonn__ttoopp

  Type: boolean
  Default: unset

  Setting this variable causes the ``status_format'' to be displayed on
  the first line of the screen rather than near the bottom.

  33..1177..9977..  ssttrriicctt__tthhrreeaaddss

  Type: boolean
  Default: unset

  If set, threading will only make use of the ``In-Reply-To'' and
  ``References'' fields when ``sorting'' by message threads.  By
  default, messages with the same subject are grouped together in
  ``pseudo threads.''  This may not always be desirable, such as in a
  personal mailbox where you might have several unrelated messages with
  the subject ``hi'' which will get grouped together.

  33..1177..9988..  tthhrreeaadd__cchhaarrss

  Type: string
  Default: unset

  Overrides the characters used to display the thread trees when the
  current sort method is _t_h_r_e_a_d_s.  The first character is used for
  "lower left corner", the second for "upper left corner", the third for
  "left tee", the fourth for "horizontal line" and the fifth for
  "vertical line".

  33..1177..9999..  ttiillddee

  Type: boolean
  Default: unset

  When set, the internal-pager will pad blank lines to the bottom of the
  screen with a tilde (~).

  33..1177..110000..  ttiimmeeoouutt

  Type: number
  Default: 600

  This variable controls the _n_u_m_b_e_r _o_f _s_e_c_o_n_d_s Mutt will wait for a key
  to be pressed in the main menu before timing out and checking for new
  mail.  A value of zero or less will cause Mutt not to ever time out.

  33..1177..110011..  ttmmppddiirr

  Type: string
  Default: /tmp

  This variable allows you to specify where Mutt will place its
  temporary files needed for displaying and composing messages.

  33..1177..110022..  ttoo__cchhaarrss

  Type: string
  Default: " +TCF"

  Controls the character used to indicate mail addressed to you.  The
  first character is the one used when the mail is NOT addressed to your
  address (default: space).  The second is used when you are the only
  recipient of the message (default: +).  The third is when your address
  appears in the TO header field, but you are not the only recipient of
  the message (default: T).  The fourth character is used when your
  address is specified in the CC header field, but you are not the only
  recipient.  The fifth character is used to indicate mail that was sent
  by _y_o_u.

  33..1177..110033..  uurrll__rreeggeexxpp

  Type: string
  Default: "((http|ftp)://|mailto:)[^ \n\t]*[^., \n\t>]"
  Specifies the regular expression used to extract URLs from message
  bodies in the browse-url menu.

  33..1177..110044..  uussee__mmaaiillccaapp

  Type: quad-option
  Default: ask

  If set to ``yes'', always try to use a mailcap entry to display a MIME
  part that Mutt can't understand what to do with.  If ``ask'', prompt
  as to whether to display as text or to use a mailcap entry.  If
  ``no'', always view unsupported MIME types as text.

  33..1177..110055..  vveerriiffyy__ssiigg

  Type: quad-option
  Default: yes

  If ``yes'', always attempt to verify PGP/MIME signatures.  If ``ask'',
  ask whether or not to verify the signature.  If ``no'', never attempt
  to verify PGP/MIME signatures.

  33..1177..110066..  vviissuuaall

  Type: string
  Default: $VISUAL

  Specifies the visual editor to invoke when the  _v command is given in
  the builtin editor.

  33..1177..110077..  wwaaiitt__kkeeyy

  Type: boolean
  Default: set

  Controls whether Mutt will ask you to press a key after _s_h_e_l_l_-_e_s_c_a_p_e,
  _p_i_p_e_-_m_e_s_s_a_g_e and _p_i_p_e_-_e_n_t_r_y commands. When set, Mutt will always ask
  for a key. When unset, Mutt will wait for a key only if the external
  command returned a non-zero status.

  33..1177..110088..  wweebb__bbrroowwsseerr

  Type: string
  Default: unset

  Command to start a textmode WWW browser on a URL.  This command will
  be invoked by the browse-url function.  The sequence ``%s'' is
  replaced by the URL.  If no ``%s'' is given, the URL will be appended
  to the command.

  Example: set web_browser="lynx %s"

  33..1177..110099..  wwrriittee__iinncc

  Type: number
  Default: 10

  When writing a mailbox, a message will be printed every _w_r_i_t_e___i_n_c
  messages to indicate progress.  If set to 0, only a single message
  will be displayed before writing a mailbox.
  Also see the ``read_inc'' variable.

  44..  SSeeaarrcchhiinngg

  Many of Mutt's commands allow you to specify a pattern to match
  (limit, tag-pattern, delete-pattern, etc.).  There are several ways to
  select messages:

       ~b PATTERN      messages which contain PATTERN in the message body
       ~c USER         messages carbon-copied to USER
       ~d [MIN]-[MAX]  messages with ``date-sent'' in a Date range
       ~e PATTERN      message which contains PATTERN in the ``Sender'' field
       ~f USER         messages originating from USER
       ~h PATTERN      messages which contain PATTERN in the message header
       ~i ID           message which match ID in the ``Message-ID'' field
       ~r [MIN]-[MAX]  messages with ``date-received'' in a Date range
       ~s SUBJECT      messages having SUBJECT in the ``Subject'' field.
       ~t USER         messages addressed to USER
       all             all messages
       del             deleted messages
       flag            flagged messages
       new             new messages
       old             old messages
       read            read messages
       repl            messages which have been replied to
       tag             tagged messages
       thread          the current thread of messages
       unread          unread messages
       M-N             messages in the range ``M'' through ``N''
       M-              messages ``M'' and above
       -N              messages ``N'' and below

  Where PATTERN, USER, ID, and SUBJECT are ``regular expressions''.

  44..11..  CCoommpplleexx SSeeaarrcchheess

  Logical AND is performed by specifying more than one criterion.  For
  example:

       ~t mutt ~f elkins

  would select messages which contain the word ``mutt'' in the list of
  recipients aanndd that have the word ``elkins'' in the ``From'' header
  field.

  Mutt also recognizes the following operators to create more complex
  search patterns:

  +o  ! -- logical NOT operator

  +o  | -- logical OR operator

  +o  () -- logical grouping operator

  Here is an example illustrating a complex search pattern.  This
  pattern will select all messages which do not contain ``mutt'' in the
  ``To'' or ``Cc'' field and which are from ``elkins''.

       !(~t mutt|~c mutt) ~f elkins

  44..22..  SSeeaarrcchhiinngg bbyy DDaattee

  All dates mmuusstt be in DD/MM/YY format (month and year are optional,
  defaulting to the current month and year).  An example of a valid
  range of dates is:

       Limit to messages matching: ~d 20/1/95-31/10

  If you omit the minimum (first) date, and just specify ``-DD/MM/YY'',
  all messages _b_e_f_o_r_e the given date will be selected.  If you omit the
  maximum (second) date, and specify ``DD/MM/YY-'', all messages _a_f_t_e_r
  the given date will be selected.  If you specify a single date with no
  dash (``-''), only messages sent on the given date will be selected.

  55..  MMuutttt''ss MMIIMMEE SSuuppppoorrtt

  Quite a bit of effort has been made to make Mutt the premier text-mode
  MIME MUA.  Every effort has been made to provide the functionality
  that the discerning MIME user requires, and the conformance to the
  standards wherever possible.  When configuring Mutt for MIME, there
  are two extra types of configuration files which Mutt uses.  One is
  the mime.types file, which contains the mapping of file extensions to
  IANA MIME types.  The other is the mailcap file, which specifies the
  external commands to use for handling specific MIME types.

  55..11..  MMIIMMEE TTyyppee ccoonnffiigguurraattiioonn wwiitthh mime.types

  When you add an attachment to your mail message, Mutt searches your
  personal mime.types file at ${HOME}/.mime.types, and then the system
  mime.types file at SHAREDIR/mime.types.  SHAREDIR is defined at
  compilation time, and can be determined by typing mutt -v from the
  command line.

  The mime.types file consist of lines containing a MIME type and a
  space separated list of extensions.  For example:

       application/postscript          ps eps
       application/pgp                 pgp
       audio/x-aiff                    aif aifc aiff

  A sample mime.types file comes with the mutt distribution, and should
  contain most of the MIME types you are likely to use.

  If mutt can not determine the mime type by the extension of the file
  you attach, it will look at the file.  If the file is free of binary
  information, mutt will assume that the file is plain text, and mark it
  as text/plain.  If the file contains binary information, then mutt
  will mark it as application/octect-stream.  You can change the MIME
  type that mutt assigns to an attachment by using the edit-type command
  from the compose menu (default: ^T).  When typing in the MIME type,
  mutt requires that major type be one of the 5 types: application,
  text, image, video, or audio.  If you attempt to use a different major
  type, mutt will abort the change.

  55..22..  MMIIMMEE VViieewweerr ccoonnffiigguurraattiioonn wwiitthh mailcap

  Mutt supports RFC 1524 MIME Configuration, in particular the Unix
  specific format specified in Appendix A of RFC 1524.  This file format
  is commonly refered to as the mailcap format.  Many MIME compliant
  programs utilize the mailcap format, allowing you to specify handling
  for all MIME types in one place for all programs.  Programs known to
  use this format include Netscape, MosaicX, lynx and metamail.

  In order to handle various MIME types that mutt can not handle
  internally, mutt parses a series of external configuration files to
  find an external handler.  The default search string for these files
  is a colon delimited list set to

       ${HOME}/.mailcap:SHAREDIR/mailcap:/etc/mailcap:/usr/etc/mailcap:/usr/local/etc/mailcap

  where $HOME is your home directory and SHAREDIR is the shared direc-
  tory defined at compile time (visible from mutt -v).

  In particular, the metamail distribution will install a mailcap file,
  usually as /usr/local/etc/mailcap, which contains some baseline
  entries.

  55..22..11..  TThhee BBaassiiccss ooff tthhee mmaaiillccaapp ffiillee

  A mailcap file consists of a series of lines which are comments,
  blank, or definitions.

  A comment line consists of a # character followed by anything you
  want.

  A blank line is blank.

  A definition line consists of a content type, a view command, and any
  number of optional fields.  Each field of a definition line is divided
  by a semicolon ';' character.

  The content type is specified in the MIME standard type/subtype
  method.  For example, text/plain, text/html, image/gif, etc.  In
  addition, the mailcap format includes two formats for wildcards, one
  using the special '*' subtype, the other is the implicit wild, where
  you only include the major type.  For example, image/*, or video, will
  match all image types and video types, respectively.

  The view command is a Unix command for viewing the type specified.
  There are two different types of commands supported.  The default is
  to send the body of the MIME message to the command on stdin.  You can
  change this behaviour by using %s as a parameter to your view command.
  This will cause mutt to save the body of the MIME message to a
  temporary file, and then call the view command with the %s replaced by
  the name of the temporary file.  In both cases, mutt will turn over
  the terminal to the view program until the program quits, at which
  time mutt will remove the temporary file if it exists.

  So, in the simplest form, you can send a text/plain message to the
  external pager more on stdin:

       text/plain; more

  Or, you could send the message as a file:

       text/plain; more %s

  Perhaps you would like to use lynx to interactively view a text/html
  message:

       text/html; lynx %s

  In this case, lynx does not support viewing a file from stdin, so you
  must use the %s syntax.  _N_o_t_e_: _S_o_m_e _o_l_d_e_r _v_e_r_s_i_o_n_s _o_f _l_y_n_x _c_o_n_t_a_i_n _a
  _b_u_g _w_h_e_r_e _t_h_e_y _w_i_l_l _c_h_e_c_k _t_h_e _m_a_i_l_c_a_p _f_i_l_e _f_o_r _a _v_i_e_w_e_r _f_o_r _t_e_x_t_/_h_t_m_l_.
  _T_h_e_y _w_i_l_l _f_i_n_d _t_h_e _l_i_n_e _w_h_i_c_h _c_a_l_l_s _l_y_n_x_, _a_n_d _r_u_n _i_t_.  _T_h_i_s _c_a_u_s_e_s
  _l_y_n_x _t_o _c_o_n_t_i_n_o_u_s_l_y _s_p_a_w_n _i_t_s_e_l_f _t_o _v_i_e_w _t_h_e _o_b_j_e_c_t_.

  On the other hand, maybe you don't want to use lynx interactively, you
  just want to have it convert the text/html to text/plain, then you can
  use:

       text/html; lynx -dump %s | more

  Perhaps you wish to use lynx to view text/html files, and a pager on
  all other text formats, then you would use the following:

       text/html; lynx %s
       text/*; more

  This is the simplest form of a mailcap file.

  55..22..22..  AAddvvaanncceedd mmaaiillccaapp UUssaaggee

  55..22..22..11..  OOppttiioonnaall FFiieellddss

  In addition to the required content-type and view command fields, you
  can add semi-colon ';' separated fields to set flags and other
  options.  Mutt recognizes the following optional fields:

     ccooppiioouussoouuttppuutt
        This flag tells mutt that the command passes possibly large
        amounts of text on stdout.  This causes mutt to invoke a pager
        (either the internal pager or the external pager defined by the
        pager variable) on the output of the view command.  One could
        use this to replace the pipe to more in the lynx -dump example
        in the Basic section:

          text/html; lynx -dump %s ; copiousoutput

     This will cause lynx to format the text/html output as text/plain
     and mutt will use your standard pager to display the results.

     nneeeeddsstteerrmmiinnaall
        Mutt recognizes this flag, but does nothing with it as it
        assumes that an entry requires the terminal.  This flag is more
        useful for programs which don't run in a terminal such as
        Netscape and MosaicX.

     ccoommppoossee==<<ccoommmmaanndd>>
        Mutt recognizes this flag, but doesn't currently use it, instead
        calling the edit command to create messages instead.

     pprriinntt==<<ccoommmmaanndd>>
        This flag specifies the command to use to print a specific MIME
        type.  Mutt supports this from the attachment and compose menus.

     eeddiitt==<<ccoommmmaanndd>>
        This flag specifies the command to use to edit a specific MIME
        type.  Mutt supports this from the compose menu, and also uses
        it to compose new attachments.  Mutt will default to the defined
        editor for text attachmments.

     nnaammeetteemmppllaattee==<<tteemmppllaattee>>
        This field specifies the format for the file denoted by %s in
        the command fields.  Certain programs will require a certain
        file extension, for instance, to correctly view a file.  For
        instance, lynx will only interpret a file as text/html if the
        file ends in .html.  So, you would specify lynx as a text/html
        viewer with a line in the mailcap file like:

          text/html; lynx %s; nametemplate=%s.html

     tteesstt==<<ccoommmmaanndd>>
        This field specifies a command to run to test whether this
        mailcap entry should be used.  The command is defined with the
        command expansion rules defined in the next section.  If the
        command returns 0, then the test passed, and mutt uses this
        entry.  If the command returns non-zero, then the test failed,
        and mutt continues searching for the right entry.  _N_o_t_e_: _t_h_e
        _c_o_n_t_e_n_t_-_t_y_p_e _m_u_s_t _m_a_t_c_h _b_e_f_o_r_e _m_u_t_t _p_e_r_f_o_r_m_s _t_h_e _t_e_s_t_.  For
        example:

          text/html; netscape -remote 'openURL(%s)' ; test=RunningX
          text/html; lynx %s

     In this example, mutt will run the program RunningX which will
     return 0 if the X Window manager is running, and non-zero if it
     isn't.  If RunningX returns 0, then mutt will call netscape to dis-
     play the text/html object.  If RunningX doesn't return 0, then mutt
     will go on to the next entry and use lynx to display the text/html
     object.

  55..22..22..22..  SSeeaarrcchh OOrrddeerr

  When searching for an entry in the mailcap file, mutt will search for
  the most useful entry for its purpose.  For instance, if you are
  attempting to print an image/gif, and you have the following entries
  in your mailcap file, mutt will search for an entry with the print
  command:

       image/*;        xv %s
       image/gif;      ; print= anytopnm %s | pnmtops | lpr; \
                       nametemplate=%s.gif

  Mutt will skip the image/* entry and use the image/gif entry with the
  print command.

  In addition, you can use this with ``Autoview'' to denote two commands
  for viewing an attachment, one to be viewed automatically, the other
  to be viewed interactively from the attachment menu.  In addition, you
  can then use the test feature to determine which viewer to use
  interactively depending on your environment.

       text/html;      netscape -remote 'openURL(%s)' ; test=RunningX
       text/html;      lynx %s; nametemplate=%s.html
       text/html;      lynx -dump %s; nametemplate=%s.html; copiousoutput

  For ``Autoview'', mutt will choose the third entry because of the
  copiousoutput tag.  For interactive viewing, mutt will run the program
  RunningX to determine if it should use the first entry.  If the pro-
  gram returns non-zero, mutt will use the second entry for interactive
  viewing.

  55..22..22..33..  CCoommmmaanndd EExxppaannssiioonn

  The various commands defined in the mailcap files are passed to the
  /bin/sh shell using the system() function.  Before the command is
  passed to /bin/sh -c, it is parsed to expand various special
  parameters with information from mutt.  The keywords mutt expands are:
     %%ss As seen in the basic mailcap section, this variable is expanded
        to a filename specified by the calling program.  This file
        contains the body of the message to view/print/edit or where the
        composing program should place the results of composition.  In
        addition, the use of this keyword causes mutt to not pass the
        body of the message to the view/print/edit program on stdin.

     %%tt Mutt will expand %t to the text representation of the content
        type of the message in the same form as the first parameter of
        the mailcap definition line, ie text/html or image/gif.

     %%{{<<ppaarraammeetteerr>>}}
        Mutt will expand this to the value of the specified parameter
        from the Content-Type: line of the mail message.  For instance,
        if Your mail message contains:

          Content-Type: text/plain; charset=iso-8859-1

     then mutt will expand %{charset} to iso-8859-1.  The default meta-
     mail mailcap file uses this feature to test the charset to spawn an
     xterm using the right charset to view the message.

        This will be replaced by a %

  Mutt does not currently support the %F and %n keywords specified in
  RFC 1524.  The main purpose of these parameters is for multipart mes-
  sages, which is handled internally by mutt.

  55..22..33..  EExxaammppllee mmaaiillccaapp ffiilleess

  This mailcap file is fairly simple and standard:

  ______________________________________________________________________
  # I'm always running X :)
  video/*;        xanim %s > /dev/null
  image/*;        xv %s > /dev/null

  # I'm always running netscape (if my computer had more memory, maybe)
  text/html;      netscape -remote 'openURL(%s)'
  ______________________________________________________________________

  This mailcap file shows quite a number of examples:

  ______________________________________________________________________
  # Use xanim to view all videos   Xanim produces a header on startup,
  # send that to /dev/null so I don't see it
  video/*;        xanim %s > /dev/null

  # Send html to a running netscape by remote
  text/html;      netscape -remote 'openURL(%s)'; test=RunningNetscape

  # If I'm not running netscape but I am running X, start netscape on the
  # object
  text/html;      netscape %s; test=RunningX

  # Else use lynx to view it as text
  text/html;      lynx %s

  # This version would convert the text/html to text/plain
  text/html;      lynx -dump %s; copiousoutput

  # enriched.sh converts text/enriched to text/html and then uses
  # lynx -dump to convert it to text/plain
  text/enriched;  enriched.sh ; copiousoutput

  # I use enscript to print text in two columns to a page
  text/*;         more %s; print=enscript -2Gr %s

  # Netscape adds a flag to tell itself to view jpegs internally
  image/jpeg;xv %s; x-mozilla-flags=internal

  # Use xv to view images if I'm running X
  # In addition, this uses the \ to extend the line and set my editor
  # for images
  image/*;xv %s; test=RunningX; \
          edit=xpaint %s

  # Convert images to text using the netpbm tools
  image/*;  (anytopnm %s | pnmscale -xysize 80 46 | ppmtopgm | pgmtopbm |
  pbmtoascii -1x2 ) 2>&1 ; copiousoutput

  # Send excel spreadsheets to my NT box
  application/ms-excel; open.pl %s
  ______________________________________________________________________

  55..33..  UUssiinngg MMIIMMEE iinn MMuutttt

  There are three areas/menus in mutt which deal with MIME, they are the
  pager (while viewing a message), the attachment menu and the compose
  menu.

  55..33..11..  VViieewwiinngg MMIIMMEE mmeessssaaggeess iinn tthhee ppaaggeerr

  When you select a message from the index and view it in the pager,
  mutt decodes the message to a text representation.  Mutt internally
  supports a number of MIME types, including text/plain, text/enriched,
  message/rfc822, and message/news.  In addition, the export controlled
  version of mutt recognizes a variety of PGP MIME types, including
  PGP/MIME and application/pgp.

  Mutt will denote attachments with a couple lines describing them.
  These lines are of the form:

  [-- Attachment #1: Description --]
  [-- Type: text/plain, Encoding: 7bit, Size: 10000 --]

  Where the Description is the description or filename given for the
  attachment, and the Encoding is one of 7bit/8bit/quoted-print-
  able/base64/binary.

  If mutt cannot deal with a MIME type, it will display a message like:

       [-- image/gif is unsupported (use 'v' to view this part) --]

  55..33..22..  TThhee AAttttaacchhmmeenntt MMeennuu

  attachment menu for a message.  The attachment menu displays a list of
  the attachments in a message.  From the attachment menu, one can save,
  print, pipe, and view attachments.  You can view attachments as text,
  or view them using the mailcap viewer definition.  See the help on the
  attachment menu for more information.

  55..33..33..  TThhee CCoommppoossee MMeennuu

  The compose menu is the menu you see before you send a message.  It
  allows you to edit the recipient list, the subject, and other aspects
  of your message.  It also contains a list of the attachments of your
  message, including the main body.  From this menu, you can print,
  copy, filter, edit, compose, and rename an attachment, as well as
  modifying the attachment information, noteably the type, encoding and
  description.

  Attachments appear as follows:

       - 1  /tmp/mutt.pdxrs056.56360.3 [text/plain, 7bit, 1K] <no description>
         2  ~/src/mutt-0.74.tar.gz [applica/x-gunzip, base64, 359K] <no description>

  The '-' denotes that mutt will delete the file after sending the
  message.  It can be toggled with the toggle-unlink command (default:
  u).  The next field is the filename, which can be changed with the
  rename-file command (default: R).  The next field is the MIME content-
  type, and can be changed with the edit-type command (default: ^T).
  The next field is the encoding for the attachment, which allows a
  binary message to be encoded for transmission on 7bit links.  It can
  be changed with the edit-encoding command (default: ^E).  The next
  field is the size of the attachment, rounded to kilobytes or
  megabytes.  The final field is the description of the attachment, and
  can be changed with the edit-description command (default: d).

  55..44..  MMIIMMEE AAuuttoovviieeww

  In addition to explicitly telling mutt to view an attachment with the
  MIME viewer defined in the mailcap file, mutt has support for
  automatically viewing MIME attachments while in the pager.

  To work, you must define a viewer in the mailcap file which uses the
  copiousoutput option to denote that it is non-interactive.  Usually,
  you also use the entry to convert the attachment to a text
  representation which you can view in the pager.

  You then use the auto_view muttrc command to list the content-types
  that you wish to view automatically.

  For instance, if you set auto_view to:

       auto_view text/html text/enriched application/x-gunzip application/postscript image/gif application/x-tar-gz

  Mutt could use the following mailcap entries to automatically view
  attachmments of these types.

       text/html;      lynx -dump %s; copiousoutput; nametemplate=%s.html
       text/enriched;  enriched.sh  ; copiousoutput
       image/*;        anytopnm %s | pnmscale -xsize 80 -ysize 50 | ppmtopgm | pgmtopbm | pbmtoascii ; copiousoutput
       application/x-gunzip;   gzcat; copiousoutput
       application/x-tar-gz; gunzip -c %s | tar -tf - ; copiousoutput
       application/postscript; ps2ascii %s; copiousoutput

  66..  OOppttiioonnaall ffeeaattuurreess

  66..11..  PPOOPP33 SSuuppppoorrtt

  If Mutt was compiled with POP3 support (by running the _c_o_n_f_i_g_u_r_e
  script with the _-_-_e_n_a_b_l_e_-_p_o_p flag), it has the ability to fetch your
  mail from a remote server for local browsing.  When you invoke the
  _f_e_t_c_h_-_m_a_i_l function (default: G), Mutt attempts to connect to
  ``pop_host'' and authenticate by logging in as ``pop_user''.  After
  the connection is established, you will be prompted for your password
  on the remote system.

  Once you have been authenticated, Mutt will fetch all your new mail
  and place it in the local ``spoolfile''.  After this point, Mutt runs
  exactly as if the mail had always been local.

  66..22..  DDeelliivveerryy SSttaattuuss NNoottiiffiiccaattiioonn ((DDSSNN)) SSuuppppoorrtt

  RFC1894 defines a set of MIME content types for relaying information
  about the status of electronic mail messages.  These can be thought of
  as ``return receipts.''  Berkeley sendmail 8.7.x and 8.8.x currently
  has some command line options in which the mail client can make
  requests as to what type of status messages should be returned.

  To support this, there are two variables.  ``dsn_notify'' is used to
  request receipts for different results (such as failed message,
  message delivered, etc.).  ``dsn_return'' requests how much of your
  message should be returned with the receipt (headers or full message).
  Refer to the man page on sendmail for more details on DSN.

  77..  MMiisscceellllaannyy

  77..11..  CCooppyyrriigghhtt

  Mutt is Copyright (C) 1996,1997 Michael R. Elkins <me@cs.hmc.edu>

  This program is free software; you can redistribute it and/or modify
  it under the terms of the GNU General Public License as published by
  the Free Software Foundation; either version 2 of the License, or (at
  your option) any later version.

  This program is distributed in the hope that it will be useful, but
  WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  General Public License for more details.

  You should have received a copy of the GNU General Public License
  along with this program; if not, write to the Free Software
  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.

  77..22..  AAcckknnoowwlleeddggeemmeennttss

  Kari Hurrta <kari.hurtta@fmi.fi> co-developed the original MIME
  parsing code back in the ELM-ME days.

  The following people have been very helpful to the development of
  Mutt:

  Francois Berjon <Francois.Berjon@aar.alcatel-alsthom.fr>,
  Aric Blumer <aric@fore.com>,
  John Capo <jc@irbs.com>,
  Liviu Daia <daia@stoilow.imar.ro>,
  David DeSimone <fox@convex.hp.com>,
  Nickolay N. Dudorov <nnd@wint.itfs.nsk.su>,
  Michael Finken <finken@conware.de>,
  Sven Guckes <guckes@math.fu-berlin.de>,
  Mark Holloman <holloman@nando.net>,
  Andreas Holzmann <holzmann@fmi.uni-passau.de>,
  David Jeske <jeske@igcom.net>,
  Christophe Kalt <kalt@hugo.int-evry.fr>,
  Felix von Leitner (a.k.a ``Fefe'') <leitner@math.fu-berlin.de>,
  Brandon Long <blong@uiuc.edu>,
  Lars Marowsky-Bree <lmb@pointer.in-minden.de>,
  Thomas ``Mike'' Michlmayr <mike@cosy.sbg.ac.at>,
  David O'Brien <obrien@Nuxi.cs.ucdavis.edu>,
  Clint Olsen <olsenc@ichips.intel.com>,
  Park Myeong Seok <pms@romance.kaist.ac.kr>,
  Thomas Parmelan <tom@ankh.fr.eu.org>,
  Ollivier Robert <roberto@keltia.freenix.fr>,
  Allain Thivillon <Allain.Thivillon@alma.fr>,
  Ken Weinert <kenw@ihs.com>

  77..33..  AAbboouutt tthhiiss ddooccuummeenntt

  This document was written in SGML, and then rendered using the
  LinuxDoc-SGML package.  For more information, see the LinuxDoc-SGML
  Home Page <http://www.informatik.tu-muenchen.de/~schwarz/linuxdoc-
  sgml>.

