Rocco Rutte:
authorpdmef <pdmef@e385b8ad-14ed-0310-8656-cc95a2468c6d>
Thu, 25 Aug 2005 18:32:33 +0000 (18:32 +0000)
committerpdmef <pdmef@e385b8ad-14ed-0310-8656-cc95a2468c6d>
Thu, 25 Aug 2005 18:32:33 +0000 (18:32 +0000)
- start to sanitize variable for set keyword, i.e. start to make access table-based; first function added: opt_to_string (also this is a start to centralize things instead of duplicating fractions)
- as a consequence of option handling cleanup, in addition to environment variables now option values are expanded, too
- include patch #581 to add reminder feature for possibly forgotten files to attach
- update syntax file, i.e. remove synonyms by update-config.pl
- use bc(1) in ./do-commit.sh to guess the revision number commits will lead to; I really hope this is the last time I need to deal with this ;-)

git-svn-id: svn://svn.berlios.de/mutt-ng/trunk@440 e385b8ad-14ed-0310-8656-cc95a2468c6d

15 files changed:
UPGRADING
VERSION.date
attach.c
attach.h
buffer.c
contrib/muttngrc.vim
do-commit.sh
doc/manual.sgml.head
doc/manual.txt
globals.h
init.c
init.h
mutt.h
protos.h
send.c

index b32ff29..84a6002 100644 (file)
--- a/UPGRADING
+++ b/UPGRADING
@@ -10,6 +10,15 @@ This document is not the place for verbose documentation; it only offers
 the necessary keywords to look them up in the manual, ChangeLog or other
 sources of information.
 
+2005-08-25:
+
+  Instead of only supporting to expand environment variables via
+  $NAME, it's now possible to query for all variables, too, e.g.
+  'set imap_home_namespace = $folder'.
+
+  The $abort_noattach and $attach_remind_regexp options have been
+  added to remind users of possibly forgotten attachments.
+
 2005-08-23:
 
   The $delete_space option has been added.
index db380c9..534a21e 100644 (file)
@@ -1 +1 @@
-20050825
+440
index a644784..0b97d5a 100644 (file)
--- a/attach.c
+++ b/attach.c
@@ -1013,3 +1013,30 @@ int mutt_print_attachment (FILE * fp, BODY * a)
     return 0;
   }
 }
+
+int mutt_attach_check (HEADER* hdr) {
+  int found = 0;
+  char buf[LONG_STRING];
+  char *p = NULL;
+  FILE* fp = NULL;
+  regmatch_t pmatch[1];
+
+  if (!hdr || !hdr->content || !((regex_t*) AttachRemindRegexp.rx) ||
+      (fp = safe_fopen (hdr->content->filename, "r")) == NULL)
+    return (0);
+
+  while (!found && fgets (buf, sizeof (buf), fp)) {
+    p = buf;
+    while (p && *p) {
+      if (regexec ((regex_t*) AttachRemindRegexp.rx, p, 1,
+                  pmatch, 0) == 0) {
+        found = 1;
+        break;
+      }
+      p++;
+    }
+  }
+  fclose (fp);
+
+  return (found);
+}
index f34816a..8c4809c 100644 (file)
--- a/attach.h
+++ b/attach.h
@@ -34,4 +34,8 @@ int mutt_edit_attachment (BODY *);
 int mutt_compose_attachment (BODY * a);
 int mutt_get_tmp_attachment (BODY *);
 
+/* this checks whether at least one text line matches
+ * AttachRemindRegexp and returns 1 if so and 0 otherwise */
+int mutt_attach_check (HEADER* hdr);
+
 #endif /* !_MUTT_ATTACH_H */
index e8c638f..68c1374 100644 (file)
--- a/buffer.c
+++ b/buffer.c
@@ -257,8 +257,12 @@ int mutt_extract_token (BUFFER * dest, BUFFER * tok, int flags)
         var = str_substrdup (tok->dptr, pc);
         tok->dptr = pc;
       }
-      if (var && (env = getenv (var)))
-        mutt_buffer_addstr (dest, env);
+      if (var) {
+        char tmp[STRING];
+        if ((env = getenv (var)) || 
+            (mutt_option_value (var, tmp, sizeof (tmp)) && (env = tmp)))
+          mutt_buffer_addstr (dest, env);
+      }
       mem_free (&var);
     }
     else
index 3732745..0640154 100644 (file)
@@ -61,15 +61,15 @@ syn match   muttrcKeyName   contained "<\(BackSpace\|Delete\|Down\|End\|Enter\|Esc
 syn keyword muttrcVarBool      contained allow_8bit allow_ansi arrow_cursor ascii_chars askbcc askcc attach_split
 syn keyword muttrcVarBool      contained auto_tag autoedit beep beep_new bounce_delivered check_new collapse_unread
 syn keyword muttrcVarBool      contained confirmappend confirmcreate delete_untag digest_collapse duplicate_threads
-syn keyword muttrcVarBool      contained edit_hdrs edit_headers encode_from envelope_from fast_reply fcc_attach
-syn keyword muttrcVarBool      contained fcc_clear followup_to force_name forw_decode forw_decrypt forw_quote
+syn keyword muttrcVarBool      contained edit_headers edit_headers encode_from envelope_from fast_reply fcc_attach
+syn keyword muttrcVarBool      contained fcc_clear followup_to force_name forward_decode forward_decrypt forward_quote
 syn keyword muttrcVarBool      contained forward_decode forward_decrypt forward_quote hdrs header help hidden_host
 syn keyword muttrcVarBool      contained hide_limited hide_missing hide_top_limited hide_top_missing ignore_list_reply_to
 syn keyword muttrcVarBool      contained imap_force_ssl imap_list_subscribed imap_passive imap_peek imap_servernoise
 syn keyword muttrcVarBool      contained implicit_autoview keep_flagged mailcap_sanitize maildir_trash mark_old markers
-syn keyword muttrcVarBool      contained menu_scroll meta_key metoo mh_purge mime_forward_decode pager_stop pgp_autoencrypt
-syn keyword muttrcVarBool      contained pgp_autosign pgp_ignore_subkeys pgp_long_ids pgp_replyencrypt pgp_replysign
-syn keyword muttrcVarBool      contained pgp_replysignencrypted pgp_retainable_sigs pgp_show_unusable pgp_strict_enc
+syn keyword muttrcVarBool      contained menu_scroll meta_key metoo mh_purge mime_forward_decode pager_stop crypt_autoencrypt
+syn keyword muttrcVarBool      contained crypt_autosign pgp_ignore_subkeys pgp_long_ids crypt_replyencrypt crypt_replysign
+syn keyword muttrcVarBool      contained crypt_replysignencrypted pgp_retainable_sigs pgp_show_unusable pgp_strict_enc
 syn keyword muttrcVarBool      contained pipe_decode pipe_split pop_auth_try_all pop_last print_decode print_split
 syn keyword muttrcVarBool      contained prompt_after read_only reply_self resolve reverse_alias reverse_name
 syn keyword muttrcVarBool      contained reverse_realname rfc2047_parameters save_address save_empty save_name score
@@ -125,14 +125,14 @@ syn keyword muttrcVarBool contained invthread_received invtilde invuncollapse_ju
 syn keyword muttrcVarBool      contained invuse_ipv6 invuser_agent invwait_key invweed invwrap_search invwrite_bcc
 
 " start mutt-ng specific keywords
-syn keyword muttrcVarBool      contained ask_follow_up ask_x_comment_to maildir_header_cache_verify nntp_load_description
-syn keyword muttrcVarBool      contained quote_empty quote_quoted save_unsubscribed shorten_hierarchy show_new_news
-syn keyword muttrcVarBool      contained show_only_unread sidebar_visible strict_mime stuff_quoted trash x_comment_to
+syn keyword muttrcVarBool      contained ask_follow_up nntp_ask_x_comment_to maildir_header_cache_verify nntp_load_description
+syn keyword muttrcVarBool      contained quote_empty quote_quoted nntp_save_unsubscribed sidebar_shorten_hierarchy nntp_show_new_news
+syn keyword muttrcVarBool      contained nntp_show_only_unread sidebar_visible strict_mime stuff_quoted trash nntp_x_comment_to
 syn keyword muttrcVarBool      contained xterm_set_titles
 " end mutt-ng specific keywords
 
 syn keyword muttrcVarQuad      contained abort_nosubject abort_unmodified copy delete honor_followup_to include mime_forward
-syn keyword muttrcVarQuad      contained mime_forward_rest mime_fwd move pgp_create_traditional pgp_verify_sig pop_delete
+syn keyword muttrcVarQuad      contained mime_forward_rest mime_forward move pgp_autoinline crypt_verify_sig pop_delete
 syn keyword muttrcVarQuad      contained pop_reconnect postpone print quit recall reply_to ssl_starttls
 
 syn keyword muttrcVarQuad      contained noabort_nosubject noabort_unmodified nocopy nodelete nohonor_followup_to
@@ -146,37 +146,37 @@ syn keyword muttrcVarQuad contained invpgp_create_traditional invpgp_verify_sig
 syn keyword muttrcVarQuad      contained invpostpone invprint invquit invrecall invreply_to invssl_starttls
 
 " start mutt-ng specific keywords
-syn keyword muttrcVarQuad      contained catchup_newsgroup followup_to_poster imap_reconnect nntp_reconnect post_moderated
+syn keyword muttrcVarQuad      contained nntp_catchup nntp_followup_to_poster imap_reconnect nntp_reconnect nntp_post_moderated
 " end mutt-ng specific keywords
 
 syn keyword muttrcVarNum       contained connect_timeout history imap_keepalive mail_check pager_context pager_index_lines
-syn keyword muttrcVarNum       contained pgp_timeout pop_checkinterval read_inc score_threshold_delete score_threshold_flag
+syn keyword muttrcVarNum       contained pgp_timeout pop_mail_check read_inc score_threshold_delete score_threshold_flag
 syn keyword muttrcVarNum       contained score_threshold_read sendmail_wait sleep_time timeout wrapmargin write_inc
 
 " start mutt-ng specific keywords
-syn keyword muttrcVarNum        contained max_line_length nntp_context nntp_poll sidebar_width smtp_port umask
+syn keyword muttrcVarNum        contained max_line_length nntp_context nntp_mail_check sidebar_width smtp_port umask
 " end mutt-ng specific keywords
 
 syn keyword muttrcVarStr       contained alias_file alias_format alternates attach_format attach_sep attribution certificate_file
 syn keyword muttrcVarStr       contained charset compose_format date_format default_hook display_filter dotlock_program dsn_notify
-syn keyword muttrcVarStr       contained dsn_return editor entropy_file escape folder folder_format forw_format forward_format
-syn keyword muttrcVarStr       contained from gecos_mask hdr_format hostname imap_authenticators imap_delim_chars
-syn keyword muttrcVarStr       contained imap_home_namespace imap_pass imap_user indent_str indent_string index_format ispell
+syn keyword muttrcVarStr       contained dsn_return editor entropy_file escape folder folder_format forward_format forward_format
+syn keyword muttrcVarStr       contained from gecos_mask index_format hostname imap_authenticators imap_delim_chars
+syn keyword muttrcVarStr       contained imap_home_namespace imap_pass imap_user indent_string indent_string index_format ispell
 syn keyword muttrcVarStr       contained locale mailcap_path mask mbox mbox_type message_format mh_seq_flagged mh_seq_replied
-syn keyword muttrcVarStr       contained mh_seq_unseen mix_entry_format mixmaster msg_format pager pager_format
+syn keyword muttrcVarStr       contained mh_seq_unseen mix_entry_format mixmaster message_format pager pager_format
 syn keyword muttrcVarStr       contained pgp_clearsign_command pgp_decode_command pgp_decrypt_command pgp_encrypt_only_command
 syn keyword muttrcVarStr       contained pgp_encrypt_sign_command pgp_entry_format pgp_export_command pgp_getkeys_command
 syn keyword muttrcVarStr       contained pgp_good_sign pgp_import_command pgp_list_pubring_command pgp_list_secring_command
 syn keyword muttrcVarStr       contained pgp_sign_as pgp_sign_command pgp_sort_keys pgp_verify_command pgp_verify_key_command
-syn keyword muttrcVarStr       contained pipe_sep pop_authenticators pop_host pop_pass pop_user post_indent_str post_indent_string
-syn keyword muttrcVarStr       contained postponed preconnect print_cmd print_command query_command quote_regexp realname record
+syn keyword muttrcVarStr       contained pipe_sep pop_authenticators pop_host pop_pass pop_user post_indent_string post_indent_string
+syn keyword muttrcVarStr       contained postponed preconnect print_command print_command query_command quote_regexp realname record
 syn keyword muttrcVarStr       contained reply_regexp send_charset sendmail shell signature simple_search smileys sort sort_alias
 syn keyword muttrcVarStr       contained sort_aux sort_browser spoolfile status_chars status_format tmpdir to_chars tunnel visual
 
 " start mutt-ng specific keywords
-syn keyword muttrcVarStr       contained assumed_charset file_charset group_index_format header_cache indent_string inews
-syn keyword muttrcVarStr       contained msgid_format nntp_pass news_cache_dir news_server newsrc nntp_user operating_system
-syn keyword muttrcVarStr       contained sidebar_delim signoff_string smtp_auth_password smtp_auth_username smtp_host xterm_icon
+syn keyword muttrcVarStr       contained assumed_charset file_charset nntp_group_index_format header_cache indent_stringing nntp_inews
+syn keyword muttrcVarStr       contained msgid_format nntp_pass nntp_cache_dir nntp_host nntp_newsrc nntp_user operating_system
+syn keyword muttrcVarStr       contained sidebar_delim signoff_string smtp_pass smtp_user smtp_host xterm_icon
 syn keyword muttrcVarStr       contained xterm_title
 " end mutt-ng specific keywords
 
index 795ce32..4e26a3d 100755 (executable)
@@ -1,3 +1,5 @@
 #!/bin/sh
-date "+%Y%m%d" > ./VERSION.date
+svn update
+CURREV=`svn info | grep '^Revision' | cut -d : -f 2`
+echo "`echo $CURREV+1 | bc`" > ./VERSION.date
 svn commit "$@"
index 6689838..39bc7a1 100644 (file)
@@ -1252,6 +1252,12 @@ example,
 set record=+sent_on_$HOSTNAME
 </verb></tscreen>
 
+This also applies for all configuration variables known to mutt-ng,
+for example
+<tscreen><verb>
+set imap_home_namespace = $folder
+</verb></tscreen>
+
 The commands understood by mutt are explained in the next paragraphs.
 For a complete list, see the <ref id="commands" name="command reference">.
 
index f91d763..621302b 100644 (file)
           +\bo c\bcl\ble\bea\bar\br-\b-f\bfl\bla\bag\bg (default: W)
 
        Furthermore, the following flags reflect who the message is addressed to.  They
-       can be customized with the _\b$_\bt_\bo_\b__\bc_\bh_\ba_\br_\bs (section 7.4.325  , page 165) variable.
+       can be customized with the _\b$_\bt_\bo_\b__\bc_\bh_\ba_\br_\bs (section 7.4.327  , page 167) variable.
 
              +
                    message is to you and you only
        letter again for bold or the letter, backspace, ``_'' for denoting underline.
        Mutt-ng will attempt to display these in bold and underline respectively if
        your terminal supports them. If not, you can use the bold and underline _\bc_\bo_\bl_\bo_\br
-       (section 3.8  , page 27) objects to specify a color or mono attribute for them.
+       (section 3.8  , page 28) objects to specify a color or mono attribute for them.
 
        Additionally, the internal pager supports the ANSI escape sequences for charac-
        ter attributes.  Mutt-ng translates them into the correct color and character
        The Mutt Next Generation E-Mail Client                                       11
 
        Mutt-ng uses these attributes for handling text/enriched messages, and they can
-       also be used by an external _\ba_\bu_\bt_\bo_\bv_\bi_\be_\bw (section 5.4  , page 75) script for high-
+       also be used by an external _\ba_\bu_\bt_\bo_\bv_\bi_\be_\bw (section 5.4  , page 76) script for high-
        lighting purposes.  N\bNo\bot\bte\be:\b: If you change the colors for your display, for exam-
        ple by changing the color associated with color2 for your xterm, then that
        color will be used instead of green.
 
        _\b2_\b._\b5_\b._\b3  _\bT_\bh_\br_\be_\ba_\bd_\be_\bd _\bM_\bo_\bd_\be
 
-       When the mailbox is _\bs_\bo_\br_\bt_\be_\bd (section 7.4.293  , page 156) by _\bt_\bh_\br_\be_\ba_\bd_\bs, there are
+       When the mailbox is _\bs_\bo_\br_\bt_\be_\bd (section 7.4.295  , page 157) by _\bt_\bh_\br_\be_\ba_\bd_\bs, there are
        a few additional functions available in the _\bi_\bn_\bd_\be_\bx and _\bp_\ba_\bg_\be_\br modes.
 
             ^D      delete-thread           delete all messages in the current thread
        N\bNo\bot\bte\be:\b: Collapsing a thread displays only the first message in the thread and
        hides the others. This is useful when threads contain so many messages that you
        can only see a handful of threads on the screen. See %M in _\b$_\bi_\bn_\bd_\be_\bx_\b__\bf_\bo_\br_\bm_\ba_\bt (sec-
-       tion 7.4.111  , page 111).  For example, you could use "%?M?(#%03M)&(%4l)?" in
-       _\b$_\bi_\bn_\bd_\be_\bx_\b__\bf_\bo_\br_\bm_\ba_\bt (section 7.4.111  , page 111) to optionally display the number of
+       tion 7.4.113  , page 113).  For example, you could use "%?M?(#%03M)&(%4l)?" in
+       _\b$_\bi_\bn_\bd_\be_\bx_\b__\bf_\bo_\br_\bm_\ba_\bt (section 7.4.113  , page 113) to optionally display the number of
        hidden messages if the thread is collapsed.
 
-       See also: _\b$_\bs_\bt_\br_\bi_\bc_\bt_\b__\bt_\bh_\br_\be_\ba_\bd_\bs (section 7.4.314  , page 163).
+       See also: _\b$_\bs_\bt_\br_\bi_\bc_\bt_\b__\bt_\bh_\br_\be_\ba_\bd_\bs (section 7.4.316  , page 165).
 
        _\b2_\b._\b5_\b._\b4  _\bM_\bi_\bs_\bc_\be_\bl_\bl_\ba_\bn_\be_\bo_\bu_\bs _\bF_\bu_\bn_\bc_\bt_\bi_\bo_\bn_\bs
 
 
        Creates a new alias based upon the current message (or prompts for a new one).
        Once editing is complete, an _\ba_\bl_\bi_\ba_\bs (section 3.3  , page 23) command is added to
-       the file specified by the _\b$_\ba_\bl_\bi_\ba_\bs_\b__\bf_\bi_\bl_\be (section 7.4.3  , page 86) variable for
-       future use. N\bNo\bot\bte\be:\b: Specifying an _\b$_\ba_\bl_\bi_\ba_\bs_\b__\bf_\bi_\bl_\be (section 7.4.3  , page 86) does not
+       the file specified by the _\b$_\ba_\bl_\bi_\ba_\bs_\b__\bf_\bi_\bl_\be (section 7.4.4  , page 87) variable for
+       future use. N\bNo\bot\bte\be:\b: Specifying an _\b$_\ba_\bl_\bi_\ba_\bs_\b__\bf_\bi_\bl_\be (section 7.4.4  , page 87) does not
        add the aliases specified there-in, you must also _\bs_\bo_\bu_\br_\bc_\be (section 3.28  , page
-       42) the file.
+       43) the file.
 
        c\bch\bhe\bec\bck\bk-\b-t\btr\bra\bad\bdi\bit\bti\bio\bon\bna\bal\bl-\b-p\bpg\bgp\bp
         (default: ESC P)
        lost upon changing folders.
 
        Note that this command is also available on the _\bc_\bo_\bm_\bp_\bo_\bs_\be _\bm_\be_\bn_\bu (section 5.1.3  ,
-       page 68).  There, it's used to fine-tune the properties of attachments you are
+       page 69).  There, it's used to fine-tune the properties of attachments you are
        going to send.
 
        e\ben\bnt\bte\ber\br-\b-c\bco\bom\bmm\bma\ban\bnd\bd
        Reply to the current or tagged message(s) by extracting any addresses which
        match the regular expressions given by the _\bl_\bi_\bs_\bt_\bs _\bo_\br _\bs_\bu_\bb_\bs_\bc_\br_\bi_\bb_\be (section 3.12  ,
        page 33) commands, but also honor any Mail-Followup-To header(s) if the
-       _\b$_\bh_\bo_\bn_\bo_\br_\b__\bf_\bo_\bl_\bl_\bo_\bw_\bu_\bp_\b__\bt_\bo (section 7.4.89  , page 106) configuration variable is set.
+       _\b$_\bh_\bo_\bn_\bo_\br_\b__\bf_\bo_\bl_\bl_\bo_\bw_\bu_\bp_\b__\bt_\bo (section 7.4.91  , page 108) configuration variable is set.
        Using this when replying to messages posted to mailing lists helps avoid dupli-
        cate copies being sent to the author of the message you are replying to.
 
         (default: |)
 
        Asks for an external Unix command and pipes the current or tagged message(s) to
-       it.  The variables _\b$_\bp_\bi_\bp_\be_\b__\bd_\be_\bc_\bo_\bd_\be (section 7.4.202  , page 135), _\b$_\bp_\bi_\bp_\be_\b__\bs_\bp_\bl_\bi_\bt
-       (section 7.4.204  , page 135), _\b$_\bp_\bi_\bp_\be_\b__\bs_\be_\bp (section 7.4.203  , page 135) and
-       _\b$_\bw_\ba_\bi_\bt_\b__\bk_\be_\by (section 7.4.337  , page 168) control the exact behavior of this
+       it.  The variables _\b$_\bp_\bi_\bp_\be_\b__\bd_\be_\bc_\bo_\bd_\be (section 7.4.204  , page 136), _\b$_\bp_\bi_\bp_\be_\b__\bs_\bp_\bl_\bi_\bt
+       (section 7.4.206  , page 137), _\b$_\bp_\bi_\bp_\be_\b__\bs_\be_\bp (section 7.4.205  , page 137) and
+       _\b$_\bw_\ba_\bi_\bt_\b__\bk_\be_\by (section 7.4.339  , page 169) control the exact behavior of this
        function.
 
        r\bre\bes\bse\ben\bnd\bd-\b-m\bme\bes\bss\bsa\bag\bge\be
        message.  This function is best described as "recall from arbitrary folders".
        It can conveniently be used to forward MIME messages while preserving the orig-
        inal mail structure. Note that the amount of headers included here depends on
-       the value of the _\b$_\bw_\be_\be_\bd (section 7.4.338  , page 168) variable.
+       the value of the _\b$_\bw_\be_\be_\bd (section 7.4.340  , page 170) variable.
 
        This function is also available from the attachment menu. You can use this to
        easily resend a message which was included with a bounce message as a mes-
         (default: !)
 
        Asks for an external Unix command and executes it.  The _\b$_\bw_\ba_\bi_\bt_\b__\bk_\be_\by (section
-       7.4.337  , page 168) can be used to control whether Mutt-ng will wait for a key
+       7.4.339  , page 169) can be used to control whether Mutt-ng will wait for a key
        to be pressed when the command returns (presumably to let the user read the
        output of the command), based on the return status of the named command.
 
        t\bto\bog\bgg\bgl\ble\be-\b-q\bqu\buo\bot\bte\bed\bd
         (default: T)
 
-       The _\bp_\ba_\bg_\be_\br uses the _\b$_\bq_\bu_\bo_\bt_\be_\b__\br_\be_\bg_\be_\bx_\bp (section 7.4.227  , page 140) variable to
+       The _\bp_\ba_\bg_\be_\br uses the _\b$_\bq_\bu_\bo_\bt_\be_\b__\br_\be_\bg_\be_\bx_\bp (section 7.4.229  , page 142) variable to
        detect quoted text when displaying the body of the message.  This function tog-
        gles 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
        sages from. You can now tag messages in that folder and they will be attached
        to the message you are sending. Note that certain operations like composing a
        new mail, replying, forwarding, etc. are not permitted when you are in that
-       folder. The %r in _\b$_\bs_\bt_\ba_\bt_\bu_\bs_\b__\bf_\bo_\br_\bm_\ba_\bt (section 7.4.310  , page 160) will change to a
+       folder. The %r in _\b$_\bs_\bt_\ba_\bt_\bu_\bs_\b__\bf_\bo_\br_\bm_\ba_\bt (section 7.4.312  , page 162) will change to a
        'A' to indicate that you are in attach-message mode.
 
        The Mutt Next Generation E-Mail Client                                       16
        field, Mutt-ng will not generate a _\bR_\be_\bf_\be_\br_\be_\bn_\bc_\be_\bs_\b: field, which allows you to cre-
        ate a new message thread.
 
-       Also see _\be_\bd_\bi_\bt_\b__\bh_\be_\ba_\bd_\be_\br_\bs (section 7.4.55  , page 98).
+       Also see _\be_\bd_\bi_\bt_\b__\bh_\be_\ba_\bd_\be_\br_\bs (section 7.4.57  , page 100).
 
        _\b2_\b._\b6_\b._\b4  _\bU_\bs_\bi_\bn_\bg _\bM_\bu_\bt_\bt_\b-_\bn_\bg _\bw_\bi_\bt_\bh _\bP_\bG_\bP
 
        Pgp: [ E | S | S_\b<_\bi_\bd_\b> ]
 
        ``E'' encrypts, ``S'' signs and ``S<id>'' signs with the given key, setting
-       _\b$_\bp_\bg_\bp_\b__\bs_\bi_\bg_\bn_\b__\ba_\bs (section 7.4.194  , page 133) permanently.
+       _\b$_\bp_\bg_\bp_\b__\bs_\bi_\bg_\bn_\b__\ba_\bs (section 7.4.196  , page 135) permanently.
 
        If you have told mutt to PGP encrypt a message, it will guide you through a key
        selection process when you try to send the message.  Mutt-ng will not ask you
        encrypted using the selected public keys, and sent out.
 
        Most fields of the entries in the key selection menu (see also _\b$_\bp_\bg_\bp_\b__\be_\bn_\bt_\br_\by_\b__\bf_\bo_\br_\b-
-       _\bm_\ba_\bt (section 7.4.181  , page 130)) have obvious meanings.  But some explana-
+       _\bm_\ba_\bt (section 7.4.183  , page 132)) have obvious meanings.  But some explana-
        tions on the capabilities, flags, and validity fields are in order.
 
        The flags sequence (%f) will expand to one of the following flags:
        leave the menu, or accept them pressing (by default) the Return key.
 
        Note that different remailers do have different capabilities, indicated in the
-       %c entry of the remailer menu lines (see _\b$_\bm_\bi_\bx_\b__\be_\bn_\bt_\br_\by_\b__\bf_\bo_\br_\bm_\ba_\bt (section 7.4.141  ,
-       page 119)).  Most important is the ``middleman'' capability, indicated by a
+       %c entry of the remailer menu lines (see _\b$_\bm_\bi_\bx_\b__\be_\bn_\bt_\br_\by_\b__\bf_\bo_\br_\bm_\ba_\bt (section 7.4.143  ,
+       page 121)).  Most important is the ``middleman'' capability, indicated by a
        capital ``M'': This means that the remailer in question cannot be used as the
        final element of a chain, but will only forward messages to other mixmaster
        remailers.  For details on the other capabilities, please have a look at the
        At times it is desirable to delay sending a message that you have already begun
        to compose.  When the _\bp_\bo_\bs_\bt_\bp_\bo_\bn_\be_\b-_\bm_\be_\bs_\bs_\ba_\bg_\be function is used in the _\bc_\bo_\bm_\bp_\bo_\bs_\be menu,
        the body of your message and attachments are stored in the mailbox specified by
-       the _\b$_\bp_\bo_\bs_\bt_\bp_\bo_\bn_\be_\bd (section 7.4.216  , page 138) variable.  This means that you can
+       the _\b$_\bp_\bo_\bs_\bt_\bp_\bo_\bn_\be_\bd (section 7.4.218  , page 140) variable.  This means that you can
        recall the message even if you exit Mutt-ng and then restart it at a later
        time.
 
        be in the same folder with the message you replied to for the status of the
        message to be updated.
 
-       See also the _\b$_\bp_\bo_\bs_\bt_\bp_\bo_\bn_\be (section 7.4.215  , page 138) quad-option.
+       See also the _\b$_\bp_\bo_\bs_\bt_\bp_\bo_\bn_\be (section 7.4.217  , page 139) quad-option.
 
        _\b3_\b.  _\bC_\bo_\bn_\bf_\bi_\bg_\bu_\br_\ba_\bt_\bi_\bo_\bn
 
        out of the box, it is often desirable to tailor Mutt-ng to suit your own
        tastes. When Mutt-ng is first invoked, it will attempt to read the ``system''
        configuration file (defaults set by your local system administrator), unless
-       the ``-n'' _\bc_\bo_\bm_\bm_\ba_\bn_\bd _\bl_\bi_\bn_\be (section 7.1  , page 79) option is specified.  This
+       the ``-n'' _\bc_\bo_\bm_\bm_\ba_\bn_\bd _\bl_\bi_\bn_\be (section 7.1  , page 80) option is specified.  This
        file is typically /usr/local/share/muttng/Muttngrc or /etc/Muttngrc, Mutt-ng
        users will find this file in /usr/local/share/muttng/Muttrc or /etc/Muttngrc.
        Mutt will next look for a file named .muttrc in your home directory, Mutt-ng
        has a subdirectory named .mutt, mutt try to load a file named .muttng/muttngrc.
 
        .muttrc (or .muttngrc for Mutt-ng) is the file where you will usually place
-       your _\bc_\bo_\bm_\bm_\ba_\bn_\bd_\bs (section 7.3  , page 82) to configure Mutt-ng.
+       your _\bc_\bo_\bm_\bm_\ba_\bn_\bd_\bs (section 7.3  , page 83) to configure Mutt-ng.
 
        _\b3_\b._\b2  _\bS_\by_\bn_\bt_\ba_\bx _\bo_\bf _\bI_\bn_\bi_\bt_\bi_\ba_\bl_\bi_\bz_\ba_\bt_\bi_\bo_\bn _\bF_\bi_\bl_\be_\bs
 
        An initialization file consists of a series of _\bc_\bo_\bm_\bm_\ba_\bn_\bd_\bs (section 7.3  , page
-       82).  Each line of the file may contain one or more commands.  When multiple
+       83).  Each line of the file may contain one or more commands.  When multiple
        commands are used, they must be separated by a semicolon (;).
 
             set realname='Mutt-ng user' ; ignore x-
 
             set record=+sent_on_$HOSTNAME
 
+       This also applies for all configuration variables known to mutt-ng, for example
+
+            set imap_home_namespace = $folder
+
        The commands understood by mutt are explained in the next paragraphs.  For a
-       complete list, see the _\bc_\bo_\bm_\bm_\ba_\bn_\bd _\br_\be_\bf_\be_\br_\be_\bn_\bc_\be (section 7.3  , page 82).
+       complete list, see the _\bc_\bo_\bm_\bm_\ba_\bn_\bd _\br_\be_\bf_\be_\br_\be_\bn_\bc_\be (section 7.3  , page 83).
 
        _\b3_\b._\b3  _\bD_\be_\bf_\bi_\bn_\bi_\bn_\bg_\b/_\bU_\bs_\bi_\bn_\bg _\ba_\bl_\bi_\ba_\bs_\be_\bs
 
 
        Unlike other mailers, Mutt-ng doesn't require aliases to be defined in a spe-
        cial file.  The alias command can appear anywhere in a configuration file, as
-       long as this file is _\bs_\bo_\bu_\br_\bc_\be_\bd (section 3.28  , page 42).  Consequently, you can
+       long as this file is _\bs_\bo_\bu_\br_\bc_\be_\bd (section 3.28  , page 43).  Consequently, you can
        have multiple alias files, or you can have all aliases defined in your muttrc.
 
        On the other hand, the _\bc_\br_\be_\ba_\bt_\be_\b-_\ba_\bl_\bi_\ba_\bs (section 2.5.4  , page 11) function can use
-       only one file, the one pointed to by the _\b$_\ba_\bl_\bi_\ba_\bs_\b__\bf_\bi_\bl_\be (section 7.4.3  , page 86)
+       only one file, the one pointed to by the _\b$_\ba_\bl_\bi_\ba_\bs_\b__\bf_\bi_\bl_\be (section 7.4.4  , page 87)
        variable (which is ~/.muttrc by default). This file is not special either, in
        the sense that Mutt-ng will happily append aliases to any file, but in order
        for the new aliases to take effect you need to explicitly _\bs_\bo_\bu_\br_\bc_\be (section
-       3.28  , page 42) this file too.
-
-       For example:
+       3.28  , page 43) this file too.
 
        The Mutt Next Generation E-Mail Client                                       24
 
+       For example:
+
             source /usr/local/share/Mutt-ng.aliases
             source ~/.mail_aliases
             set alias_file=~/.mail_aliases
        To use aliases, you merely use the alias at any place in mutt where mutt
        prompts for addresses, such as the _\bT_\bo_\b: or _\bC_\bc_\b: prompt.  You can also enter
        aliases in your editor at the appropriate headers if you have the _\b$_\be_\bd_\bi_\bt_\b__\bh_\be_\ba_\bd_\be_\br_\bs
-       (section 7.4.55  , page 98) variable set.
+       (section 7.4.57  , page 100) variable set.
 
        In addition, at the various address prompts, you can use the tab character to
        expand a partial alias to the full alias.  If there are multiple matches, mutt
                    The attachment menu is used to access the attachments on received
                    messages.
 
-             browser
-                   The browser is used for both browsing the local directory
-
        The Mutt Next Generation E-Mail Client                                       25
 
-                   structure, and for listing all of your incoming mailboxes.
+             browser
+                   The browser is used for both browsing the local directory struc-
+                   ture, and for listing all of your incoming mailboxes.
 
              editor
                    The editor is the line-based editor the user enters text data.
        _\bk_\be_\by does not need to be enclosed in quotes unless it contains a space (`` '').
 
        _\bf_\bu_\bn_\bc_\bt_\bi_\bo_\bn specifies which action to take when _\bk_\be_\by is pressed.  For a complete
-       list of functions, see the _\br_\be_\bf_\be_\br_\be_\bn_\bc_\be (section 7.5  , page 170).  The special
+       list of functions, see the _\br_\be_\bf_\be_\br_\be_\bn_\bc_\be (section 7.5  , page 171).  The special
        function noop unbinds the specified key sequence.
 
        _\b3_\b._\b5  _\bD_\be_\bf_\bi_\bn_\bi_\bn_\bg _\ba_\bl_\bi_\ba_\bs_\be_\bs _\bf_\bo_\br _\bc_\bh_\ba_\br_\ba_\bc_\bt_\be_\br _\bs_\be_\bt_\bs
        mailboxes to execute _\bc_\bo_\bm_\bm_\ba_\bn_\bd before loading.  If a mailbox matches multiple
        folder-hook's, they are executed in the order given in the muttrc.
 
-       N\bNo\bot\bte\be:\b: if you use the ``!'' shortcut for _\b$_\bs_\bp_\bo_\bo_\bl_\bf_\bi_\bl_\be (section 7.4.299  , page
-       158) at the beginning of the pattern, you must place it inside of double or
+       N\bNo\bot\bte\be:\b: if you use the ``!'' shortcut for _\b$_\bs_\bp_\bo_\bo_\bl_\bf_\bi_\bl_\be (section 7.4.301  , page
+       159) at the beginning of the pattern, you must place it inside of double or
        single quotes in order to distinguish it from the logical _\bn_\bo_\bt operator for the
        expression.
 
        invoke a function directly, you can use the format _\b<_\bk_\be_\by _\bn_\ba_\bm_\be_\b> and _\b<_\bf_\bu_\bn_\bc_\bt_\bi_\bo_\bn
        _\bn_\ba_\bm_\be_\b>.  For a listing of key names see the section on _\bk_\be_\by _\bb_\bi_\bn_\bd_\bi_\bn_\bg_\bs (section
        3.4  , page 24).  Functions are listed in the _\bf_\bu_\bn_\bc_\bt_\bi_\bo_\bn _\br_\be_\bf_\be_\br_\be_\bn_\bc_\be (section
-       7.5  , page 170).
+       7.5  , page 171).
 
        The advantage with using function names directly is that the macros will work
        regardless of the current key bindings, so they are not dependent on the user
 
           +\bo normal
 
-          +\bo quoted (text matching _\b$_\bq_\bu_\bo_\bt_\be_\b__\br_\be_\bg_\be_\bx_\bp (section 7.4.227  , page 140) in the
+          +\bo quoted (text matching _\b$_\bq_\bu_\bo_\bt_\be_\b__\br_\be_\bg_\be_\bx_\bp (section 7.4.229  , page 142) in the
             body of a message)
 
           +\bo quoted1, quoted2, ..., quotedN\bN (higher levels of quoting)
        instance, when replying to a message that you sent to a different party, mutt
        will automatically suggest to send the response to the original message's
        recipients -- responding to yourself won't make much sense in many cases.  (See
-       _\b$_\br_\be_\bp_\bl_\by_\b__\bt_\bo (section 7.4.235  , page 142).)
+       _\b$_\br_\be_\bp_\bl_\by_\b__\bt_\bo (section 7.4.237  , page 144).)
 
        Many users receive e-mail under a number of different addresses. To fully use
        mutt's features here, the program must be able to recognize what e-mail
 
            "
 
-        For completeness, the _\b$_\bd_\be_\bl_\be_\bt_\be_\b__\bs_\bp_\ba_\bc_\be (section 7.4.47  , page 96) variable pro-
+        For completeness, the _\b$_\bd_\be_\bl_\be_\bt_\be_\b__\bs_\bp_\ba_\bc_\be (section 7.4.49  , page 98) variable pro-
        vides the mechanism to generate a DelSp=yes parameter on _\bo_\bu_\bt_\bg_\bo_\bi_\bn_\bg messages.
        According to the standard, clients receiving a format=flowed messages should
        delete the last space of a flowed line but still interpret the line as flowed.
        the Mail-Followup-To header is a non-standard extension which is not supported
        by all mail user agents.  Adding it is not bullet-proof against receiving per-
        sonal CCs of list messages.  Also note that the generation of the Mail-Fol-
-       lowup-To header is controlled by the _\b$_\bf_\bo_\bl_\bl_\bo_\bw_\bu_\bp_\b__\bt_\bo (section 7.4.67  , page 101)
+       lowup-To header is controlled by the _\b$_\bf_\bo_\bl_\bl_\bo_\bw_\bu_\bp_\b__\bt_\bo (section 7.4.69  , page 103)
        configuration variable.
 
        The Mutt Next Generation E-Mail Client                                       34
 
        N\bNo\bot\bte\be:\b: the filenames in the mailboxes command are resolved when the command is
        executed, so if these names contain _\bs_\bh_\bo_\br_\bt_\bc_\bu_\bt _\bc_\bh_\ba_\br_\ba_\bc_\bt_\be_\br_\bs (section 4.9  , page
-       57) (such as ``='' and ``!''), any variable definition that affect these char-
-       acters (like _\b$_\bf_\bo_\bl_\bd_\be_\br (section 7.4.65  , page 100) and _\b$_\bs_\bp_\bo_\bo_\bl_\bf_\bi_\bl_\be (section
-       7.4.299  , page 158)) should be executed before the mailboxes command.
+       58) (such as ``='' and ``!''), any variable definition that affect these char-
+       acters (like _\b$_\bf_\bo_\bl_\bd_\be_\br (section 7.4.67  , page 102) and _\b$_\bs_\bp_\bo_\bo_\bl_\bf_\bi_\bl_\be (section
+       7.4.301  , page 159)) should be executed before the mailboxes command.
 
        _\b3_\b._\b1_\b5  _\bU_\bs_\be_\br _\bd_\be_\bf_\bi_\bn_\be_\bd _\bh_\be_\ba_\bd_\be_\br_\bs
 
        there, so Mutt-ng enforces the rule.
 
        If you would like to add a header field to a single message, you should either
-       set the _\be_\bd_\bi_\bt_\b__\bh_\be_\ba_\bd_\be_\br_\bs (section 7.4.55  , page 98) variable, or use the _\be_\bd_\bi_\bt_\b-
+       set the _\be_\bd_\bi_\bt_\b__\bh_\be_\ba_\bd_\be_\br_\bs (section 7.4.57  , page 100) variable, or use the _\be_\bd_\bi_\bt_\b-
        _\bh_\be_\ba_\bd_\be_\br_\bs function (default: ``E'') in the send-menu so that you can edit the
        header of your message along with the body.
 
        an address matching _\br_\be_\bg_\be_\bx_\bp or if you are the author and the message is
        addressed _\bt_\bo_\b: something matching _\br_\be_\bg_\be_\bx_\bp.
 
-       See _\bM_\be_\bs_\bs_\ba_\bg_\be _\bM_\ba_\bt_\bc_\bh_\bi_\bn_\bg _\bi_\bn _\bH_\bo_\bo_\bk_\bs (section 4.5.1  , page 54) for information on the
+       See _\bM_\be_\bs_\bs_\ba_\bg_\be _\bM_\ba_\bt_\bc_\bh_\bi_\bn_\bg _\bi_\bn _\bH_\bo_\bo_\bk_\bs (section 4.5.1  , page 55) for information on the
        exact format of _\bp_\ba_\bt_\bt_\be_\br_\bn.
 
        Examples:
             save-hook me@(turing\\.)?cs\\.hmc\\.edu$ +elkins
             save-hook aol\\.com$ +spam
 
-       Also see the _\bf_\bc_\bc_\b-_\bs_\ba_\bv_\be_\b-_\bh_\bo_\bo_\bk (section 3.19  , page 36) command.
+       Also see the _\bf_\bc_\bc_\b-_\bs_\ba_\bv_\be_\b-_\bh_\bo_\bo_\bk (section 3.19  , page 37) command.
 
        _\b3_\b._\b1_\b8  _\bS_\bp_\be_\bc_\bi_\bf_\by _\bd_\be_\bf_\ba_\bu_\bl_\bt _\bF_\bc_\bc_\b: _\bm_\ba_\bi_\bl_\bb_\bo_\bx _\bw_\bh_\be_\bn _\bc_\bo_\bm_\bp_\bo_\bs_\bi_\bn_\bg
 
        Usage: fcc-hook [!]_\bp_\ba_\bt_\bt_\be_\br_\bn _\bm_\ba_\bi_\bl_\bb_\bo_\bx
 
        This command is used to save outgoing mail in a mailbox other than _\b$_\br_\be_\bc_\bo_\br_\bd
-       (section 7.4.232  , page 142).  Mutt-ng searches the initial list of message
+       (section 7.4.234  , page 143).  Mutt-ng searches the initial list of message
        recipients for the first matching _\br_\be_\bg_\be_\bx_\bp and uses _\bm_\ba_\bi_\bl_\bb_\bo_\bx as the default Fcc:
        mailbox.  If no match is found the message will be saved to _\b$_\br_\be_\bc_\bo_\br_\bd (section
-       7.4.232  , page 142) mailbox.
+       7.4.234  , page 143) mailbox.
 
        The Mutt Next Generation E-Mail Client                                       37
 
-       See _\bM_\be_\bs_\bs_\ba_\bg_\be _\bM_\ba_\bt_\bc_\bh_\bi_\bn_\bg _\bi_\bn _\bH_\bo_\bo_\bk_\bs (section 4.5.1  , page 54) for information on the
+       See _\bM_\be_\bs_\bs_\ba_\bg_\be _\bM_\ba_\bt_\bc_\bh_\bi_\bn_\bg _\bi_\bn _\bH_\bo_\bo_\bk_\bs (section 4.5.1  , page 55) for information on the
        exact format of _\bp_\ba_\bt_\bt_\be_\br_\bn.
 
        Example: fcc-hook [@.]aol\\.com$ +spammers
 
        The above will save a copy of all messages going to the aol.com domain to the
        `+spammers' mailbox by default.  Also see the _\bf_\bc_\bc_\b-_\bs_\ba_\bv_\be_\b-_\bh_\bo_\bo_\bk (section 3.19  ,
-       page 36) command.
+       page 37) command.
 
        _\b3_\b._\b1_\b9  _\bS_\bp_\be_\bc_\bi_\bf_\by _\bd_\be_\bf_\ba_\bu_\bl_\bt _\bs_\ba_\bv_\be _\bf_\bi_\bl_\be_\bn_\ba_\bm_\be _\ba_\bn_\bd _\bd_\be_\bf_\ba_\bu_\bl_\bt _\bF_\bc_\bc_\b: _\bm_\ba_\bi_\bl_\bb_\bo_\bx _\ba_\bt _\bo_\bn_\bc_\be
 
        send2-hook is matched every time a message is changed, either by editing it, or
        by using the compose menu to change its recipients or subject.  send2-hook is
        executed after send-hook, and can, e.g., be used to set parameters such as the
-       _\b$_\bs_\be_\bn_\bd_\bm_\ba_\bi_\bl (section 7.4.249  , page 146) variable depending on the message's
+       _\b$_\bs_\be_\bn_\bd_\bm_\ba_\bi_\bl (section 7.4.251  , page 147) variable depending on the message's
        sender address.
 
        For each type of send-hook or reply-hook, when multiple matches occur, commands
        are executed in the order they are specified in the muttrc (for that type of
        hook).
 
-       See _\bM_\be_\bs_\bs_\ba_\bg_\be _\bM_\ba_\bt_\bc_\bh_\bi_\bn_\bg _\bi_\bn _\bH_\bo_\bo_\bk_\bs (section 4.5.1  , page 54) for information on the
+       See _\bM_\be_\bs_\bs_\ba_\bg_\be _\bM_\ba_\bt_\bc_\bh_\bi_\bn_\bg _\bi_\bn _\bH_\bo_\bo_\bk_\bs (section 4.5.1  , page 55) for information on the
        exact format of _\bp_\ba_\bt_\bt_\be_\br_\bn.
 
        Example: send-hook mutt 'set mime_forward signature='''
 
        The Mutt Next Generation E-Mail Client                                       38
 
-       _\b$_\ba_\bt_\bt_\br_\bi_\bb_\bu_\bt_\bi_\bo_\bn (section 7.4.15  , page 89), _\b$_\bs_\bi_\bg_\bn_\ba_\bt_\bu_\br_\be (section 7.4.261  , page
-       149) and _\b$_\bl_\bo_\bc_\ba_\bl_\be (section 7.4.115  , page 114) variables in order to change the
+       _\b$_\ba_\bt_\bt_\br_\bi_\bb_\bu_\bt_\bi_\bo_\bn (section 7.4.17  , page 91), _\b$_\bs_\bi_\bg_\bn_\ba_\bt_\bu_\br_\be (section 7.4.263  , page
+       150) and _\b$_\bl_\bo_\bc_\ba_\bl_\be (section 7.4.117  , page 116) variables in order to change the
        language of the attributions and signatures based upon the recipients.
 
        N\bNo\bot\bte\be:\b: the send-hook's are only executed ONCE after getting the initial list of
        tiple matches occur, commands are executed in the order they are specified in
        the muttrc.
 
-       See _\bM_\be_\bs_\bs_\ba_\bg_\be _\bM_\ba_\bt_\bc_\bh_\bi_\bn_\bg _\bi_\bn _\bH_\bo_\bo_\bk_\bs (section 4.5.1  , page 54) for information on the
+       See _\bM_\be_\bs_\bs_\ba_\bg_\be _\bM_\ba_\bt_\bc_\bh_\bi_\bn_\bg _\bi_\bn _\bH_\bo_\bo_\bk_\bs (section 4.5.1  , page 55) for information on the
        exact format of _\bp_\ba_\bt_\bt_\be_\br_\bn.
 
        Example:
        Usage: exec _\bf_\bu_\bn_\bc_\bt_\bi_\bo_\bn [ _\bf_\bu_\bn_\bc_\bt_\bi_\bo_\bn ... ]
 
        This command can be used to execute any function. Functions are listed in the
-       _\bf_\bu_\bn_\bc_\bt_\bi_\bo_\bn _\br_\be_\bf_\be_\br_\be_\bn_\bc_\be (section 7.5  , page 170).  ``exec function'' is equivalent
+       _\bf_\bu_\bn_\bc_\bt_\bi_\bo_\bn _\br_\be_\bf_\be_\br_\be_\bn_\bc_\be (section 7.5  , page 171).  ``exec function'' is equivalent
        to ``push <function>''.
 
        _\b3_\b._\b2_\b5  _\bM_\be_\bs_\bs_\ba_\bg_\be _\bS_\bc_\bo_\br_\bi_\bn_\bg
             delete threshold, it will be marked as deleted.
 
        These three thresholds can be set via the variables _\b$_\bs_\bc_\bo_\br_\be_\b__\bt_\bh_\br_\be_\bs_\bh_\bo_\bl_\bd_\b__\bf_\bl_\ba_\bg (sec-
-       tion 7.4.246  , page 145), _\b$_\bs_\bc_\bo_\br_\be_\b__\bt_\bh_\br_\be_\bs_\bh_\bo_\bl_\bd_\b__\br_\be_\ba_\bd (section 7.4.247  , page 145),
-       _\b$_\bs_\bc_\bo_\br_\be_\b__\bt_\bh_\br_\be_\bs_\bh_\bo_\bl_\bd_\b__\bd_\be_\bl_\be_\bt_\be (section 7.4.245  , page 145) and.  By default,
-       _\b$_\bs_\bc_\bo_\br_\be_\b__\bt_\bh_\br_\be_\bs_\bh_\bo_\bl_\bd_\b__\br_\be_\ba_\bd (section 7.4.247  , page 145) and _\b$_\bs_\bc_\bo_\br_\be_\b__\bt_\bh_\br_\be_\bs_\bh_\bo_\bl_\bd_\b__\bd_\be_\bl_\be_\bt_\be
-       (section 7.4.245  , page 145) are set to -1, which means that in the default
+       tion 7.4.248  , page 147), _\b$_\bs_\bc_\bo_\br_\be_\b__\bt_\bh_\br_\be_\bs_\bh_\bo_\bl_\bd_\b__\br_\be_\ba_\bd (section 7.4.249  , page 147),
+       _\b$_\bs_\bc_\bo_\br_\be_\b__\bt_\bh_\br_\be_\bs_\bh_\bo_\bl_\bd_\b__\bd_\be_\bl_\be_\bt_\be (section 7.4.247  , page 146) and.  By default,
+       _\b$_\bs_\bc_\bo_\br_\be_\b__\bt_\bh_\br_\be_\bs_\bh_\bo_\bl_\bd_\b__\br_\be_\ba_\bd (section 7.4.249  , page 147) and _\b$_\bs_\bc_\bo_\br_\be_\b__\bt_\bh_\br_\be_\bs_\bh_\bo_\bl_\bd_\b__\bd_\be_\bl_\be_\bt_\be
+       (section 7.4.247  , page 146) are set to -1, which means that in the default
        threshold configuration no message will ever get marked as read or deleted.
 
        Scoring gets especially interesting when combined with the color command and
        your spam patterns with the spam and nospam commands, you can _\bl_\bi_\bm_\bi_\bt, _\bs_\be_\ba_\br_\bc_\bh,
        and _\bs_\bo_\br_\bt your mail based on its spam attributes, as determined by the external
        filter. You also can display the spam attributes in your index display using
-       the %H selector in the _\b$_\bi_\bn_\bd_\be_\bx_\b__\bf_\bo_\br_\bm_\ba_\bt (section 7.4.111  , page 111) variable.
+       the %H selector in the _\b$_\bi_\bn_\bd_\be_\bx_\b__\bf_\bo_\br_\bm_\ba_\bt (section 7.4.113  , page 113) variable.
        (Tip: try %?H?[%H] ?  to display spam tags only when they are defined for a
        given message.)
 
        Usage: reset _\bv_\ba_\br_\bi_\ba_\bb_\bl_\be [_\bv_\ba_\br_\bi_\ba_\bb_\bl_\be ... ]
 
        This command is used to set (and unset) _\bc_\bo_\bn_\bf_\bi_\bg_\bu_\br_\ba_\bt_\bi_\bo_\bn _\bv_\ba_\br_\bi_\ba_\bb_\bl_\be_\bs (section 7.4  ,
-       page 84).  There are four basic types of variables: boolean, number, string and
+       page 85).  There are four basic types of variables: boolean, number, string and
        quadoption.  _\bb_\bo_\bo_\bl_\be_\ba_\bn variables can be _\bs_\be_\bt (true) or _\bu_\bn_\bs_\be_\bt (false).  _\bn_\bu_\bm_\bb_\be_\br
        variables can be assigned a positive integer value.
 
 
        An example for testing for variable names can be used if users use different
        revisions of mutt-ng whereby the older one may not have a certain variable. To
-       test for the availability of _\b$_\bi_\bm_\ba_\bp_\b__\bm_\ba_\bi_\bl_\b__\bc_\bh_\be_\bc_\bk (section 7.4.100  , page 109),
+       test for the availability of _\b$_\bi_\bm_\ba_\bp_\b__\bm_\ba_\bi_\bl_\b__\bc_\bh_\be_\bc_\bk (section 7.4.102  , page 110),
        use:
 
             ifdef imap_mail_check 'set imap_mail_check = 300'
 
        Provided for completeness is the test for menu names. To set _\b$_\bp_\ba_\bg_\be_\br_\b__\bi_\bn_\bd_\be_\bx_\b__\bl_\bi_\bn_\be_\bs
-       (section 7.4.171  , page 128) only if the pager menu is available, use:
+       (section 7.4.173  , page 129) only if the pager menu is available, use:
 
             ifdef pager 'set pager_index_lines = 10'
 
 
        In the process of ensuring and creating more consistency, many variables have
        been renamed and some of the old names were already removed. Please see _\bO_\bb_\bs_\bo_\b-
-       _\bl_\be_\bt_\be _\bV_\ba_\br_\bi_\ba_\bb_\bl_\be_\bs (section 7.4  , page 84) for a complete list.
+       _\bl_\be_\bt_\be _\bV_\ba_\br_\bi_\ba_\bb_\bl_\be_\bs (section 7.4  , page 85) for a complete list.
 
        _\b4_\b.  _\bA_\bd_\bv_\ba_\bn_\bc_\be_\bd _\bU_\bs_\ba_\bg_\be
 
        _\b4_\b._\b1  _\bR_\be_\bg_\bu_\bl_\ba_\br _\bE_\bx_\bp_\br_\be_\bs_\bs_\bi_\bo_\bn_\bs
 
        All string patterns in Mutt-ng including those in more complex _\bp_\ba_\bt_\bt_\be_\br_\bn_\bs (sec-
-       tion 7.2  , page 80) must be specified using regular expressions (regexp) in
+       tion 7.2  , page 81) must be specified using regular expressions (regexp) in
        the ``POSIX extended'' syntax (which is more or less the syntax used by egrep
        and GNU awk).  For your convenience, we have included below a brief description
        of this syntax.
        to match messages, e.g. for operations like tagging and scoring. A pattern con-
        sists of one or more sub-pattern, which can be logically grouped, ORed, and
        negated. For a complete listing of these patterns, please refer to table _\bP_\ba_\bt_\b-
-       _\bt_\be_\br_\bn_\bs (section 7.2  , page 80) in the Reference chapter.
+       _\bt_\be_\br_\bn_\bs (section 7.2  , page 81) in the Reference chapter.
 
        It must be noted that in this table, EXPR, USER, ID and SUBJECT are regular
        expressions. For ranges, the forms <[MAX], >>[MIN], [MIN]- and -[MAX] are also
           +\bo the current mutt-ng version number
 
        The setting for the status bar of the index is controlled via the _\b$_\bs_\bt_\ba_\bt_\bu_\bs_\b__\bf_\bo_\br_\b-
-       _\bm_\ba_\bt (section 7.4.310  , page 160) variable. For the hostname and version
+       _\bm_\ba_\bt (section 7.4.312  , page 162) variable. For the hostname and version
        string, there's an expando for $status_format: %h expands to the hostname and
        %v to the version string. When just configuring:
 
 
        The Mutt Next Generation E-Mail Client                                       54
 
-       default.  See _\bp_\ba_\bt_\bt_\be_\br_\bn_\bs (section 7.2  , page 80) for Mutt-ng's pattern matching
+       default.  See _\bp_\ba_\bt_\bt_\be_\br_\bn_\bs (section 7.2  , page 81) for Mutt-ng's pattern matching
        syntax.
 
        Once you have tagged the desired messages, you can use the ``tag-prefix'' oper-
        ator, which is the ``;'' (semicolon) key by default.  When the ``tag-prefix''
        operator is used, the n\bne\bex\bxt\bt operation will be applied to all tagged messages if
-       that operation can be used in that manner.  If the _\b$_\ba_\bu_\bt_\bo_\b__\bt_\ba_\bg (section 7.4.16  ,
-       page 90) variable is set, the next operation applies to the tagged messages
+       that operation can be used in that manner.  If the _\b$_\ba_\bu_\bt_\bo_\b__\bt_\ba_\bg (section 7.4.18  ,
+       page 91) variable is set, the next operation applies to the tagged messages
        automatically, without requiring the ``tag-prefix''.
 
        In _\bm_\ba_\bc_\br_\bo_\bs (section 3.7  , page 27) or _\bp_\bu_\bs_\bh (section 3.23  , page 38) commands,
        arbitrary commands before performing some operation.  For example, you may wish
        to tailor your configuration based upon which mailbox you are reading, or to
        whom you are sending mail.  In the Mutt-ng world, a _\bh_\bo_\bo_\bk consists of a _\br_\be_\bg_\bu_\bl_\ba_\br
-       _\be_\bx_\bp_\br_\be_\bs_\bs_\bi_\bo_\bn (section 4.1  , page 45) or _\bp_\ba_\bt_\bt_\be_\br_\bn (section 7.2  , page 80) along
+       _\be_\bx_\bp_\br_\be_\bs_\bs_\bi_\bo_\bn (section 4.1  , page 46) or _\bp_\ba_\bt_\bt_\be_\br_\bn (section 7.2  , page 81) along
        with a configuration option/command.  See
 
           +\bo _\bf_\bo_\bl_\bd_\be_\br_\b-_\bh_\bo_\bo_\bk (section 3.6  , page 26)
 
           +\bo _\bs_\be_\bn_\bd_\b-_\bh_\bo_\bo_\bk (section 3.20  , page 37)
 
-          +\bo _\bm_\be_\bs_\bs_\ba_\bg_\be_\b-_\bh_\bo_\bo_\bk (section 3.21  , page 37)
+          +\bo _\bm_\be_\bs_\bs_\ba_\bg_\be_\b-_\bh_\bo_\bo_\bk (section 3.21  , page 38)
 
           +\bo _\bs_\ba_\bv_\be_\b-_\bh_\bo_\bo_\bk (section 3.17  , page 36)
 
 
           +\bo _\bf_\bc_\bc_\b-_\bh_\bo_\bo_\bk (section 3.18  , page 36)
 
-          +\bo _\bf_\bc_\bc_\b-_\bs_\ba_\bv_\be_\b-_\bh_\bo_\bo_\bk (section 3.19  , page 36)
+          +\bo _\bf_\bc_\bc_\b-_\bs_\ba_\bv_\be_\b-_\bh_\bo_\bo_\bk (section 3.19  , page 37)
 
        for specific details on each type of _\bh_\bo_\bo_\bk available.
 
 
        Hooks that act upon messages (send-hook, save-hook, fcc-hook, message-hook) are
        evaluated in a slightly different manner.  For the other types of hooks, a _\br_\be_\bg_\b-
-       _\bu_\bl_\ba_\br _\be_\bx_\bp_\br_\be_\bs_\bs_\bi_\bo_\bn (section 4.1  , page 45) is sufficient.  But in dealing with
+       _\bu_\bl_\ba_\br _\be_\bx_\bp_\br_\be_\bs_\bs_\bi_\bo_\bn (section 4.1  , page 46) is sufficient.  But in dealing with
        messages a finer grain of control is needed for matching since for different
        purposes you want to match different criteria.
 
-       Mutt-ng allows the use of the _\bs_\be_\ba_\br_\bc_\bh _\bp_\ba_\bt_\bt_\be_\br_\bn (section 7.2  , page 80) language
+       Mutt-ng allows the use of the _\bs_\be_\ba_\br_\bc_\bh _\bp_\ba_\bt_\bt_\be_\br_\bn (section 7.2  , page 81) language
        for matching messages in hook commands.  This works in exactly the same way as
        it would when _\bl_\bi_\bm_\bi_\bt_\bi_\bn_\bg or _\bs_\be_\ba_\br_\bc_\bh_\bi_\bn_\bg the mailbox, except that you are restricted
        to those operators which match information mutt extracts from the header of the
        searching language.  You can still specify a simple _\br_\be_\bg_\bu_\bl_\ba_\br _\be_\bx_\bp_\br_\be_\bs_\bs_\bi_\bo_\bn like the
        other hooks, in which case Mutt-ng will translate your pattern into the full
        language, using the translation specified by the _\b$_\bd_\be_\bf_\ba_\bu_\bl_\bt_\b__\bh_\bo_\bo_\bk (section
-       7.4.45  , page 96) variable.  The pattern is translated at the time the hook is
-       declared, so the value of _\b$_\bd_\be_\bf_\ba_\bu_\bl_\bt_\b__\bh_\bo_\bo_\bk (section 7.4.45  , page 96) that is in
+       7.4.47  , page 97) variable.  The pattern is translated at the time the hook is
+       declared, so the value of _\b$_\bd_\be_\bf_\ba_\bu_\bl_\bt_\b__\bh_\bo_\bo_\bk (section 7.4.47  , page 97) that is in
        effect at that time will be used.
 
        _\b4_\b._\b6  _\bU_\bs_\bi_\bn_\bg _\bt_\bh_\be _\bs_\bi_\bd_\be_\bb_\ba_\br
 
        Mutt-ng supports connecting to external directory databases such as LDAP,
        ph/qi, bbdb, or NIS through a wrapper script which connects to mutt using a
-       simple interface.  Using the _\b$_\bq_\bu_\be_\br_\by_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd (section 7.4.223  , page 140) vari-
+       simple interface.  Using the _\b$_\bq_\bu_\be_\br_\by_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd (section 7.4.225  , page 141) vari-
        able, you specify the wrapper command to use.  For example:
 
             set query_command = "mutt_ldap_query.pl '%s'"
        Mutt-ng 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-ng
-       uses the default specified with the _\b$_\bm_\bb_\bo_\bx_\b__\bt_\by_\bp_\be (section 7.4.127  , page 117)
+       uses the default specified with the _\b$_\bm_\bb_\bo_\bx_\b__\bt_\by_\bp_\be (section 7.4.129  , page 118)
        variable.
 
        m\bmb\bbo\box\bx.  This is the most widely used mailbox format for UNIX.  All messages are
        These shortcuts can be used anywhere you are prompted for a file or mailbox
        path.
 
-          +\bo ! -- refers to your _\b$_\bs_\bp_\bo_\bo_\bl_\bf_\bi_\bl_\be (section 7.4.299  , page 158) (incoming)
+          +\bo ! -- refers to your _\b$_\bs_\bp_\bo_\bo_\bl_\bf_\bi_\bl_\be (section 7.4.301  , page 159) (incoming)
             mailbox
 
-          +\bo > -- refers to your _\b$_\bm_\bb_\bo_\bx (section 7.4.126  , page 117) file
+          +\bo > -- refers to your _\b$_\bm_\bb_\bo_\bx (section 7.4.128  , page 118) file
 
-          +\bo < -- refers to your _\b$_\br_\be_\bc_\bo_\br_\bd (section 7.4.232  , page 142) file
+          +\bo < -- refers to your _\b$_\br_\be_\bc_\bo_\br_\bd (section 7.4.234  , page 143) file
 
           +\bo ^ -- refers to the current mailbox
 
 
           +\bo ~ -- refers to your home directory
 
-          +\bo = or + -- refers to your _\b$_\bf_\bo_\bl_\bd_\be_\br (section 7.4.65  , page 100) directory
+          +\bo = or + -- refers to your _\b$_\bf_\bo_\bl_\bd_\be_\br (section 7.4.67  , page 102) directory
 
           +\bo @_\ba_\bl_\bi_\ba_\bs -- refers to the _\bd_\be_\bf_\ba_\bu_\bl_\bt _\bs_\ba_\bv_\be _\bf_\bo_\bl_\bd_\be_\br (section 3.17  , page 36) as
             determined by the address of the alias
        the first of which is the ability to show the name of a list through which you
        received a message (i.e., of a subscribed list) in the _\bi_\bn_\bd_\be_\bx menu display.
        This is useful to distinguish between personal and list mail in the same mail-
-       box.  In the _\b$_\bi_\bn_\bd_\be_\bx_\b__\bf_\bo_\br_\bm_\ba_\bt (section 7.4.111  , page 111) variable, the escape
+       box.  In the _\b$_\bi_\bn_\bd_\be_\bx_\b__\bf_\bo_\br_\bm_\ba_\bt (section 7.4.113  , page 113) 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).
 
        Mutt-ng also supports the Mail-Followup-To header.  When you send a message to
        a list of recipients which includes one or several subscribed mailing lists,
-       and if the _\b$_\bf_\bo_\bl_\bl_\bo_\bw_\bu_\bp_\b__\bt_\bo (section 7.4.67  , page 101) option is set, mutt will
+       and if the _\b$_\bf_\bo_\bl_\bl_\bo_\bw_\bu_\bp_\b__\bt_\bo (section 7.4.69  , page 103) option is set, mutt will
        generate a Mail-Followup-To header which contains all the recipients to whom
        you send this message, but not your address. This indicates that group-replies
        or list-replies (also known as ``followups'') to this message should only be
 
        Conversely, when group-replying or list-replying to a message which has a Mail-
        Followup-To header, mutt will respect this header if the _\b$_\bh_\bo_\bn_\bo_\br_\b__\bf_\bo_\bl_\bl_\bo_\bw_\bu_\bp_\b__\bt_\bo
-       (section 7.4.89  , page 106) configuration variable is set.  Using list-reply
+       (section 7.4.91  , page 108) configuration variable is set.  Using list-reply
        will in this case also make sure that the reply goes to the mailing list, even
        if it's not specified in the list of recipients in the Mail-Followup-To.
 
        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-ng uses the _\b$_\br_\be_\bp_\bl_\by_\b__\bt_\bo (section
-       7.4.235  , page 142) variable to help decide which address to use.  If set to
+       7.4.237  , page 144) variable to help decide which address to use.  If set to
        _\ba_\bs_\bk_\b-_\by_\be_\bs or _\ba_\bs_\bk_\b-_\bn_\bo, 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 set to _\by_\be_\bs, the ``Reply-To'' field
 
        The ``X-Label:'' header field can be used to further identify mailing lists or
        list subject matter (or just to annotate messages individually).  The
-       _\b$_\bi_\bn_\bd_\be_\bx_\b__\bf_\bo_\br_\bm_\ba_\bt (section 7.4.111  , page 111) variable's ``%y'' and ``%Y''
+       _\b$_\bi_\bn_\bd_\be_\bx_\b__\bf_\bo_\br_\bm_\ba_\bt (section 7.4.113  , page 113) variable's ``%y'' and ``%Y''
        escapes can be used to expand ``X-Label:'' fields in the index, and Mutt-ng's
        pattern-matcher can match regular expressions to ``X-Label:'' fields with the
        ``~y'' selector.  ``X-Label:'' is not a standard message header field, but it
        can easily be inserted by procmail and other mail filtering agents.
 
-       Lastly, Mutt-ng has the ability to _\bs_\bo_\br_\bt (section 7.4.293  , page 156) the mail-
+       Lastly, Mutt-ng has the ability to _\bs_\bo_\br_\bt (section 7.4.295  , page 157) the mail-
        box into _\bt_\bh_\br_\be_\ba_\bd_\bs (section 2.5.3  , page 11).  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 graphi-
 
        To support this, there are two variables:
 
-          +\bo _\b$_\bd_\bs_\bn_\b__\bn_\bo_\bt_\bi_\bf_\by (section 7.4.52  , page 97) is used to request receipts for
+          +\bo _\b$_\bd_\bs_\bn_\b__\bn_\bo_\bt_\bi_\bf_\by (section 7.4.54  , page 99) is used to request receipts for
             different results (such as failed message, message delivered, etc.).
 
-          +\bo _\b$_\bd_\bs_\bn_\b__\br_\be_\bt_\bu_\br_\bn (section 7.4.53  , page 97) requests how much of your message
+          +\bo _\b$_\bd_\bs_\bn_\b__\br_\be_\bt_\bu_\br_\bn (section 7.4.55  , page 99) requests how much of your message
             should be returned with the receipt (headers or full message).
 
        Please see the reference chapter for possible values.
 
        Polling for new mail is more expensive over POP3 than locally. For this reason
        the frequency at which Mutt-ng will check for mail remotely can be controlled
-       by the _\b$_\bp_\bo_\bp_\b__\bm_\ba_\bi_\bl_\b__\bc_\bh_\be_\bc_\bk (section 7.4.210  , page 137) variable, which defaults
+       by the _\b$_\bp_\bo_\bp_\b__\bm_\ba_\bi_\bl_\b__\bc_\bh_\be_\bc_\bk (section 7.4.212  , page 138) variable, which defaults
        to every 60 seconds.
 
        If Mutt-ng was compiled with SSL support (by running the _\bc_\bo_\bn_\bf_\bi_\bg_\bu_\br_\be script with
        name@]popserver[:port]/.
 
        Another way to access your POP3 mail is the _\bf_\be_\bt_\bc_\bh_\b-_\bm_\ba_\bi_\bl function (default: G).
-       It allows to connect to _\bp_\bo_\bp_\b__\bh_\bo_\bs_\bt (section 7.4.208  , page 136), fetch all your
-       new mail and place it in the local _\bs_\bp_\bo_\bo_\bl_\bf_\bi_\bl_\be (section 7.4.299  , page 158).
+       It allows to connect to _\bp_\bo_\bp_\b__\bh_\bo_\bs_\bt (section 7.4.210  , page 138), fetch all your
+       new mail and place it in the local _\bs_\bp_\bo_\bo_\bl_\bf_\bi_\bl_\be (section 7.4.301  , page 159).
        After this point, Mutt-ng runs exactly as if the mail had always been local.
 
        N\bNo\bot\bte\be:\b: If you only need to fetch all messages to local mailbox you should con-
 
        When browsing folders on an IMAP server, you can toggle whether to look at only
        the folders you are subscribed to, or all folders with the _\bt_\bo_\bg_\bg_\bl_\be_\b-_\bs_\bu_\bb_\bs_\bc_\br_\bi_\bb_\be_\bd
-       command.  See also the _\b$_\bi_\bm_\ba_\bp_\b__\bl_\bi_\bs_\bt_\b__\bs_\bu_\bb_\bs_\bc_\br_\bi_\bb_\be_\bd (section 7.4.98  , page 108) vari-
-       able.
+       command.  See also the _\b$_\bi_\bm_\ba_\bp_\b__\bl_\bi_\bs_\bt_\b__\bs_\bu_\bb_\bs_\bc_\br_\bi_\bb_\be_\bd (section 7.4.100  , page 110)
+       variable.
 
        Polling for new mail on an IMAP server can cause noticeable delays. So, you'll
-       want to carefully tune the _\b$_\bi_\bm_\ba_\bp_\b__\bm_\ba_\bi_\bl_\b__\bc_\bh_\be_\bc_\bk (section 7.4.100  , page 109) and
-       _\b$_\bt_\bi_\bm_\be_\bo_\bu_\bt (section 7.4.323  , page 165) variables.
+       want to carefully tune the _\b$_\bi_\bm_\ba_\bp_\b__\bm_\ba_\bi_\bl_\b__\bc_\bh_\be_\bc_\bk (section 7.4.102  , page 110) and
+       _\b$_\bt_\bi_\bm_\be_\bo_\bu_\bt (section 7.4.325  , page 166) variables.
 
        Note that if you are using mbox as the mail store on UW servers prior to
        v12.250, the server has been reported to disconnect a client if another client
 
        There are a few variables which control authentication:
 
-          +\bo _\b$_\bi_\bm_\ba_\bp_\b__\bu_\bs_\be_\br (section 7.4.106  , page 110) - controls the username under
+          +\bo _\b$_\bi_\bm_\ba_\bp_\b__\bu_\bs_\be_\br (section 7.4.108  , page 112) - controls the username under
             which you request authentication on the IMAP server, for all authentica-
             tors. This is overridden by an explicit username in the mailbox path (i.e.
             by using a mailbox name of the form {user@host}).
 
-          +\bo _\b$_\bi_\bm_\ba_\bp_\b__\bp_\ba_\bs_\bs (section 7.4.101  , page 109) - a password which you may pre-
+          +\bo _\b$_\bi_\bm_\ba_\bp_\b__\bp_\ba_\bs_\bs (section 7.4.103  , page 111) - a password which you may pre-
             set, used by all authentication methods where a password is needed.
 
-          +\bo _\b$_\bi_\bm_\ba_\bp_\b__\ba_\bu_\bt_\bh_\be_\bn_\bt_\bi_\bc_\ba_\bt_\bo_\br_\bs (section 7.4.92  , page 107) - a colon-delimited list
+          +\bo _\b$_\bi_\bm_\ba_\bp_\b__\ba_\bu_\bt_\bh_\be_\bn_\bt_\bi_\bc_\ba_\bt_\bo_\br_\bs (section 7.4.94  , page 108) - a colon-delimited list
             of IMAP authentication methods to try, in the order you wish to try them.
             If specified, this overrides mutt's default (attempt everything, in the
             order listed above).
 
        The Default newsserver can be obtained from the $NNTPSERVER environment vari-
        able. Like other news readers, info about subscribed newsgroups is saved in a
-       file as specified by the _\b$_\bn_\bn_\bt_\bp_\b__\bn_\be_\bw_\bs_\br_\bc (section 7.4.158  , page 125) variable.
+       file as specified by the _\b$_\bn_\bn_\bt_\bp_\b__\bn_\be_\bw_\bs_\br_\bc (section 7.4.160  , page 126) variable.
        Article headers are cached and can be loaded from a file when a newsgroup is
        entered instead loading from newsserver; currently, this caching mechanism
        still is different from the header caching for maildir/IMAP.
        Especially for Usenet, people often ask for advanced filtering and scoring
        functionality. Of course, mutt-ng has scoring and allows a killfile, too. How
        to use a killfile has been discussed in _\bM_\be_\bs_\bs_\ba_\bg_\be _\bs_\bc_\bo_\br_\bi_\bn_\bg (section 3.25  , page
-       38).
+       39).
 
        What has not been discusses in detail is mutt-ng's built-in realname filter.
        For may newsreaders including those for ``advanced users'' like _\bs_\bl_\br_\bn or _\bt_\bi_\bn,
        functionality. When configure was called with --with-libesmtp or the output
        muttng -v contains +USE_LIBESMTP, this will be or is the case already. The SMTP
        support includes support for Delivery Status Notification (see _\bD_\be_\bl_\bi_\bv_\be_\br_\by _\bS_\bt_\ba_\bt_\bu_\bs
-       _\bN_\bo_\bt_\bi_\bf_\bi_\bc_\ba_\bt_\bi_\bo_\bn (section 4.12  , page 59) section) as well as handling the 8BIT-
-       MIME flag controlled via _\b$_\bu_\bs_\be_\b__\b8_\bb_\bi_\bt_\bm_\bi_\bm_\be (section 7.4.330  , page 166).
+       _\bN_\bo_\bt_\bi_\bf_\bi_\bc_\ba_\bt_\bi_\bo_\bn (section 4.12  , page 60) section) as well as handling the 8BIT-
+       MIME flag controlled via _\b$_\bu_\bs_\be_\b__\b8_\bb_\bi_\bt_\bm_\bi_\bm_\be (section 7.4.332  , page 168).
 
        To enable sending mail directly via SMTP without an MTA such as Postfix or
-       SSMTP and the like, simply set the _\b$_\bs_\bm_\bt_\bp_\b__\bh_\bo_\bs_\bt (section 7.4.288  , page 154)
+       SSMTP and the like, simply set the _\b$_\bs_\bm_\bt_\bp_\b__\bh_\bo_\bs_\bt (section 7.4.290  , page 156)
        variable pointing to your SMTP server.
 
-       Authentication mechanisms are available via the _\b$_\bs_\bm_\bt_\bp_\b__\bu_\bs_\be_\br (section 7.4.292  ,
-       page 155) and _\b$_\bs_\bm_\bt_\bp_\b__\bp_\ba_\bs_\bs (section 7.4.289  , page 155) variables.
+       Authentication mechanisms are available via the _\b$_\bs_\bm_\bt_\bp_\b__\bu_\bs_\be_\br (section 7.4.294  ,
+       page 157) and _\b$_\bs_\bm_\bt_\bp_\b__\bp_\ba_\bs_\bs (section 7.4.291  , page 156) variables.
 
        Transport Encryption via the StartTLS command is also available. For this to
        work, first of all Mutt-ng must be built with SSL or GNUTLS.  Secondly, the
-       _\b$_\bs_\bm_\bt_\bp_\b__\bu_\bs_\be_\b__\bt_\bl_\bs (section 7.4.291  , page 155) variable must be either set to
+       _\b$_\bs_\bm_\bt_\bp_\b__\bu_\bs_\be_\b__\bt_\bl_\bs (section 7.4.293  , page 157) variable must be either set to
        ``enabled'' or ``required.'' In both cases, StartTLS will be used if the server
        supports it: for the second case, the connection will fail if it doesn't while
        switching back to unencrypted communication for the first one.
        The Mutt Next Generation E-Mail Client                                       65
 
        they allow for only one value which may not be what the user wants to send as
-       the From: header. In this case, the variable _\b$_\bs_\bm_\bt_\bp_\b__\be_\bn_\bv_\be_\bl_\bo_\bp_\be (section 7.4.287  ,
-       page 154) may be used to set the envelope different from the From: header.
+       the From: header. In this case, the variable _\b$_\bs_\bm_\bt_\bp_\b__\be_\bn_\bv_\be_\bl_\bo_\bp_\be (section 7.4.289  ,
+       page 156) may be used to set the envelope different from the From: header.
 
        _\b4_\b._\b1_\b7  _\bM_\ba_\bn_\ba_\bg_\bi_\bn_\bg _\bm_\bu_\bl_\bt_\bi_\bp_\bl_\be _\bI_\bM_\bA_\bP_\b/_\bP_\bO_\bP_\b/_\bN_\bN_\bT_\bP _\ba_\bc_\bc_\bo_\bu_\bn_\bt_\bs _\b(_\bO_\bP_\bT_\bI_\bO_\bN_\bA_\bL_\b)
 
        may be faster than converting the entire folder to the accepted format, append-
        ing to it and converting back to the user-defined format.
 
-       There are three hooks defined (_\bo_\bp_\be_\bn_\b-_\bh_\bo_\bo_\bk (section 4.19.1  , page 65), _\bc_\bl_\bo_\bs_\be_\b-
-       _\bh_\bo_\bo_\bk (section 4.19.2  , page 66) and _\ba_\bp_\bp_\be_\bn_\bd_\b-_\bh_\bo_\bo_\bk (section 4.19.3  , page 66))
+       There are three hooks defined (_\bo_\bp_\be_\bn_\b-_\bh_\bo_\bo_\bk (section 4.19.1  , page 66), _\bc_\bl_\bo_\bs_\be_\b-
+       _\bh_\bo_\bo_\bk (section 4.19.2  , page 66) and _\ba_\bp_\bp_\be_\bn_\bd_\b-_\bh_\bo_\bo_\bk (section 4.19.3  , page 67))
        which define commands to uncompress and compress a folder and to append mes-
        sages to an existing compressed folder respectively.
 
             append-hook \\.gz$ "gzip -c %t >> %f"
 
        You do not have to specify all of the commands. If you omit _\ba_\bp_\bp_\be_\bn_\bd_\b-_\bh_\bo_\bo_\bk (sec-
-       tion 4.19.3  , page 66), the folder will be open and closed again each time you
+       tion 4.19.3  , page 67), the folder will be open and closed again each time you
        will add to it. If you omit _\bc_\bl_\bo_\bs_\be_\b-_\bh_\bo_\bo_\bk (section 4.19.2  , page 66) (or give
        empty command) , the folder will be open in the  mode. If you specify _\ba_\bp_\bp_\be_\bn_\bd_\b-
-       _\bh_\bo_\bo_\bk (section 4.19.3  , page 66) though you'll be able to append to the folder.
+       _\bh_\bo_\bo_\bk (section 4.19.3  , page 67) though you'll be able to append to the folder.
 
        Note that Mutt-ng will only try to use hooks if the file is not in one of the
        accepted formats. In particular, if the file is empty, mutt supposes it is not
        compressed. This is important because it allows the use of programs that do not
        have well defined extensions. Just use '.' as a regexp. But this may be sur-
        prising if your compressing script produces empty files. In this situation,
-       unset _\b$_\bs_\ba_\bv_\be_\b__\be_\bm_\bp_\bt_\by (section 7.4.242  , page 144), so that the compressed file
+       unset _\b$_\bs_\ba_\bv_\be_\b__\be_\bm_\bp_\bt_\by (section 7.4.244  , page 146), so that the compressed file
        will be removed if you delete all of the messages.
 
        _\b4_\b._\b1_\b9_\b._\b1  _\bO_\bp_\be_\bn _\ba _\bc_\bo_\bm_\bp_\br_\be_\bs_\bs_\be_\bd _\bm_\ba_\bi_\bl_\bb_\bo_\bx _\bf_\bo_\br _\br_\be_\ba_\bd_\bi_\bn_\bg
        Usage: close-hook _\br_\be_\bg_\be_\bx_\bp '_\bc_\bo_\bm_\bm_\ba_\bn_\bd'
 
        This is used to close the folder that was open with the _\bo_\bp_\be_\bn_\b-_\bh_\bo_\bo_\bk (section
-       4.19.1  , page 65) command after some changes were made to it.
+       4.19.1  , page 66) command after some changes were made to it.
 
        The Mutt Next Generation E-Mail Client                                       67
 
        The _\bc_\bo_\bm_\bm_\ba_\bn_\bd string is the command that can be used for closing the folders
        whose names match _\br_\be_\bg_\be_\bx_\bp. It has the same format as in the _\bo_\bp_\be_\bn_\b-_\bh_\bo_\bo_\bk (section
-       4.19.1  , page 65) command. Temporary folder in this case is the folder previ-
-       ously produced by the <_\bo_\bp_\be_\bn_\b-_\bh_\bo_\bo_\bk (section 4.19.1  , page 65) command.
+       4.19.1  , page 66) command. Temporary folder in this case is the folder previ-
+       ously produced by the <_\bo_\bp_\be_\bn_\b-_\bh_\bo_\bo_\bk (section 4.19.1  , page 66) command.
 
        The _\bc_\bo_\bm_\bm_\ba_\bn_\bd should n\bno\bot\bt remove the decompressed file. The _\bc_\bo_\bm_\bm_\ba_\bn_\bd should return
        non-zero exit status if it fails, so mutt knows something's wrong.
 
        This command is used for saving to an existing compressed folder.  The _\bc_\bo_\bm_\bm_\ba_\bn_\bd
        is the command that can be used for appending to the folders whose names match
-       _\br_\be_\bg_\be_\bx_\bp. It has the same format as in the _\bo_\bp_\be_\bn_\b-_\bh_\bo_\bo_\bk (section 4.19.1  , page 65)
+       _\br_\be_\bg_\be_\bx_\bp. It has the same format as in the _\bo_\bp_\be_\bn_\b-_\bh_\bo_\bo_\bk (section 4.19.1  , page 66)
        command.  The temporary folder in this case contains the messages that are
        being appended.
 
 
             append-hook \\.gz$ "gzip -c %t >> %f"
 
-       When _\ba_\bp_\bp_\be_\bn_\bd_\b-_\bh_\bo_\bo_\bk (section 4.19.3  , page 66) is used, the folder is not opened,
+       When _\ba_\bp_\bp_\be_\bn_\bd_\b-_\bh_\bo_\bo_\bk (section 4.19.3  , page 67) is used, the folder is not opened,
        which saves time, but this means that we can not find out what the folder type
-       is. Thus the default (_\b$_\bm_\bb_\bo_\bx_\b__\bt_\by_\bp_\be (section 7.4.127  , page 117)) type is always
+       is. Thus the default (_\b$_\bm_\bb_\bo_\bx_\b__\bt_\by_\bp_\be (section 7.4.129  , page 118)) type is always
        supposed (i.e.  this is the format used for the temporary folder).
 
        If the file does not exist when you save to it, _\bc_\bl_\bo_\bs_\be_\b-_\bh_\bo_\bo_\bk (section 4.19.2  ,
-       page 66) is called, and not _\ba_\bp_\bp_\be_\bn_\bd_\b-_\bh_\bo_\bo_\bk (section 4.19.3  , page 66). _\ba_\bp_\bp_\be_\bn_\bd_\b-
-       _\bh_\bo_\bo_\bk (section 4.19.3  , page 66) is only for appending to existing folders.
+       page 66) is called, and not _\ba_\bp_\bp_\be_\bn_\bd_\b-_\bh_\bo_\bo_\bk (section 4.19.3  , page 67). _\ba_\bp_\bp_\be_\bn_\bd_\b-
+       _\bh_\bo_\bo_\bk (section 4.19.3  , page 67) is only for appending to existing folders.
 
        If the _\bc_\bo_\bm_\bm_\ba_\bn_\bd is empty, this operation is disabled for this file type. In this
        case, the folder will be open and closed again (using _\bo_\bp_\be_\bn_\b-_\bh_\bo_\bo_\bk (section
-       4.19.1  , page 65) and _\bc_\bl_\bo_\bs_\be_\b-_\bh_\bo_\bo_\bk (section 4.19.2  , page 66)respectively) each
+       4.19.1  , page 66) and _\bc_\bl_\bo_\bs_\be_\b-_\bh_\bo_\bo_\bk (section 4.19.2  , page 66)respectively) each
        time you will add to it.
 
        The Mutt Next Generation E-Mail Client                                       68
        The interpretation of shell meta-characters embedded in MIME parameters can
        lead to security problems in general.  Mutt-ng tries to quote parameters in
        expansion of %s syntaxes properly, and avoids risky characters by substituting
-       them, see the _\bm_\ba_\bi_\bl_\bc_\ba_\bp_\b__\bs_\ba_\bn_\bi_\bt_\bi_\bz_\be (section 7.4.118  , page 115) variable.
+       them, see the _\bm_\ba_\bi_\bl_\bc_\ba_\bp_\b__\bs_\ba_\bn_\bi_\bt_\bi_\bz_\be (section 7.4.120  , page 117) variable.
 
        Although mutt's procedures to invoke programs with mailcap seem to be safe,
        there are other applications parsing mailcap, maybe taking less care of it.
 
              needsterminal
                    Mutt-ng uses this flag when viewing attachments with _\ba_\bu_\bt_\bo_\bv_\bi_\be_\bw (sec-
-                   tion 5.4  , page 75), in order to decide whether it should honor
-                   the setting of the _\b$_\bw_\ba_\bi_\bt_\b__\bk_\be_\by (section 7.4.337  , page 168) variable
+                   tion 5.4  , page 76), in order to decide whether it should honor
+                   the setting of the _\b$_\bw_\ba_\bi_\bt_\b__\bk_\be_\by (section 7.4.339  , page 169) variable
                    or not.  When an attachment is viewed using an interactive program,
                    and the corresponding mailcap entry has a _\bn_\be_\be_\bd_\bs_\bt_\be_\br_\bm_\bi_\bn_\ba_\bl flag, Mutt-
-                   ng will use _\b$_\bw_\ba_\bi_\bt_\b__\bk_\be_\by (section 7.4.337  , page 168) and the exit
+                   ng will use _\b$_\bw_\ba_\bi_\bt_\b__\bk_\be_\by (section 7.4.339  , page 169) and the exit
                    status of the program to decide if it will ask you to press a key
                    after the external program has exited.  In all other situations it
                    will not prompt you for a key.
        Mutt-ng will skip the image/* entry and use the image/gif entry with the print
        command.
 
-       In addition, you can use this with _\bA_\bu_\bt_\bo_\bv_\bi_\be_\bw (section 5.4  , page 75) to denote
+       In addition, you can use this with _\bA_\bu_\bt_\bo_\bv_\bi_\be_\bw (section 5.4  , page 76) 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
             text/html;      lynx %s; nametemplate=%s.html
             text/html;      lynx -dump %s; nametemplate=%s.html; copiousoutput
 
-       For _\bA_\bu_\bt_\bo_\bv_\bi_\be_\bw (section 5.4  , page 75), Mutt-ng will choose the third entry
+       For _\bA_\bu_\bt_\bo_\bv_\bi_\be_\bw (section 5.4  , page 76), Mutt-ng 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 program
        returns non-zero, Mutt-ng will use the second entry for interactive viewing.
             alternative_order text/enriched text/plain text application/postscript image/*
 
        Next, mutt will check if any of the types have a defined _\ba_\bu_\bt_\bo_\b__\bv_\bi_\be_\bw (section
-       5.4  , page 75), and use that.  Failing that, Mutt-ng will look for any text
+       5.4  , page 76), and use that.  Failing that, Mutt-ng will look for any text
        type.  As a last attempt, mutt will look for any type it knows how to handle.
 
        To remove a MIME type from the alternative_order list, use the unalterna-
        _\b6_\b._\b2  _\bT_\be_\bm_\bp_\bo_\br_\ba_\br_\by _\bF_\bi_\bl_\be_\bs
 
        Mutt-ng uses many temporary files for viewing messages, verifying digital sig-
-       natures, etc. The _\b$_\bu_\bm_\ba_\bs_\bk (section 7.4.328  , page 166) variable can be used to
+       natures, etc. The _\b$_\bu_\bm_\ba_\bs_\bk (section 7.4.330  , page 168) variable can be used to
        change the default permissions of these files. Please only change it if you
        really know what you are doing.  Also, a different location for these files may
-       be desired which can be changed via the _\b$_\bt_\bm_\bp_\bd_\bi_\br (section 7.4.324  , page 165)
+       be desired which can be changed via the _\b$_\bt_\bm_\bp_\bd_\bi_\br (section 7.4.326  , page 167)
        variable.
 
        _\b6_\b._\b3  _\bI_\bn_\bf_\bo_\br_\bm_\ba_\bt_\bi_\bo_\bn _\bL_\be_\ba_\bk_\bs
        step counter which is increased (and rotated) with every message sent. If you'd
        like to hide this information probably telling others how many mail you sent in
        which time, you at least need to remove the %P expando from the default setting
-       of the _\b$_\bm_\bs_\bg_\bi_\bd_\b__\bf_\bo_\br_\bm_\ba_\bt (section 7.4.144  , page 120) variable. Please make sure
+       of the _\b$_\bm_\bs_\bg_\bi_\bd_\b__\bf_\bo_\br_\bm_\ba_\bt (section 7.4.146  , page 122) variable. Please make sure
        that you really know how local parts of these Message-ID: headers are composed.
 
        The Mutt Next Generation E-Mail Client                                       79
        default, mutt-ng will be strict in interpreting them which means that arbitrary
        header fields can be embedded in these links which could override existing
        header fields or attach arbitrary files. This may be problematic if the
-       _\b$_\be_\bd_\bi_\bt_\b__\bh_\be_\ba_\bd_\be_\br_\bs (section 7.4.55  , page 98) variable is _\bu_\bn_\bs_\be_\bt, i.e. the user
+       _\b$_\be_\bd_\bi_\bt_\b__\bh_\be_\ba_\bd_\be_\br_\bs (section 7.4.57  , page 100) variable is _\bu_\bn_\bs_\be_\bt, i.e. the user
        doesn't want to see header fields while editing the message.
 
        For example, following a link like
        will send out the user's private gnupg keyring to joe@host if the user doesn't
        follow the information on screen carefully enough.
 
-       When _\bu_\bn_\bs_\be_\bt_\bt_\bi_\bn_\bg the _\b$_\bs_\bt_\br_\bi_\bc_\bt_\b__\bm_\ba_\bi_\bl_\bt_\bo (section 7.4.312  , page 162) variable, mutt-
+       When _\bu_\bn_\bs_\be_\bt_\bt_\bi_\bn_\bg the _\b$_\bs_\bt_\br_\bi_\bc_\bt_\b__\bm_\ba_\bi_\bl_\bt_\bo (section 7.4.314  , page 164) variable, mutt-
        ng will
 
           +\bo be less strict when interpreting these links by prepending a X-Mailto-
             string to all header fields embedded in such a link _\ba_\bn_\bd
 
-          +\bo turn on the _\b$_\be_\bd_\bi_\bt_\b__\bh_\be_\ba_\bd_\be_\br_\bs (section 7.4.55  , page 98) variable by force to
-            let the user see all the headers (because they still may leak informa-
+          +\bo turn on the _\b$_\be_\bd_\bi_\bt_\b__\bh_\be_\ba_\bd_\be_\br_\bs (section 7.4.57  , page 100) variable by force
+            to let the user see all the headers (because they still may leak informa-
             tion.)
 
        _\b6_\b._\b4  _\bE_\bx_\bt_\be_\br_\bn_\ba_\bl _\ba_\bp_\bp_\bl_\bi_\bc_\ba_\bt_\bi_\bo_\bn_\bs
 
        One of these is the mailcap mechanism as defined by RfC 1524. Mutt-ng can be
        set up to _\ba_\bu_\bt_\bo_\bm_\ba_\bt_\bi_\bc_\ba_\bl_\bl_\by execute any given utility as listed in one of the mail-
-       cap files (see the _\b$_\bm_\ba_\bi_\bl_\bc_\ba_\bp_\b__\bp_\ba_\bt_\bh (section 7.4.117  , page 115) variable for
+       cap files (see the _\b$_\bm_\ba_\bi_\bl_\bc_\ba_\bp_\b__\bp_\ba_\bt_\bh (section 7.4.119  , page 116) variable for
        details.)
 
        These utilities may have a variety of security vulnerabilities, including over-
 
           +\bo keep the software packages referenced in the mailcap file up to date
 
-          +\bo leave the _\b$_\bm_\ba_\bi_\bl_\bc_\ba_\bp_\b__\bs_\ba_\bn_\bi_\bt_\bi_\bz_\be (section 7.4.118  , page 115) variable in its
+          +\bo leave the _\b$_\bm_\ba_\bi_\bl_\bc_\ba_\bp_\b__\bs_\ba_\bn_\bi_\bt_\bi_\bz_\be (section 7.4.120  , page 117) variable in its
             default state to restrict mailcap expandos to a safe set of characters
 
        _\b6_\b._\b4_\b._\b2  _\bO_\bt_\bh_\be_\br
                             alternates or any alias)
 
        Where EXPR, USER, ID, and SUBJECT are _\br_\be_\bg_\bu_\bl_\ba_\br _\be_\bx_\bp_\br_\be_\bs_\bs_\bi_\bo_\bn_\bs (section 4.1  , page
-       45).  Special attention has to be made when using regular expressions inside of
+       46).  Special attention has to be made when using regular expressions inside of
        patterns.  Specifically, Mutt-ng's parser for these patterns will strip one
        level of backslash (\), which is normally used for quoting.  If it is your
        intention to use a backslash in the regular expression, you will need to use
 
           +\bo _\bu_\bn_\ba_\bl_\bi_\ba_\bs (section 3.3  , page 23) [ * | _\bk_\be_\by ... ]
 
-          +\bo _\ba_\bl_\bt_\be_\br_\bn_\ba_\bt_\be_\bs (section 3.10  , page 30) _\br_\be_\bg_\be_\bx_\bp [ _\br_\be_\bg_\be_\bx_\bp ... ]
+          +\bo _\ba_\bl_\bt_\be_\br_\bn_\ba_\bt_\be_\bs (section 3.10  , page 31) _\br_\be_\bg_\be_\bx_\bp [ _\br_\be_\bg_\be_\bx_\bp ... ]
 
-          +\bo _\bu_\bn_\ba_\bl_\bt_\be_\br_\bn_\ba_\bt_\be_\bs (section 3.10  , page 30) [ * | _\br_\be_\bg_\be_\bx_\bp ... ]
+          +\bo _\bu_\bn_\ba_\bl_\bt_\be_\br_\bn_\ba_\bt_\be_\bs (section 3.10  , page 31) [ * | _\br_\be_\bg_\be_\bx_\bp ... ]
 
-          +\bo _\ba_\bl_\bt_\be_\br_\bn_\ba_\bt_\bi_\bv_\be_\b__\bo_\br_\bd_\be_\br (section 5.5  , page 76) _\bm_\bi_\bm_\be_\bt_\by_\bp_\be [ _\bm_\bi_\bm_\be_\bt_\by_\bp_\be ... ]
+          +\bo _\ba_\bl_\bt_\be_\br_\bn_\ba_\bt_\bi_\bv_\be_\b__\bo_\br_\bd_\be_\br (section 5.5  , page 77) _\bm_\bi_\bm_\be_\bt_\by_\bp_\be [ _\bm_\bi_\bm_\be_\bt_\by_\bp_\be ... ]
 
-          +\bo _\bu_\bn_\ba_\bl_\bt_\be_\br_\bn_\ba_\bt_\bi_\bv_\be_\b__\bo_\br_\bd_\be_\br (section 5.5  , page 76) _\bm_\bi_\bm_\be_\bt_\by_\bp_\be [ _\bm_\bi_\bm_\be_\bt_\by_\bp_\be ... ]
+          +\bo _\bu_\bn_\ba_\bl_\bt_\be_\br_\bn_\ba_\bt_\bi_\bv_\be_\b__\bo_\br_\bd_\be_\br (section 5.5  , page 77) _\bm_\bi_\bm_\be_\bt_\by_\bp_\be [ _\bm_\bi_\bm_\be_\bt_\by_\bp_\be ... ]
 
-          +\bo _\ba_\bp_\bp_\be_\bn_\bd_\b-_\bh_\bo_\bo_\bk (section 4.19.3  , page 66) _\br_\be_\bg_\be_\bx_\bp _\bc_\bo_\bm_\bm_\ba_\bn_\bd
+          +\bo _\ba_\bp_\bp_\be_\bn_\bd_\b-_\bh_\bo_\bo_\bk (section 4.19.3  , page 67) _\br_\be_\bg_\be_\bx_\bp _\bc_\bo_\bm_\bm_\ba_\bn_\bd
 
-          +\bo _\ba_\bu_\bt_\bo_\b__\bv_\bi_\be_\bw (section 5.4  , page 75) _\bm_\bi_\bm_\be_\bt_\by_\bp_\be [ _\bm_\bi_\bm_\be_\bt_\by_\bp_\be ... ]
+          +\bo _\ba_\bu_\bt_\bo_\b__\bv_\bi_\be_\bw (section 5.4  , page 76) _\bm_\bi_\bm_\be_\bt_\by_\bp_\be [ _\bm_\bi_\bm_\be_\bt_\by_\bp_\be ... ]
 
-          +\bo _\bu_\bn_\ba_\bu_\bt_\bo_\b__\bv_\bi_\be_\bw (section 5.4  , page 75) _\bm_\bi_\bm_\be_\bt_\by_\bp_\be [ _\bm_\bi_\bm_\be_\bt_\by_\bp_\be ... ]
+          +\bo _\bu_\bn_\ba_\bu_\bt_\bo_\b__\bv_\bi_\be_\bw (section 5.4  , page 76) _\bm_\bi_\bm_\be_\bt_\by_\bp_\be [ _\bm_\bi_\bm_\be_\bt_\by_\bp_\be ... ]
 
           +\bo _\bb_\bi_\bn_\bd (section 3.4  , page 24) _\bm_\ba_\bp _\bk_\be_\by _\bf_\bu_\bn_\bc_\bt_\bi_\bo_\bn
 
 
           +\bo _\bc_\bl_\bo_\bs_\be_\b-_\bh_\bo_\bo_\bk (section 4.19.2  , page 66) _\br_\be_\bg_\be_\bx_\bp _\bc_\bo_\bm_\bm_\ba_\bn_\bd
 
-          +\bo _\bc_\bo_\bl_\bo_\br (section 3.8  , page 27) _\bo_\bb_\bj_\be_\bc_\bt _\bf_\bo_\br_\be_\bg_\br_\bo_\bu_\bn_\bd _\bb_\ba_\bc_\bk_\bg_\br_\bo_\bu_\bn_\bd [ _\br_\be_\bg_\be_\bx_\bp ]
+          +\bo _\bc_\bo_\bl_\bo_\br (section 3.8  , page 28) _\bo_\bb_\bj_\be_\bc_\bt _\bf_\bo_\br_\be_\bg_\br_\bo_\bu_\bn_\bd _\bb_\ba_\bc_\bk_\bg_\br_\bo_\bu_\bn_\bd [ _\br_\be_\bg_\be_\bx_\bp ]
 
-          +\bo _\bu_\bn_\bc_\bo_\bl_\bo_\br (section 3.8  , page 27) _\bi_\bn_\bd_\be_\bx _\bp_\ba_\bt_\bt_\be_\br_\bn [ _\bp_\ba_\bt_\bt_\be_\br_\bn ... ]
+          +\bo _\bu_\bn_\bc_\bo_\bl_\bo_\br (section 3.8  , page 28) _\bi_\bn_\bd_\be_\bx _\bp_\ba_\bt_\bt_\be_\br_\bn [ _\bp_\ba_\bt_\bt_\be_\br_\bn ... ]
 
-          +\bo _\be_\bx_\be_\bc (section 3.24  , page 38) _\bf_\bu_\bn_\bc_\bt_\bi_\bo_\bn [ _\bf_\bu_\bn_\bc_\bt_\bi_\bo_\bn ... ]
+          +\bo _\be_\bx_\be_\bc (section 3.24  , page 39) _\bf_\bu_\bn_\bc_\bt_\bi_\bo_\bn [ _\bf_\bu_\bn_\bc_\bt_\bi_\bo_\bn ... ]
 
           +\bo _\bf_\bc_\bc_\b-_\bh_\bo_\bo_\bk (section 3.18  , page 36) _\bp_\ba_\bt_\bt_\be_\br_\bn _\bm_\ba_\bi_\bl_\bb_\bo_\bx
 
-          +\bo _\bf_\bc_\bc_\b-_\bs_\ba_\bv_\be_\b-_\bh_\bo_\bo_\bk (section 3.19  , page 36) _\bp_\ba_\bt_\bt_\be_\br_\bn _\bm_\ba_\bi_\bl_\bb_\bo_\bx
+          +\bo _\bf_\bc_\bc_\b-_\bs_\ba_\bv_\be_\b-_\bh_\bo_\bo_\bk (section 3.19  , page 37) _\bp_\ba_\bt_\bt_\be_\br_\bn _\bm_\ba_\bi_\bl_\bb_\bo_\bx
 
           +\bo _\bf_\bo_\bl_\bd_\be_\br_\b-_\bh_\bo_\bo_\bk (section 3.6  , page 26) _\bp_\ba_\bt_\bt_\be_\br_\bn _\bc_\bo_\bm_\bm_\ba_\bn_\bd
 
-          +\bo _\bh_\bd_\br_\b__\bo_\br_\bd_\be_\br (section 3.16  , page 35) _\bh_\be_\ba_\bd_\be_\br [ _\bh_\be_\ba_\bd_\be_\br ... ]
+          +\bo _\bh_\bd_\br_\b__\bo_\br_\bd_\be_\br (section 3.16  , page 36) _\bh_\be_\ba_\bd_\be_\br [ _\bh_\be_\ba_\bd_\be_\br ... ]
 
-          +\bo _\bu_\bn_\bh_\bd_\br_\b__\bo_\br_\bd_\be_\br (section 3.16  , page 35) _\bh_\be_\ba_\bd_\be_\br [ _\bh_\be_\ba_\bd_\be_\br ... ]
+          +\bo _\bu_\bn_\bh_\bd_\br_\b__\bo_\br_\bd_\be_\br (section 3.16  , page 36) _\bh_\be_\ba_\bd_\be_\br [ _\bh_\be_\ba_\bd_\be_\br ... ]
 
           +\bo _\bi_\bc_\bo_\bn_\bv_\b-_\bh_\bo_\bo_\bk (section 3.5  , page 26) _\bc_\bh_\ba_\br_\bs_\be_\bt _\bl_\bo_\bc_\ba_\bl_\b-_\bc_\bh_\ba_\br_\bs_\be_\bt
 
 
           +\bo _\bm_\bb_\bo_\bx_\b-_\bh_\bo_\bo_\bk (section 3.13  , page 34) _\bp_\ba_\bt_\bt_\be_\br_\bn _\bm_\ba_\bi_\bl_\bb_\bo_\bx
 
-          +\bo _\bm_\be_\bs_\bs_\ba_\bg_\be_\b-_\bh_\bo_\bo_\bk (section 3.21  , page 37) _\bp_\ba_\bt_\bt_\be_\br_\bn _\bc_\bo_\bm_\bm_\ba_\bn_\bd
+          +\bo _\bm_\be_\bs_\bs_\ba_\bg_\be_\b-_\bh_\bo_\bo_\bk (section 3.21  , page 38) _\bp_\ba_\bt_\bt_\be_\br_\bn _\bc_\bo_\bm_\bm_\ba_\bn_\bd
 
-          +\bo _\bm_\bi_\bm_\be_\b__\bl_\bo_\bo_\bk_\bu_\bp (section 5.6  , page 76) _\bm_\bi_\bm_\be_\bt_\by_\bp_\be [ _\bm_\bi_\bm_\be_\bt_\by_\bp_\be ... ]
+          +\bo _\bm_\bi_\bm_\be_\b__\bl_\bo_\bo_\bk_\bu_\bp (section 5.6  , page 77) _\bm_\bi_\bm_\be_\bt_\by_\bp_\be [ _\bm_\bi_\bm_\be_\bt_\by_\bp_\be ... ]
 
-          +\bo _\bu_\bn_\bm_\bi_\bm_\be_\b__\bl_\bo_\bo_\bk_\bu_\bp (section 5.6  , page 76) _\bm_\bi_\bm_\be_\bt_\by_\bp_\be [ _\bm_\bi_\bm_\be_\bt_\by_\bp_\be ... ]
+          +\bo _\bu_\bn_\bm_\bi_\bm_\be_\b__\bl_\bo_\bo_\bk_\bu_\bp (section 5.6  , page 77) _\bm_\bi_\bm_\be_\bt_\by_\bp_\be [ _\bm_\bi_\bm_\be_\bt_\by_\bp_\be ... ]
 
-          +\bo _\bm_\bo_\bn_\bo (section 3.8  , page 27) _\bo_\bb_\bj_\be_\bc_\bt _\ba_\bt_\bt_\br_\bi_\bb_\bu_\bt_\be [ _\br_\be_\bg_\be_\bx_\bp ]
+          +\bo _\bm_\bo_\bn_\bo (section 3.8  , page 28) _\bo_\bb_\bj_\be_\bc_\bt _\ba_\bt_\bt_\br_\bi_\bb_\bu_\bt_\be [ _\br_\be_\bg_\be_\bx_\bp ]
 
-          +\bo _\bu_\bn_\bm_\bo_\bn_\bo (section 3.8  , page 27) _\bi_\bn_\bd_\be_\bx _\bp_\ba_\bt_\bt_\be_\br_\bn [ _\bp_\ba_\bt_\bt_\be_\br_\bn ... ]
+          +\bo _\bu_\bn_\bm_\bo_\bn_\bo (section 3.8  , page 28) _\bi_\bn_\bd_\be_\bx _\bp_\ba_\bt_\bt_\be_\br_\bn [ _\bp_\ba_\bt_\bt_\be_\br_\bn ... ]
 
           +\bo _\bm_\by_\b__\bh_\bd_\br (section 3.15  , page 35) _\bs_\bt_\br_\bi_\bn_\bg
 
           +\bo _\bu_\bn_\bm_\by_\b__\bh_\bd_\br (section 3.15  , page 35) _\bf_\bi_\be_\bl_\bd [ _\bf_\bi_\be_\bl_\bd ... ]
 
-          +\bo _\bo_\bp_\be_\bn_\b-_\bh_\bo_\bo_\bk (section 4.19.1  , page 65) _\br_\be_\bg_\be_\bx_\bp _\bc_\bo_\bm_\bm_\ba_\bn_\bd
+          +\bo _\bo_\bp_\be_\bn_\b-_\bh_\bo_\bo_\bk (section 4.19.1  , page 66) _\br_\be_\bg_\be_\bx_\bp _\bc_\bo_\bm_\bm_\ba_\bn_\bd
 
           +\bo _\bc_\br_\by_\bp_\bt_\b-_\bh_\bo_\bo_\bk (section 3.22  , page 38) _\bp_\ba_\bt_\bt_\be_\br_\bn _\bk_\be_\by_\b-_\bi_\bd
 
           +\bo _\bp_\bu_\bs_\bh (section 3.23  , page 38) _\bs_\bt_\br_\bi_\bn_\bg
 
-          +\bo _\br_\be_\bs_\be_\bt (section 3.27  , page 41) _\bv_\ba_\br_\bi_\ba_\bb_\bl_\be [_\bv_\ba_\br_\bi_\ba_\bb_\bl_\be ... ]
+          +\bo _\br_\be_\bs_\be_\bt (section 3.27  , page 42) _\bv_\ba_\br_\bi_\ba_\bb_\bl_\be [_\bv_\ba_\br_\bi_\ba_\bb_\bl_\be ... ]
 
           +\bo _\bs_\ba_\bv_\be_\b-_\bh_\bo_\bo_\bk (section 3.17  , page 36) _\br_\be_\bg_\be_\bx_\bp _\bf_\bi_\bl_\be_\bn_\ba_\bm_\be
 
-          +\bo _\bs_\bc_\bo_\br_\be (section 3.25  , page 38) _\bp_\ba_\bt_\bt_\be_\br_\bn _\bv_\ba_\bl_\bu_\be
+          +\bo _\bs_\bc_\bo_\br_\be (section 3.25  , page 39) _\bp_\ba_\bt_\bt_\be_\br_\bn _\bv_\ba_\bl_\bu_\be
 
-          +\bo _\bu_\bn_\bs_\bc_\bo_\br_\be (section 3.25  , page 38) _\bp_\ba_\bt_\bt_\be_\br_\bn [ _\bp_\ba_\bt_\bt_\be_\br_\bn ... ]
+          +\bo _\bu_\bn_\bs_\bc_\bo_\br_\be (section 3.25  , page 39) _\bp_\ba_\bt_\bt_\be_\br_\bn [ _\bp_\ba_\bt_\bt_\be_\br_\bn ... ]
 
           +\bo _\bs_\be_\bn_\bd_\b-_\bh_\bo_\bo_\bk (section 3.20  , page 37) _\br_\be_\bg_\be_\bx_\bp _\bc_\bo_\bm_\bm_\ba_\bn_\bd
 
           +\bo _\br_\be_\bp_\bl_\by_\b-_\bh_\bo_\bo_\bk (section , page ) _\br_\be_\bg_\be_\bx_\bp _\bc_\bo_\bm_\bm_\ba_\bn_\bd
 
-          +\bo _\bs_\be_\bt (section 3.27  , page 41) [no|inv]_\bv_\ba_\br_\bi_\ba_\bb_\bl_\be[=_\bv_\ba_\bl_\bu_\be] [ _\bv_\ba_\br_\bi_\ba_\bb_\bl_\be ... ]
+          +\bo _\bs_\be_\bt (section 3.27  , page 42) [no|inv]_\bv_\ba_\br_\bi_\ba_\bb_\bl_\be[=_\bv_\ba_\bl_\bu_\be] [ _\bv_\ba_\br_\bi_\ba_\bb_\bl_\be ... ]
 
-          +\bo _\bu_\bn_\bs_\be_\bt (section 3.27  , page 41) _\bv_\ba_\br_\bi_\ba_\bb_\bl_\be [_\bv_\ba_\br_\bi_\ba_\bb_\bl_\be ... ]
+          +\bo _\bu_\bn_\bs_\be_\bt (section 3.27  , page 42) _\bv_\ba_\br_\bi_\ba_\bb_\bl_\be [_\bv_\ba_\br_\bi_\ba_\bb_\bl_\be ... ]
 
-          +\bo _\bs_\bo_\bu_\br_\bc_\be (section 3.28  , page 42) _\bf_\bi_\bl_\be_\bn_\ba_\bm_\be
+          +\bo _\bs_\bo_\bu_\br_\bc_\be (section 3.28  , page 43) _\bf_\bi_\bl_\be_\bn_\ba_\bm_\be
 
           +\bo _\bs_\bp_\ba_\bm (section 3.26  , page 40) _\bp_\ba_\bt_\bt_\be_\br_\bn _\bf_\bo_\br_\bm_\ba_\bt
 
 
           +\bo _\bu_\bn_\bs_\bu_\bb_\bs_\bc_\br_\bi_\bb_\be (section 3.12  , page 33) _\br_\be_\bg_\be_\bx_\bp [ _\br_\be_\bg_\be_\bx_\bp ... ]
 
-          +\bo _\bt_\bo_\bg_\bg_\bl_\be (section 3.27  , page 41) _\bv_\ba_\br_\bi_\ba_\bb_\bl_\be [_\bv_\ba_\br_\bi_\ba_\bb_\bl_\be ... ]
+          +\bo _\bt_\bo_\bg_\bg_\bl_\be (section 3.27  , page 42) _\bv_\ba_\br_\bi_\ba_\bb_\bl_\be [_\bv_\ba_\br_\bi_\ba_\bb_\bl_\be ... ]
 
           +\bo _\bu_\bn_\bh_\bo_\bo_\bk (section 3.29  , page 43) _\bh_\bo_\bo_\bk_\b-_\bt_\by_\bp_\be
 
 
        A complete list of current variables follows.
 
-       _\b7_\b._\b4_\b._\b1  _\ba_\bb_\bo_\br_\bt_\b__\bn_\bo_\bs_\bu_\bb_\bj_\be_\bc_\bt
+       _\b7_\b._\b4_\b._\b1  _\ba_\bb_\bo_\br_\bt_\b__\bn_\bo_\ba_\bt_\bt_\ba_\bc_\bh
 
        Type: quadoption
 
-       Default: ask-yes
+       Default: no
 
-       If set to _\by_\be_\bs, when composing messages and no subject is given at the subject
+       This variable specifies whether to abort sending if no attachment was made but
 
        The Mutt Next Generation E-Mail Client                                       87
 
+       the content references them, i.e. the content matches the regular expression
+       given in $attach_remind_regexp. If a match was found and this variable is set
+       to _\by_\be_\bs, message sending will be aborted but the mail will be send nevertheless
+       if set to _\bn_\bo.
+
+       This variable and $attach_remind_regexp are intended to remind the user to
+       attach files if the message's text references them.
+
+       See also the $attach_remind_regexp variable.
+
+       _\b7_\b._\b4_\b._\b2  _\ba_\bb_\bo_\br_\bt_\b__\bn_\bo_\bs_\bu_\bb_\bj_\be_\bc_\bt
+
+       Type: quadoption
+
+       Default: ask-yes
+
+       If set to _\by_\be_\bs, when composing messages and no subject is given at the subject
        prompt, composition will be aborted.  If set to _\bn_\bo, composing messages with no
        subject given at the subject prompt will never be aborted.
 
-       _\b7_\b._\b4_\b._\b2  _\ba_\bb_\bo_\br_\bt_\b__\bu_\bn_\bm_\bo_\bd_\bi_\bf_\bi_\be_\bd
+       _\b7_\b._\b4_\b._\b3  _\ba_\bb_\bo_\br_\bt_\b__\bu_\bn_\bm_\bo_\bd_\bi_\bf_\bi_\be_\bd
 
        Type: quadoption
 
        body if no changes are made to the file (this check only happens after the
        _\bf_\bi_\br_\bs_\bt edit of the file).  When set to _\bn_\bo, composition will never be aborted.
 
-       _\b7_\b._\b4_\b._\b3  _\ba_\bl_\bi_\ba_\bs_\b__\bf_\bi_\bl_\be
+       _\b7_\b._\b4_\b._\b4  _\ba_\bl_\bi_\ba_\bs_\b__\bf_\bi_\bl_\be
 
        Type: path
 
        tion 2.5.4  , page 11)'' function.
 
        N\bNo\bot\bte\be:\b: Mutt-ng will not automatically source this file; you must explicitly use
-       the ``_\bs_\bo_\bu_\br_\bc_\be (section 3.28  , page 42)'' command for it to be executed.
+       the ``_\bs_\bo_\bu_\br_\bc_\be (section 3.28  , page 43)'' command for it to be executed.
 
-       _\b7_\b._\b4_\b._\b4  _\ba_\bl_\bi_\ba_\bs_\b__\bf_\bo_\br_\bm_\ba_\bt
+       _\b7_\b._\b4_\b._\b5  _\ba_\bl_\bi_\ba_\bs_\b__\bf_\bo_\br_\bm_\ba_\bt
 
        Type: string
 
              %a
                    alias name
 
+       The Mutt Next Generation E-Mail Client                                       88
+
              %f
                    flags - currently, a 'd' for an alias marked for deletion
 
              %t
                    character which indicates if the alias is tagged for inclusion
 
-       _\b7_\b._\b4_\b._\b5  _\ba_\bl_\bl_\bo_\bw_\b__\b8_\bb_\bi_\bt
+       _\b7_\b._\b4_\b._\b6  _\ba_\bl_\bl_\bo_\bw_\b__\b8_\bb_\bi_\bt
 
        Type: boolean
 
        Default: yes
 
-       The Mutt Next Generation E-Mail Client                                       88
-
        Controls whether 8-bit data is converted to 7-bit using either quoted-printable
        or base64 encoding when sending mail.
 
-       _\b7_\b._\b4_\b._\b6  _\ba_\bl_\bl_\bo_\bw_\b__\ba_\bn_\bs_\bi
+       _\b7_\b._\b4_\b._\b7  _\ba_\bl_\bl_\bo_\bw_\b__\ba_\bn_\bs_\bi
 
        Type: boolean
 
        sage could include a line like ``[-- PGP output follows ...' and give it the
        same color as your attachment color.
 
-       _\b7_\b._\b4_\b._\b7  _\ba_\br_\br_\bo_\bw_\b__\bc_\bu_\br_\bs_\bo_\br
+       _\b7_\b._\b4_\b._\b8  _\ba_\br_\br_\bo_\bw_\b__\bc_\bu_\br_\bs_\bo_\br
 
        Type: boolean
 
        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.
 
-       _\b7_\b._\b4_\b._\b8  _\ba_\bs_\bc_\bi_\bi_\b__\bc_\bh_\ba_\br_\bs
+       _\b7_\b._\b4_\b._\b9  _\ba_\bs_\bc_\bi_\bi_\b__\bc_\bh_\ba_\br_\bs
 
        Type: boolean
 
        If _\bs_\be_\bt, Mutt-ng will use plain ASCII characters when displaying thread and
        attachment trees, instead of the default ACS characters.
 
-       _\b7_\b._\b4_\b._\b9  _\ba_\bs_\bk_\bb_\bc_\bc
+       The Mutt Next Generation E-Mail Client                                       89
+
+       _\b7_\b._\b4_\b._\b1_\b0  _\ba_\bs_\bk_\bb_\bc_\bc
 
        Type: boolean
 
        If _\bs_\be_\bt, Mutt-ng will prompt you for blind-carbon-copy (Bcc) recipients before
        editing an outgoing message.
 
-       _\b7_\b._\b4_\b._\b1_\b0  _\ba_\bs_\bk_\bc_\bc
+       _\b7_\b._\b4_\b._\b1_\b1  _\ba_\bs_\bk_\bc_\bc
 
        Type: boolean
 
        If _\bs_\be_\bt, Mutt-ng will prompt you for carbon-copy (Cc) recipients before editing
        the body of an outgoing message.
 
-       The Mutt Next Generation E-Mail Client                                       89
-
-       _\b7_\b._\b4_\b._\b1_\b1  _\ba_\bs_\bs_\bu_\bm_\be_\bd_\b__\bc_\bh_\ba_\br_\bs_\be_\bt
+       _\b7_\b._\b4_\b._\b1_\b2  _\ba_\bs_\bs_\bu_\bm_\be_\bd_\b__\bc_\bh_\ba_\br_\bs_\be_\bt
 
        Type: string
 
        set assumed_charset='iso-2022-jp:euc-jp:shift_jis:utf-8'
 
        However, only the first content is valid for the message body.  This variable
-       is valid only if _\b$_\bs_\bt_\br_\bi_\bc_\bt_\b__\bm_\bi_\bm_\be (section 7.4.313  , page 163) is unset.
+       is valid only if _\b$_\bs_\bt_\br_\bi_\bc_\bt_\b__\bm_\bi_\bm_\be (section 7.4.315  , page 164) is unset.
 
-       _\b7_\b._\b4_\b._\b1_\b2  _\ba_\bt_\bt_\ba_\bc_\bh_\b__\bf_\bo_\br_\bm_\ba_\bt
+       _\b7_\b._\b4_\b._\b1_\b3  _\ba_\bt_\bt_\ba_\bc_\bh_\b__\bf_\bo_\br_\bm_\ba_\bt
 
        Type: string
 
              %D
                    deleted flag
 
+       The Mutt Next Generation E-Mail Client                                       90
+
              %d
                    description
 
              %M
                    MIME subtype
 
-       The Mutt Next Generation E-Mail Client                                       90
-
              %n
                    attachment number
 
              %|X
                    pad to the end of the line with character 'X'
 
-       _\b7_\b._\b4_\b._\b1_\b3  _\ba_\bt_\bt_\ba_\bc_\bh_\b__\bs_\be_\bp
+       _\b7_\b._\b4_\b._\b1_\b4  _\ba_\bt_\bt_\ba_\bc_\bh_\b__\br_\be_\bm_\bi_\bn_\bd_\b__\br_\be_\bg_\be_\bx_\bp
+
+       Type: regular expression
+
+       Default: 'attach'
+
+       If this variable is non-empty, muttng will scan a message's contents before
+       sending for this regular expression. If it is found, it will ask for what to do
+       depending on the setting of $abort_noattach.
+
+       This variable and $abort_noattach are intended to remind the user to attach
+       files if the message's text references them.
+
+       _\b7_\b._\b4_\b._\b1_\b5  _\ba_\bt_\bt_\ba_\bc_\bh_\b__\bs_\be_\bp
+
+       The Mutt Next Generation E-Mail Client                                       91
 
        Type: string
 
        The separator to add between attachments when operating (saving, printing, pip-
        ing, etc) on a list of tagged attachments.
 
-       _\b7_\b._\b4_\b._\b1_\b4  _\ba_\bt_\bt_\ba_\bc_\bh_\b__\bs_\bp_\bl_\bi_\bt
+       _\b7_\b._\b4_\b._\b1_\b6  _\ba_\bt_\bt_\ba_\bc_\bh_\b__\bs_\bp_\bl_\bi_\bt
 
        Type: boolean
 
 
        If this variable is _\bu_\bn_\bs_\be_\bt, when operating (saving, printing, piping, etc) on a
        list of tagged attachments, Mutt-ng will concatenate the attachments and will
-       operate on them as a single attachment. The ``_\b$_\ba_\bt_\bt_\ba_\bc_\bh_\b__\bs_\be_\bp (section 7.4.13  ,
-       page 89)'' separator is added after each attachment. When _\bs_\be_\bt, Mutt-ng will
+       operate on them as a single attachment. The ``_\b$_\ba_\bt_\bt_\ba_\bc_\bh_\b__\bs_\be_\bp (section 7.4.15  ,
+       page 91)'' separator is added after each attachment. When _\bs_\be_\bt, Mutt-ng will
        operate on the attachments one by one.
 
-       _\b7_\b._\b4_\b._\b1_\b5  _\ba_\bt_\bt_\br_\bi_\bb_\bu_\bt_\bi_\bo_\bn
+       _\b7_\b._\b4_\b._\b1_\b7  _\ba_\bt_\bt_\br_\bi_\bb_\bu_\bt_\bi_\bo_\bn
 
        Type: string
 
 
        This is the string that will precede a message which has been included in a
        reply.  For a full listing of defined printf(3)-like sequences see the section
-       on ``_\b$_\bi_\bn_\bd_\be_\bx_\b__\bf_\bo_\br_\bm_\ba_\bt (section 7.4.111  , page 111)''.
+       on ``_\b$_\bi_\bn_\bd_\be_\bx_\b__\bf_\bo_\br_\bm_\ba_\bt (section 7.4.113  , page 113)''.
 
-       _\b7_\b._\b4_\b._\b1_\b6  _\ba_\bu_\bt_\bo_\b__\bt_\ba_\bg
-
-       The Mutt Next Generation E-Mail Client                                       91
+       _\b7_\b._\b4_\b._\b1_\b8  _\ba_\bu_\bt_\bo_\b__\bt_\ba_\bg
 
        Type: boolean
 
        ``tag-prefix'' function (default: ';') to make the next function apply to all
        tagged messages.
 
-       _\b7_\b._\b4_\b._\b1_\b7  _\ba_\bu_\bt_\bo_\be_\bd_\bi_\bt
+       _\b7_\b._\b4_\b._\b1_\b9  _\ba_\bu_\bt_\bo_\be_\bd_\bi_\bt
 
        Type: boolean
 
        Default: no
 
-       When _\bs_\be_\bt along with ``_\b$_\be_\bd_\bi_\bt_\b__\bh_\be_\ba_\bd_\be_\br_\bs (section 7.4.55  , page 98)'', Mutt-ng will
-       skip the initial send-menu and allow you to immediately begin editing the body
-       of your message.  The send-menu may still be accessed once you have finished
-       editing the body of your message.
+       When _\bs_\be_\bt along with ``_\b$_\be_\bd_\bi_\bt_\b__\bh_\be_\ba_\bd_\be_\br_\bs (section 7.4.57  , page 100)'', Mutt-ng
+       will skip the initial send-menu and allow you to immediately begin editing the
+       body of your message.  The send-menu may still be accessed once you have fin-
+       ished editing the body of your message.
 
-       Also see ``_\b$_\bf_\ba_\bs_\bt_\b__\br_\be_\bp_\bl_\by (section 7.4.61  , page 99)''.
+       Also see ``_\b$_\bf_\ba_\bs_\bt_\b__\br_\be_\bp_\bl_\by (section 7.4.63  , page 101)''.
 
-       _\b7_\b._\b4_\b._\b1_\b8  _\bb_\be_\be_\bp
+       The Mutt Next Generation E-Mail Client                                       92
+
+       _\b7_\b._\b4_\b._\b2_\b0  _\bb_\be_\be_\bp
 
        Type: boolean
 
 
        When this variable is _\bs_\be_\bt, Mutt-ng will beep when an error occurs.
 
-       _\b7_\b._\b4_\b._\b1_\b9  _\bb_\be_\be_\bp_\b__\bn_\be_\bw
+       _\b7_\b._\b4_\b._\b2_\b1  _\bb_\be_\be_\bp_\b__\bn_\be_\bw
 
        Type: boolean
 
 
        When this variable is _\bs_\be_\bt, Mutt-ng will beep whenever it prints a message noti-
        fying you of new mail.  This is independent of the setting of the ``_\b$_\bb_\be_\be_\bp (sec-
-       tion 7.4.18  , page 90)'' variable.
+       tion 7.4.20  , page 92)'' variable.
 
-       _\b7_\b._\b4_\b._\b2_\b0  _\bb_\bo_\bu_\bn_\bc_\be
+       _\b7_\b._\b4_\b._\b2_\b2  _\bb_\bo_\bu_\bn_\bc_\be
 
        Type: quadoption
 
        _\bn_\bo is not generally useful, and thus not recommended, because you are unable to
        bounce messages.
 
-       _\b7_\b._\b4_\b._\b2_\b1  _\bb_\bo_\bu_\bn_\bc_\be_\b__\bd_\be_\bl_\bi_\bv_\be_\br_\be_\bd
+       _\b7_\b._\b4_\b._\b2_\b3  _\bb_\bo_\bu_\bn_\bc_\be_\b__\bd_\be_\bl_\bi_\bv_\be_\br_\be_\bd
 
        Type: boolean
 
-       The Mutt Next Generation E-Mail Client                                       92
-
        Default: yes
 
        When this variable is _\bs_\be_\bt, Mutt-ng will include Delivered-To: header fields
        when bouncing messages.  Postfix users may wish to _\bu_\bn_\bs_\be_\bt this variable.
 
-       _\b7_\b._\b4_\b._\b2_\b2  _\bb_\br_\ba_\bi_\bl_\bl_\be_\b__\bf_\br_\bi_\be_\bn_\bd_\bl_\by
+       _\b7_\b._\b4_\b._\b2_\b4  _\bb_\br_\ba_\bi_\bl_\bl_\be_\b__\bf_\br_\bi_\be_\bn_\bd_\bl_\by
 
        Type: boolean
 
        option is disabled by default because many visual terminals don't permit making
        the cursor invisible.
 
-       _\b7_\b._\b4_\b._\b2_\b3  _\bc_\be_\br_\bt_\bi_\bf_\bi_\bc_\ba_\bt_\be_\b__\bf_\bi_\bl_\be
+       _\b7_\b._\b4_\b._\b2_\b5  _\bc_\be_\br_\bt_\bi_\bf_\bi_\bc_\ba_\bt_\be_\b__\bf_\bi_\bl_\be
 
        Type: path
 
+       The Mutt Next Generation E-Mail Client                                       93
+
        Default: '~/.mutt_certificates'
 
        Availability: SSL or GNUTLS
 
        Example: set certificate_file=~/.muttng/certificates
 
-       _\b7_\b._\b4_\b._\b2_\b4  _\bc_\bh_\ba_\br_\bs_\be_\bt
+       _\b7_\b._\b4_\b._\b2_\b6  _\bc_\bh_\ba_\br_\bs_\be_\bt
 
        Type: string
 
 
        Character set your terminal uses to display and enter textual data.
 
-       _\b7_\b._\b4_\b._\b2_\b5  _\bc_\bh_\be_\bc_\bk_\b__\bn_\be_\bw
+       _\b7_\b._\b4_\b._\b2_\b7  _\bc_\bh_\be_\bc_\bk_\b__\bn_\be_\bw
 
        Type: boolean
 
 
        When _\bs_\be_\bt, Mutt-ng will check for new mail delivered while the mailbox is open.
        Especially with MH mailboxes, this operation can take quite some time since it
-
-       The Mutt Next Generation E-Mail Client                                       93
-
        involves scanning the directory and checking each file to see if it has already
        been looked at.  If it's _\bu_\bn_\bs_\be_\bt, no check for new mail is performed while the
        mailbox is open.
 
-       _\b7_\b._\b4_\b._\b2_\b6  _\bc_\bo_\bl_\bl_\ba_\bp_\bs_\be_\b__\bu_\bn_\br_\be_\ba_\bd
+       _\b7_\b._\b4_\b._\b2_\b8  _\bc_\bo_\bl_\bl_\ba_\bp_\bs_\be_\b__\bu_\bn_\br_\be_\ba_\bd
 
        Type: boolean
 
        When _\bu_\bn_\bs_\be_\bt, Mutt-ng will not collapse a thread if it contains any unread mes-
        sages.
 
-       _\b7_\b._\b4_\b._\b2_\b7  _\bc_\bo_\bm_\bp_\bo_\bs_\be_\b__\bf_\bo_\br_\bm_\ba_\bt
+       _\b7_\b._\b4_\b._\b2_\b9  _\bc_\bo_\bm_\bp_\bo_\bs_\be_\b__\bf_\bo_\br_\bm_\ba_\bt
 
        Type: string
 
        Default: '-- Mutt-ng: Compose  [Approx. msg size: %l   Atts: %a]%>-'
 
        Controls the format of the status line displayed in the ``compose'' menu.  This
-       string is similar to ``_\b$_\bs_\bt_\ba_\bt_\bu_\bs_\b__\bf_\bo_\br_\bm_\ba_\bt (section 7.4.310  , page 160)'', but has
+       string is similar to ``_\b$_\bs_\bt_\ba_\bt_\bu_\bs_\b__\bf_\bo_\br_\bm_\ba_\bt (section 7.4.312  , page 162)'', but has
+
+       The Mutt Next Generation E-Mail Client                                       94
+
        its own set of printf(3)-like sequences:
 
              %a
              %v
                    Mutt-ng version string
 
-       See the text describing the ``_\b$_\bs_\bt_\ba_\bt_\bu_\bs_\b__\bf_\bo_\br_\bm_\ba_\bt (section 7.4.310  , page 160)''
-       option for more information on how to set ``_\b$_\bc_\bo_\bm_\bp_\bo_\bs_\be_\b__\bf_\bo_\br_\bm_\ba_\bt (section 7.4.27  ,
-       page 92)''.
+       See the text describing the ``_\b$_\bs_\bt_\ba_\bt_\bu_\bs_\b__\bf_\bo_\br_\bm_\ba_\bt (section 7.4.312  , page 162)''
+       option for more information on how to set ``_\b$_\bc_\bo_\bm_\bp_\bo_\bs_\be_\b__\bf_\bo_\br_\bm_\ba_\bt (section 7.4.29  ,
+       page 93)''.
 
-       _\b7_\b._\b4_\b._\b2_\b8  _\bc_\bo_\bn_\bf_\bi_\bg_\b__\bc_\bh_\ba_\br_\bs_\be_\bt
+       _\b7_\b._\b4_\b._\b3_\b0  _\bc_\bo_\bn_\bf_\bi_\bg_\b__\bc_\bh_\ba_\br_\bs_\be_\bt
 
        Type: string
 
 
        When defined, Mutt-ng will recode commands in rc files from this encoding.
 
-       _\b7_\b._\b4_\b._\b2_\b9  _\bc_\bo_\bn_\bf_\bi_\br_\bm_\ba_\bp_\bp_\be_\bn_\bd
+       _\b7_\b._\b4_\b._\b3_\b1  _\bc_\bo_\bn_\bf_\bi_\br_\bm_\ba_\bp_\bp_\be_\bn_\bd
 
        Type: boolean
 
        Default: yes
 
        When _\bs_\be_\bt, Mutt-ng will prompt for confirmation when appending messages to an
-
-       The Mutt Next Generation E-Mail Client                                       94
-
        existing mailbox.
 
-       _\b7_\b._\b4_\b._\b3_\b0  _\bc_\bo_\bn_\bf_\bi_\br_\bm_\bc_\br_\be_\ba_\bt_\be
+       _\b7_\b._\b4_\b._\b3_\b2  _\bc_\bo_\bn_\bf_\bi_\br_\bm_\bc_\br_\be_\ba_\bt_\be
 
        Type: boolean
 
        When _\bs_\be_\bt, Mutt-ng will prompt for confirmation when saving messages to a mail-
        box which does not yet exist before creating it.
 
-       _\b7_\b._\b4_\b._\b3_\b1  _\bc_\bo_\bn_\bn_\be_\bc_\bt_\b__\bt_\bi_\bm_\be_\bo_\bu_\bt
+       _\b7_\b._\b4_\b._\b3_\b3  _\bc_\bo_\bn_\bn_\be_\bc_\bt_\b__\bt_\bi_\bm_\be_\bo_\bu_\bt
 
        Type: number
 
        many seconds if the connection is not able to be established.  A negative value
        causes Mutt-ng to wait indefinitely for the connection to succeed.
 
-       _\b7_\b._\b4_\b._\b3_\b2  _\bc_\bo_\bn_\bt_\be_\bn_\bt_\b__\bt_\by_\bp_\be
+       The Mutt Next Generation E-Mail Client                                       95
+
+       _\b7_\b._\b4_\b._\b3_\b4  _\bc_\bo_\bn_\bt_\be_\bn_\bt_\b__\bt_\by_\bp_\be
 
        Type: string
 
        Sets the default Content-Type: header field for the body of newly composed mes-
        sages.
 
-       _\b7_\b._\b4_\b._\b3_\b3  _\bc_\bo_\bp_\by
+       _\b7_\b._\b4_\b._\b3_\b5  _\bc_\bo_\bp_\by
 
        Type: quadoption
 
        Default: yes
 
        This variable controls whether or not copies of your outgoing messages will be
-       saved for later references.  Also see ``_\b$_\br_\be_\bc_\bo_\br_\bd (section 7.4.232  , page
-       142)'', ``_\b$_\bs_\ba_\bv_\be_\b__\bn_\ba_\bm_\be (section 7.4.243  , page 144)'', ``_\b$_\bf_\bo_\br_\bc_\be_\b__\bn_\ba_\bm_\be (section
-       7.4.69  , page 102)'' and ``_\bf_\bc_\bc_\b-_\bh_\bo_\bo_\bk (section 3.18  , page 36)''.
+       saved for later references.  Also see ``_\b$_\br_\be_\bc_\bo_\br_\bd (section 7.4.234  , page
+       143)'', ``_\b$_\bs_\ba_\bv_\be_\b__\bn_\ba_\bm_\be (section 7.4.245  , page 146)'', ``_\b$_\bf_\bo_\br_\bc_\be_\b__\bn_\ba_\bm_\be (section
+       7.4.71  , page 103)'' and ``_\bf_\bc_\bc_\b-_\bh_\bo_\bo_\bk (section 3.18  , page 36)''.
 
-       _\b7_\b._\b4_\b._\b3_\b4  _\bc_\br_\by_\bp_\bt_\b__\ba_\bu_\bt_\bo_\be_\bn_\bc_\br_\by_\bp_\bt
+       _\b7_\b._\b4_\b._\b3_\b6  _\bc_\br_\by_\bp_\bt_\b__\ba_\bu_\bt_\bo_\be_\bn_\bc_\br_\by_\bp_\bt
 
        Type: boolean
 
        going messages.  This is probably only useful in connection to the _\bs_\be_\bn_\bd_\b-_\bh_\bo_\bo_\bk
        command.  It can be overridden by use of the _\bp_\bg_\bp_\b-_\bm_\be_\bn_\bu, when encryption is not
        required or signing is requested as well.  If ``_\b$_\bs_\bm_\bi_\bm_\be_\b__\bi_\bs_\b__\bd_\be_\bf_\ba_\bu_\bl_\bt (section
-       7.4.279  , page 153)'' is _\bs_\be_\bt, then OpenSSL is used instead to create S/MIME
+       7.4.281  , page 154)'' is _\bs_\be_\bt, then OpenSSL is used instead to create S/MIME
        messages and settings can be overridden by use of the _\bs_\bm_\bi_\bm_\be_\b-_\bm_\be_\bn_\bu.  (Crypto
        only)
 
-       The Mutt Next Generation E-Mail Client                                       95
-
-       _\b7_\b._\b4_\b._\b3_\b5  _\bc_\br_\by_\bp_\bt_\b__\ba_\bu_\bt_\bo_\bp_\bg_\bp
+       _\b7_\b._\b4_\b._\b3_\b7  _\bc_\br_\by_\bp_\bt_\b__\ba_\bu_\bt_\bo_\bp_\bg_\bp
 
        Type: boolean
 
 
        This variable controls whether or not Mutt-ng may automatically enable PGP
        encryption/signing for messages.  See also ``_\b$_\bc_\br_\by_\bp_\bt_\b__\ba_\bu_\bt_\bo_\be_\bn_\bc_\br_\by_\bp_\bt (section
-       7.4.34  , page 93)'', ``_\b$_\bc_\br_\by_\bp_\bt_\b__\br_\be_\bp_\bl_\by_\be_\bn_\bc_\br_\by_\bp_\bt (section 7.4.38  , page 94)'',
-       ``_\b$_\bc_\br_\by_\bp_\bt_\b__\ba_\bu_\bt_\bo_\bs_\bi_\bg_\bn (section 7.4.36  , page 94)'', ``_\b$_\bc_\br_\by_\bp_\bt_\b__\br_\be_\bp_\bl_\by_\bs_\bi_\bg_\bn (section
-       7.4.39  , page 94)'' and ``_\b$_\bs_\bm_\bi_\bm_\be_\b__\bi_\bs_\b__\bd_\be_\bf_\ba_\bu_\bl_\bt (section 7.4.279  , page 153)''.
+       7.4.36  , page 95)'', ``_\b$_\bc_\br_\by_\bp_\bt_\b__\br_\be_\bp_\bl_\by_\be_\bn_\bc_\br_\by_\bp_\bt (section 7.4.40  , page 96)'',
+       ``_\b$_\bc_\br_\by_\bp_\bt_\b__\ba_\bu_\bt_\bo_\bs_\bi_\bg_\bn (section 7.4.38  , page 95)'', ``_\b$_\bc_\br_\by_\bp_\bt_\b__\br_\be_\bp_\bl_\by_\bs_\bi_\bg_\bn (section
+       7.4.41  , page 96)'' and ``_\b$_\bs_\bm_\bi_\bm_\be_\b__\bi_\bs_\b__\bd_\be_\bf_\ba_\bu_\bl_\bt (section 7.4.281  , page 154)''.
 
-       _\b7_\b._\b4_\b._\b3_\b6  _\bc_\br_\by_\bp_\bt_\b__\ba_\bu_\bt_\bo_\bs_\bi_\bg_\bn
+       _\b7_\b._\b4_\b._\b3_\b8  _\bc_\br_\by_\bp_\bt_\b__\ba_\bu_\bt_\bo_\bs_\bi_\bg_\bn
 
        Type: boolean
 
 
        Setting this variable will cause Mutt-ng to always attempt to cryptographically
        sign outgoing messages.  This can be overridden by use of the _\bp_\bg_\bp_\b-_\bm_\be_\bn_\bu, when
+
+       The Mutt Next Generation E-Mail Client                                       96
+
        signing is not required or encryption is requested as well. If
-       ``_\b$_\bs_\bm_\bi_\bm_\be_\b__\bi_\bs_\b__\bd_\be_\bf_\ba_\bu_\bl_\bt (section 7.4.279  , page 153)'' is _\bs_\be_\bt, then OpenSSL is
+       ``_\b$_\bs_\bm_\bi_\bm_\be_\b__\bi_\bs_\b__\bd_\be_\bf_\ba_\bu_\bl_\bt (section 7.4.281  , page 154)'' is _\bs_\be_\bt, then OpenSSL is
        used instead to create S/MIME messages and settings can be overridden by use of
        the _\bs_\bm_\bi_\bm_\be_\b-_\bm_\be_\bn_\bu.  (Crypto only)
 
-       _\b7_\b._\b4_\b._\b3_\b7  _\bc_\br_\by_\bp_\bt_\b__\ba_\bu_\bt_\bo_\bs_\bm_\bi_\bm_\be
+       _\b7_\b._\b4_\b._\b3_\b9  _\bc_\br_\by_\bp_\bt_\b__\ba_\bu_\bt_\bo_\bs_\bm_\bi_\bm_\be
 
        Type: boolean
 
 
        This variable controls whether or not Mutt-ng may automatically enable S/MIME
        encryption/signing for messages. See also ``_\b$_\bc_\br_\by_\bp_\bt_\b__\ba_\bu_\bt_\bo_\be_\bn_\bc_\br_\by_\bp_\bt (section
-       7.4.34  , page 93)'', ``_\b$_\bc_\br_\by_\bp_\bt_\b__\br_\be_\bp_\bl_\by_\be_\bn_\bc_\br_\by_\bp_\bt (section 7.4.38  , page 94)'',
-       ``_\b$_\bc_\br_\by_\bp_\bt_\b__\ba_\bu_\bt_\bo_\bs_\bi_\bg_\bn (section 7.4.36  , page 94)'', ``_\b$_\bc_\br_\by_\bp_\bt_\b__\br_\be_\bp_\bl_\by_\bs_\bi_\bg_\bn (section
-       7.4.39  , page 94)'' and ``_\b$_\bs_\bm_\bi_\bm_\be_\b__\bi_\bs_\b__\bd_\be_\bf_\ba_\bu_\bl_\bt (section 7.4.279  , page 153)''.
+       7.4.36  , page 95)'', ``_\b$_\bc_\br_\by_\bp_\bt_\b__\br_\be_\bp_\bl_\by_\be_\bn_\bc_\br_\by_\bp_\bt (section 7.4.40  , page 96)'',
+       ``_\b$_\bc_\br_\by_\bp_\bt_\b__\ba_\bu_\bt_\bo_\bs_\bi_\bg_\bn (section 7.4.38  , page 95)'', ``_\b$_\bc_\br_\by_\bp_\bt_\b__\br_\be_\bp_\bl_\by_\bs_\bi_\bg_\bn (section
+       7.4.41  , page 96)'' and ``_\b$_\bs_\bm_\bi_\bm_\be_\b__\bi_\bs_\b__\bd_\be_\bf_\ba_\bu_\bl_\bt (section 7.4.281  , page 154)''.
 
-       _\b7_\b._\b4_\b._\b3_\b8  _\bc_\br_\by_\bp_\bt_\b__\br_\be_\bp_\bl_\by_\be_\bn_\bc_\br_\by_\bp_\bt
+       _\b7_\b._\b4_\b._\b4_\b0  _\bc_\br_\by_\bp_\bt_\b__\br_\be_\bp_\bl_\by_\be_\bn_\bc_\br_\by_\bp_\bt
 
        Type: boolean
 
        If _\bs_\be_\bt, automatically PGP or OpenSSL encrypt replies to messages which are
        encrypted.  (Crypto only)
 
-       _\b7_\b._\b4_\b._\b3_\b9  _\bc_\br_\by_\bp_\bt_\b__\br_\be_\bp_\bl_\by_\bs_\bi_\bg_\bn
+       _\b7_\b._\b4_\b._\b4_\b1  _\bc_\br_\by_\bp_\bt_\b__\br_\be_\bp_\bl_\by_\bs_\bi_\bg_\bn
 
        Type: boolean
 
 
        If _\bs_\be_\bt, automatically PGP or OpenSSL sign replies to messages which are signed.
 
-       The Mutt Next Generation E-Mail Client                                       96
-
        N\bNo\bot\bte\be:\b: this does not work on messages that are encrypted a\ban\bnd\bd signed!  (Crypto
        only)
 
-       _\b7_\b._\b4_\b._\b4_\b0  _\bc_\br_\by_\bp_\bt_\b__\br_\be_\bp_\bl_\by_\bs_\bi_\bg_\bn_\be_\bn_\bc_\br_\by_\bp_\bt_\be_\bd
+       _\b7_\b._\b4_\b._\b4_\b2  _\bc_\br_\by_\bp_\bt_\b__\br_\be_\bp_\bl_\by_\bs_\bi_\bg_\bn_\be_\bn_\bc_\br_\by_\bp_\bt_\be_\bd
 
        Type: boolean
 
 
        If _\bs_\be_\bt, automatically PGP or OpenSSL sign replies to messages which are
        encrypted. This makes sense in combination with ``_\b$_\bc_\br_\by_\bp_\bt_\b__\br_\be_\bp_\bl_\by_\be_\bn_\bc_\br_\by_\bp_\bt (section
-       7.4.38  , page 94)'', because it allows you to sign all messages which are
+       7.4.40  , page 96)'', because it allows you to sign all messages which are
        automatically encrypted.  This works around the problem noted in
-       ``_\b$_\bc_\br_\by_\bp_\bt_\b__\br_\be_\bp_\bl_\by_\bs_\bi_\bg_\bn (section 7.4.39  , page 94)'', that Mutt-ng is not able to
+       ``_\b$_\bc_\br_\by_\bp_\bt_\b__\br_\be_\bp_\bl_\by_\bs_\bi_\bg_\bn (section 7.4.41  , page 96)'', that Mutt-ng is not able to
        find out whether an encrypted message is also signed.  (Crypto only)
 
-       _\b7_\b._\b4_\b._\b4_\b1  _\bc_\br_\by_\bp_\bt_\b__\bt_\bi_\bm_\be_\bs_\bt_\ba_\bm_\bp
+       _\b7_\b._\b4_\b._\b4_\b3  _\bc_\br_\by_\bp_\bt_\b__\bt_\bi_\bm_\be_\bs_\bt_\ba_\bm_\bp
 
        Type: boolean
 
+       The Mutt Next Generation E-Mail Client                                       97
+
        Default: yes
 
        If _\bs_\be_\bt, Mutt-ng will include a time stamp in the lines surrounding PGP or
        ors to mark these lines, and rely on these, you may _\bu_\bn_\bs_\be_\bt this setting.
        (Crypto only)
 
-       _\b7_\b._\b4_\b._\b4_\b2  _\bc_\br_\by_\bp_\bt_\b__\bu_\bs_\be_\b__\bg_\bp_\bg_\bm_\be
+       _\b7_\b._\b4_\b._\b4_\b4  _\bc_\br_\by_\bp_\bt_\b__\bu_\bs_\be_\b__\bg_\bp_\bg_\bm_\be
 
        Type: boolean
 
        N\bNo\bot\bte\be: You need to use this option in your .muttngrc configuration file as it
        won't have any effect when used interactively.
 
-       _\b7_\b._\b4_\b._\b4_\b3  _\bc_\br_\by_\bp_\bt_\b__\bv_\be_\br_\bi_\bf_\by_\b__\bs_\bi_\bg
+       _\b7_\b._\b4_\b._\b4_\b5  _\bc_\br_\by_\bp_\bt_\b__\bv_\be_\br_\bi_\bf_\by_\b__\bs_\bi_\bg
 
        Type: quadoption
 
        whether or not to verify the signature.  If ``_\bn_\bo'', never attempt to verify
        cryptographic signatures.  (Crypto only)
 
-       _\b7_\b._\b4_\b._\b4_\b4  _\bd_\ba_\bt_\be_\b__\bf_\bo_\br_\bm_\ba_\bt
+       _\b7_\b._\b4_\b._\b4_\b6  _\bd_\ba_\bt_\be_\b__\bf_\bo_\br_\bm_\ba_\bt
 
        Type: string
 
-       The Mutt Next Generation E-Mail Client                                       97
-
        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
-       ``_\b$_\bi_\bn_\bd_\be_\bx_\b__\bf_\bo_\br_\bm_\ba_\bt (section 7.4.111  , page 111)''.  This is passed to strftime(3)
+       ``_\b$_\bi_\bn_\bd_\be_\bx_\b__\bf_\bo_\br_\bm_\ba_\bt (section 7.4.113  , page 113)''.  This is passed to strftime(3)
        to process the date.
 
        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
-       ``_\b$_\bl_\bo_\bc_\ba_\bl_\be (section 7.4.115  , page 114)''. If the first character in the string
+       ``_\b$_\bl_\bo_\bc_\ba_\bl_\be (section 7.4.117  , page 116)''. 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 _\bC locale (that is in US English).
 
-       _\b7_\b._\b4_\b._\b4_\b5  _\bd_\be_\bf_\ba_\bu_\bl_\bt_\b__\bh_\bo_\bo_\bk
+       _\b7_\b._\b4_\b._\b4_\b7  _\bd_\be_\bf_\ba_\bu_\bl_\bt_\b__\bh_\bo_\bo_\bk
 
        Type: string
 
 
        This variable controls how send-hooks, message-hooks, save-hooks, and fcc-hooks
        will be interpreted if they are specified with only a simple regexp, instead of
+
+       The Mutt Next Generation E-Mail Client                                       98
+
        a matching pattern.  The hooks are expanded when they are declared, so a hook
        will be interpreted according to the value of this variable at the time the
        hook is declared.  The default value matches if the message is either from a
        address matches ``alternates'') and is to or cc'ed to a user matching the given
        regular expression.
 
-       _\b7_\b._\b4_\b._\b4_\b6  _\bd_\be_\bl_\be_\bt_\be
+       _\b7_\b._\b4_\b._\b4_\b8  _\bd_\be_\bl_\be_\bt_\be
 
        Type: quadoption
 
        be purged without prompting.  If set to _\bn_\bo, messages marked for deletion will
        be kept in the mailbox.
 
-       _\b7_\b._\b4_\b._\b4_\b7  _\bd_\be_\bl_\be_\bt_\be_\b__\bs_\bp_\ba_\bc_\be
+       _\b7_\b._\b4_\b._\b4_\b9  _\bd_\be_\bl_\be_\bt_\be_\b__\bs_\bp_\ba_\bc_\be
 
        Type: boolean
 
        N\bNo\bot\bte\be:\b: this variable only has an effect on _\bo_\bu_\bt_\bg_\bo_\bi_\bn_\bg messages (if $text_flowed is
        _\bs_\be_\bt) but not on incomming.
 
-       _\b7_\b._\b4_\b._\b4_\b8  _\bd_\be_\bl_\be_\bt_\be_\b__\bu_\bn_\bt_\ba_\bg
-
-       The Mutt Next Generation E-Mail Client                                       98
+       _\b7_\b._\b4_\b._\b5_\b0  _\bd_\be_\bl_\be_\bt_\be_\b__\bu_\bn_\bt_\ba_\bg
 
        Type: boolean
 
        tion.  This applies when you either explicitly delete a message, or when you
        save it to another folder.
 
-       _\b7_\b._\b4_\b._\b4_\b9  _\bd_\bi_\bg_\be_\bs_\bt_\b__\bc_\bo_\bl_\bl_\ba_\bp_\bs_\be
+       _\b7_\b._\b4_\b._\b5_\b1  _\bd_\bi_\bg_\be_\bs_\bt_\b__\bc_\bo_\bl_\bl_\ba_\bp_\bs_\be
 
        Type: boolean
 
        subparts of individual messages in a multipart/digest.  To see these subparts,
        press 'v' on that menu.
 
-       _\b7_\b._\b4_\b._\b5_\b0  _\bd_\bi_\bs_\bp_\bl_\ba_\by_\b__\bf_\bi_\bl_\bt_\be_\br
+       _\b7_\b._\b4_\b._\b5_\b2  _\bd_\bi_\bs_\bp_\bl_\ba_\by_\b__\bf_\bi_\bl_\bt_\be_\br
+
+       The Mutt Next Generation E-Mail Client                                       99
 
        Type: path
 
        Default: ''
 
        When _\bs_\be_\bt, specifies a command used to filter messages.  When a message is
-       viewed it is passed as standard input to _\b$_\bd_\bi_\bs_\bp_\bl_\ba_\by_\b__\bf_\bi_\bl_\bt_\be_\br (section 7.4.50  ,
-       page 97), and the filtered message is read from the standard output.
+       viewed it is passed as standard input to _\b$_\bd_\bi_\bs_\bp_\bl_\ba_\by_\b__\bf_\bi_\bl_\bt_\be_\br (section 7.4.52  ,
+       page 98), and the filtered message is read from the standard output.
 
-       _\b7_\b._\b4_\b._\b5_\b1  _\bd_\bo_\bt_\bl_\bo_\bc_\bk_\b__\bp_\br_\bo_\bg_\br_\ba_\bm
+       _\b7_\b._\b4_\b._\b5_\b3  _\bd_\bo_\bt_\bl_\bo_\bc_\bk_\b__\bp_\br_\bo_\bg_\br_\ba_\bm
 
        Type: path
 
 
        Contains the path of the muttng_dotlock(1) binary to be used by Mutt-ng.
 
-       _\b7_\b._\b4_\b._\b5_\b2  _\bd_\bs_\bn_\b__\bn_\bo_\bt_\bi_\bf_\by
+       _\b7_\b._\b4_\b._\b5_\b4  _\bd_\bs_\bn_\b__\bn_\bo_\bt_\bi_\bf_\by
 
        Type: string
 
 
        Example: set dsn_notify='failure,delay'
 
-       The Mutt Next Generation E-Mail Client                                       99
-
-       _\b7_\b._\b4_\b._\b5_\b3  _\bd_\bs_\bn_\b__\br_\be_\bt_\bu_\br_\bn
+       _\b7_\b._\b4_\b._\b5_\b5  _\bd_\bs_\bn_\b__\br_\be_\bt_\bu_\br_\bn
 
        Type: string
 
 
        Example: set dsn_return=hdrs
 
-       _\b7_\b._\b4_\b._\b5_\b4  _\bd_\bu_\bp_\bl_\bi_\bc_\ba_\bt_\be_\b__\bt_\bh_\br_\be_\ba_\bd_\bs
+       _\b7_\b._\b4_\b._\b5_\b6  _\bd_\bu_\bp_\bl_\bi_\bc_\ba_\bt_\be_\b__\bt_\bh_\br_\be_\ba_\bd_\bs
 
        Type: boolean
 
+       The Mutt Next Generation E-Mail Client                                      100
+
        Default: yes
 
        This variable controls whether Mutt-ng, when sorting by threads, threads mes-
        indicate that it thinks they are duplicates of each other with an equals sign
        in the thread diagram.
 
-       _\b7_\b._\b4_\b._\b5_\b5  _\be_\bd_\bi_\bt_\b__\bh_\be_\ba_\bd_\be_\br_\bs
+       _\b7_\b._\b4_\b._\b5_\b7  _\be_\bd_\bi_\bt_\b__\bh_\be_\ba_\bd_\be_\br_\bs
 
        Type: boolean
 
        This option allows you to edit the header of your outgoing messages along with
        the body of your message.
 
-       _\b7_\b._\b4_\b._\b5_\b6  _\be_\bd_\bi_\bt_\bo_\br
+       _\b7_\b._\b4_\b._\b5_\b8  _\be_\bd_\bi_\bt_\bo_\br
 
        Type: path
 
        value of the $VISUAL, or $EDITOR, environment variable, or to the string 'vi'
        if neither of those are set.
 
-       _\b7_\b._\b4_\b._\b5_\b7  _\be_\bn_\bc_\bo_\bd_\be_\b__\bf_\br_\bo_\bm
+       _\b7_\b._\b4_\b._\b5_\b9  _\be_\bn_\bc_\bo_\bd_\be_\b__\bf_\br_\bo_\bm
 
        Type: boolean
 
        When _\bs_\be_\bt, Mutt-ng will quoted-printable encode messages when they contain the
        string ``From '' (note the trailing space) in the beginning of a line. Useful
        to avoid the tampering certain mail delivery and transport agents tend to do
-
-       The Mutt Next Generation E-Mail Client                                      100
-
        with messages.
 
        N\bNo\bot\bte\be:\b: as mutt-ng currently violates RfC3676 defining format=flowed, it's
        Alternatively, you must take care of space-stuffing <tt/From / lines (with a
        trailing space) yourself.
 
-       _\b7_\b._\b4_\b._\b5_\b8  _\be_\bn_\bt_\br_\bo_\bp_\by_\b__\bf_\bi_\bl_\be
+       _\b7_\b._\b4_\b._\b6_\b0  _\be_\bn_\bt_\br_\bo_\bp_\by_\b__\bf_\bi_\bl_\be
 
        Type: path
 
        The file which includes random data that is used to initialize SSL library
        functions.
 
-       _\b7_\b._\b4_\b._\b5_\b9  _\be_\bn_\bv_\be_\bl_\bo_\bp_\be_\b__\bf_\br_\bo_\bm
+       The Mutt Next Generation E-Mail Client                                      101
+
+       _\b7_\b._\b4_\b._\b6_\b1  _\be_\bn_\bv_\be_\bl_\bo_\bp_\be_\b__\bf_\br_\bo_\bm
 
        Type: boolean
 
        When _\bs_\be_\bt, Mutt-ng will try to derive the message's _\be_\bn_\bv_\be_\bl_\bo_\bp_\be sender from the
        ``From:'' header field. Note that this information is passed to the sendmail
        command using the ``-f' command line switch, so don't set this option if you
-       are using that switch in _\b$_\bs_\be_\bn_\bd_\bm_\ba_\bi_\bl (section 7.4.249  , page 146) yourself, or
+       are using that switch in _\b$_\bs_\be_\bn_\bd_\bm_\ba_\bi_\bl (section 7.4.251  , page 147) yourself, or
        if the sendmail on your machine doesn't support that command line switch.
 
-       _\b7_\b._\b4_\b._\b6_\b0  _\be_\bs_\bc_\ba_\bp_\be
+       _\b7_\b._\b4_\b._\b6_\b2  _\be_\bs_\bc_\ba_\bp_\be
 
        Type: string
 
 
        Escape character to use for functions in the builtin editor.
 
-       _\b7_\b._\b4_\b._\b6_\b1  _\bf_\ba_\bs_\bt_\b__\br_\be_\bp_\bl_\by
+       _\b7_\b._\b4_\b._\b6_\b3  _\bf_\ba_\bs_\bt_\b__\br_\be_\bp_\bl_\by
 
        Type: boolean
 
        ing to messages, and the initial prompt for subject is skipped when forwarding
        messages.
 
-       N\bNo\bot\bte\be:\b: this variable has no effect when the ``_\b$_\ba_\bu_\bt_\bo_\be_\bd_\bi_\bt (section 7.4.17  , page
-       90)'' variable is _\bs_\be_\bt.
+       N\bNo\bot\bte\be:\b: this variable has no effect when the ``_\b$_\ba_\bu_\bt_\bo_\be_\bd_\bi_\bt (section 7.4.19  , page
+       91)'' variable is _\bs_\be_\bt.
 
-       _\b7_\b._\b4_\b._\b6_\b2  _\bf_\bc_\bc_\b__\ba_\bt_\bt_\ba_\bc_\bh
+       _\b7_\b._\b4_\b._\b6_\b4  _\bf_\bc_\bc_\b__\ba_\bt_\bt_\ba_\bc_\bh
 
        Type: boolean
 
-       The Mutt Next Generation E-Mail Client                                      101
-
        Default: yes
 
        This variable controls whether or not attachments on outgoing messages are
        saved along with the main body of your message.
 
-       _\b7_\b._\b4_\b._\b6_\b3  _\bf_\bc_\bc_\b__\bc_\bl_\be_\ba_\br
+       _\b7_\b._\b4_\b._\b6_\b5  _\bf_\bc_\bc_\b__\bc_\bl_\be_\ba_\br
 
        Type: boolean
 
        When this variable is _\bs_\be_\bt, FCCs will be stored unencrypted and unsigned, even
        when the actual message is encrypted and/or signed.  (PGP only)
 
-       _\b7_\b._\b4_\b._\b6_\b4  _\bf_\bi_\bl_\be_\b__\bc_\bh_\ba_\br_\bs_\be_\bt
+       _\b7_\b._\b4_\b._\b6_\b6  _\bf_\bi_\bl_\be_\b__\bc_\bh_\ba_\br_\bs_\be_\bt
 
        Type: string
 
+       The Mutt Next Generation E-Mail Client                                      102
+
        Default: ''
 
        This variable is a colon-separated list of character encoding schemes for text
-       file attatchments.  If _\bu_\bn_\bs_\be_\bt, _\b$_\bc_\bh_\ba_\br_\bs_\be_\bt (section 7.4.24  , page 91) value will
+       file attatchments.  If _\bu_\bn_\bs_\be_\bt, _\b$_\bc_\bh_\ba_\br_\bs_\be_\bt (section 7.4.26  , page 93) value will
        be used instead.  For example, the following configuration would work for
        Japanese text handling:
 
        Note: ``iso-2022-*'' must be put at the head of the value as shown above if
        included.
 
-       _\b7_\b._\b4_\b._\b6_\b5  _\bf_\bo_\bl_\bd_\be_\br
+       _\b7_\b._\b4_\b._\b6_\b7  _\bf_\bo_\bl_\bd_\be_\br
 
        Type: path
 
        that the assignment occurs _\bb_\be_\bf_\bo_\br_\be you use ``+'' or ``='' for any other vari-
        ables since expansion takes place during the ``set'' command.
 
-       _\b7_\b._\b4_\b._\b6_\b6  _\bf_\bo_\bl_\bd_\be_\br_\b__\bf_\bo_\br_\bm_\ba_\bt
+       _\b7_\b._\b4_\b._\b6_\b8  _\bf_\bo_\bl_\bd_\be_\br_\b__\bf_\bo_\br_\bm_\ba_\bt
 
        Type: string
 
        Default: '%2C %t %N %F %2l %-8.8u %-8.8g %8s %d %f'
 
        This variable allows you to customize the file browser display to your personal
-       taste.  This string is similar to ``_\b$_\bi_\bn_\bd_\be_\bx_\b__\bf_\bo_\br_\bm_\ba_\bt (section 7.4.111  , page
-       111)'', but has its own set of printf(3)-like sequences:
+       taste.  This string is similar to ``_\b$_\bi_\bn_\bd_\be_\bx_\b__\bf_\bo_\br_\bm_\ba_\bt (section 7.4.113  , page
+       113)'', but has its own set of printf(3)-like sequences:
 
              %C
                    current file number
 
-       The Mutt Next Generation E-Mail Client                                      102
-
              %d
                    date/time folder was last modified
 
              %N
                    N if folder has new mail, blank otherwise
 
+       The Mutt Next Generation E-Mail Client                                      103
+
              %s
                    size in bytes
 
              %|X
                    pad to the end of the line with character 'X'
 
-       _\b7_\b._\b4_\b._\b6_\b7  _\bf_\bo_\bl_\bl_\bo_\bw_\bu_\bp_\b__\bt_\bo
+       _\b7_\b._\b4_\b._\b6_\b9  _\bf_\bo_\bl_\bl_\bo_\bw_\bu_\bp_\b__\bt_\bo
 
        Type: boolean
 
        a subscribed list will be sent to both the list and your address, resulting in
        two copies of the same email for you.
 
-       The Mutt Next Generation E-Mail Client                                      103
-
-       _\b7_\b._\b4_\b._\b6_\b8  _\bf_\bo_\br_\bc_\be_\b__\bb_\bu_\bf_\bf_\by_\b__\bc_\bh_\be_\bc_\bk
+       _\b7_\b._\b4_\b._\b7_\b0  _\bf_\bo_\br_\bc_\be_\b__\bb_\bu_\bf_\bf_\by_\b__\bc_\bh_\be_\bc_\bk
 
        Type: boolean
 
        is invoked. When _\bu_\bn_\bs_\be_\bt, _\bb_\bu_\bf_\bf_\by_\b__\bl_\bi_\bs_\bt will just list all mailboxes which are
        already known to have new mail.
 
-       Also see the following variables: ``_\b$_\bt_\bi_\bm_\be_\bo_\bu_\bt (section 7.4.323  , page 165)'',
-       ``_\b$_\bm_\ba_\bi_\bl_\b__\bc_\bh_\be_\bc_\bk (section 7.4.116  , page 114)'' and ``_\b$_\bi_\bm_\ba_\bp_\b__\bm_\ba_\bi_\bl_\b__\bc_\bh_\be_\bc_\bk (section
-       7.4.100  , page 109)''.
+       Also see the following variables: ``_\b$_\bt_\bi_\bm_\be_\bo_\bu_\bt (section 7.4.325  , page 166)'',
+       ``_\b$_\bm_\ba_\bi_\bl_\b__\bc_\bh_\be_\bc_\bk (section 7.4.118  , page 116)'' and ``_\b$_\bi_\bm_\ba_\bp_\b__\bm_\ba_\bi_\bl_\b__\bc_\bh_\be_\bc_\bk (section
+       7.4.102  , page 110)''.
 
-       _\b7_\b._\b4_\b._\b6_\b9  _\bf_\bo_\br_\bc_\be_\b__\bn_\ba_\bm_\be
+       _\b7_\b._\b4_\b._\b7_\b1  _\bf_\bo_\br_\bc_\be_\b__\bn_\ba_\bm_\be
 
        Type: boolean
 
        Default: no
 
-       This variable is similar to ``_\b$_\bs_\ba_\bv_\be_\b__\bn_\ba_\bm_\be (section 7.4.243  , page 144)'',
+       The Mutt Next Generation E-Mail Client                                      104
+
+       This variable is similar to ``_\b$_\bs_\ba_\bv_\be_\b__\bn_\ba_\bm_\be (section 7.4.245  , page 146)'',
        except that Mutt-ng 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 ``_\b$_\br_\be_\bc_\bo_\br_\bd (section 7.4.232  , page 142)'' variable.
+       Also see the ``_\b$_\br_\be_\bc_\bo_\br_\bd (section 7.4.234  , page 143)'' variable.
 
-       _\b7_\b._\b4_\b._\b7_\b0  _\bf_\bo_\br_\bw_\ba_\br_\bd_\b__\bd_\be_\bc_\bo_\bd_\be
+       _\b7_\b._\b4_\b._\b7_\b2  _\bf_\bo_\br_\bw_\ba_\br_\bd_\b__\bd_\be_\bc_\bo_\bd_\be
 
        Type: boolean
 
 
        Controls the decoding of complex MIME messages into text/plain when forwarding
        a message.  The message header is also RFC2047 decoded.  This variable is only
-       used, if ``_\b$_\bm_\bi_\bm_\be_\b__\bf_\bo_\br_\bw_\ba_\br_\bd (section 7.4.138  , page 119)'' is _\bu_\bn_\bs_\be_\bt, otherwise
-       ``_\b$_\bm_\bi_\bm_\be_\b__\bf_\bo_\br_\bw_\ba_\br_\bd_\b__\bd_\be_\bc_\bo_\bd_\be (section 7.4.139  , page 119)'' is used instead.
+       used, if ``_\b$_\bm_\bi_\bm_\be_\b__\bf_\bo_\br_\bw_\ba_\br_\bd (section 7.4.140  , page 120)'' is _\bu_\bn_\bs_\be_\bt, otherwise
+       ``_\b$_\bm_\bi_\bm_\be_\b__\bf_\bo_\br_\bw_\ba_\br_\bd_\b__\bd_\be_\bc_\bo_\bd_\be (section 7.4.141  , page 121)'' is used instead.
 
-       _\b7_\b._\b4_\b._\b7_\b1  _\bf_\bo_\br_\bw_\ba_\br_\bd_\b__\bd_\be_\bc_\br_\by_\bp_\bt
+       _\b7_\b._\b4_\b._\b7_\b3  _\bf_\bo_\br_\bw_\ba_\br_\bd_\b__\bd_\be_\bc_\br_\by_\bp_\bt
 
        Type: boolean
 
 
        Controls the handling of encrypted messages when forwarding a message.  When
        _\bs_\be_\bt, the outer layer of encryption is stripped off.  This variable is only used
-       if ``_\b$_\bm_\bi_\bm_\be_\b__\bf_\bo_\br_\bw_\ba_\br_\bd (section 7.4.138  , page 119)'' is _\bs_\be_\bt and ``_\b$_\bm_\bi_\bm_\be_\b__\bf_\bo_\br_\b-
-       _\bw_\ba_\br_\bd_\b__\bd_\be_\bc_\bo_\bd_\be (section 7.4.139  , page 119)'' is _\bu_\bn_\bs_\be_\bt.  (PGP only)
+       if ``_\b$_\bm_\bi_\bm_\be_\b__\bf_\bo_\br_\bw_\ba_\br_\bd (section 7.4.140  , page 120)'' is _\bs_\be_\bt and ``_\b$_\bm_\bi_\bm_\be_\b__\bf_\bo_\br_\b-
+       _\bw_\ba_\br_\bd_\b__\bd_\be_\bc_\bo_\bd_\be (section 7.4.141  , page 121)'' is _\bu_\bn_\bs_\be_\bt.  (PGP only)
 
-       _\b7_\b._\b4_\b._\b7_\b2  _\bf_\bo_\br_\bw_\ba_\br_\bd_\b__\be_\bd_\bi_\bt
+       _\b7_\b._\b4_\b._\b7_\b4  _\bf_\bo_\br_\bw_\ba_\br_\bd_\b__\be_\bd_\bi_\bt
 
        Type: quadoption
 
        Default: yes
 
-       The Mutt Next Generation E-Mail Client                                      104
-
        This quadoption controls whether or not the user is automatically placed in the
        editor when forwarding messages.  For those who always want to forward with no
        modification, use a setting of _\bn_\bo.
 
-       _\b7_\b._\b4_\b._\b7_\b3  _\bf_\bo_\br_\bw_\ba_\br_\bd_\b__\bf_\bo_\br_\bm_\ba_\bt
+       _\b7_\b._\b4_\b._\b7_\b5  _\bf_\bo_\br_\bw_\ba_\br_\bd_\b__\bf_\bo_\br_\bm_\ba_\bt
 
        Type: string
 
        Default: '[%a: %s]'
 
        This variable controls the default subject when forwarding a message.  It uses
-       the same format sequences as the ``_\b$_\bi_\bn_\bd_\be_\bx_\b__\bf_\bo_\br_\bm_\ba_\bt (section 7.4.111  , page
-       111)'' variable.
+       the same format sequences as the ``_\b$_\bi_\bn_\bd_\be_\bx_\b__\bf_\bo_\br_\bm_\ba_\bt (section 7.4.113  , page
+       113)'' variable.
 
-       _\b7_\b._\b4_\b._\b7_\b4  _\bf_\bo_\br_\bw_\ba_\br_\bd_\b__\bq_\bu_\bo_\bt_\be
+       _\b7_\b._\b4_\b._\b7_\b6  _\bf_\bo_\br_\bw_\ba_\br_\bd_\b__\bq_\bu_\bo_\bt_\be
 
        Type: boolean
 
        Default: no
 
+       The Mutt Next Generation E-Mail Client                                      105
+
        When _\bs_\be_\bt forwarded messages included in the main body of the message (when
-       ``_\b$_\bm_\bi_\bm_\be_\b__\bf_\bo_\br_\bw_\ba_\br_\bd (section 7.4.138  , page 119)'' is _\bu_\bn_\bs_\be_\bt) will be quoted using
-       ``_\b$_\bi_\bn_\bd_\be_\bn_\bt_\b__\bs_\bt_\br_\bi_\bn_\bg (section 7.4.110  , page 111)''.
+       ``_\b$_\bm_\bi_\bm_\be_\b__\bf_\bo_\br_\bw_\ba_\br_\bd (section 7.4.140  , page 120)'' is _\bu_\bn_\bs_\be_\bt) will be quoted using
+       ``_\b$_\bi_\bn_\bd_\be_\bn_\bt_\b__\bs_\bt_\br_\bi_\bn_\bg (section 7.4.112  , page 113)''.
 
-       _\b7_\b._\b4_\b._\b7_\b5  _\bf_\br_\bo_\bm
+       _\b7_\b._\b4_\b._\b7_\b7  _\bf_\br_\bo_\bm
 
        Type: e-mail address
 
        Default: ''
 
        This variable contains a default from address.  It can be overridden using
-       my_hdr (including from send-hooks) and ``_\b$_\br_\be_\bv_\be_\br_\bs_\be_\b__\bn_\ba_\bm_\be (section 7.4.238  , page
-       143)''.  This variable is ignored if ``_\b$_\bu_\bs_\be_\b__\bf_\br_\bo_\bm (section 7.4.332  , page
-       167)'' is unset.
+       my_hdr (including from send-hooks) and ``_\b$_\br_\be_\bv_\be_\br_\bs_\be_\b__\bn_\ba_\bm_\be (section 7.4.240  , page
+       145)''.  This variable is ignored if ``_\b$_\bu_\bs_\be_\b__\bf_\br_\bo_\bm (section 7.4.334  , page
+       168)'' is unset.
 
        E.g. you can use send-hook Mutt-ng-devel@lists.berlios.de 'my_hdr From: Foo Bar
        <foo@bar.fb>' when replying to the mutt-ng developer's mailing list and Mutt-ng
 
        Defaults to the contents of the environment variable $EMAIL.
 
-       _\b7_\b._\b4_\b._\b7_\b6  _\bg_\be_\bc_\bo_\bs_\b__\bm_\ba_\bs_\bk
+       _\b7_\b._\b4_\b._\b7_\b8  _\bg_\be_\bc_\bo_\bs_\b__\bm_\ba_\bs_\bk
 
        Type: regular expression
 
        do: set gecos_mask='.*'.
 
        This can be useful if you see the following behavior: you address a e-mail to
-
-       The Mutt Next Generation E-Mail Client                                      105
-
        user ID stevef whose full name is Steve Franklin.  If Mutt-ng expands stevef to
        ``Franklin'' stevef@foo.bar then you should set the gecos_mask to a regular
        expression that will match the whole name so Mutt-ng will expand ``Franklin''
        to ``Franklin, Steve''.
 
-       _\b7_\b._\b4_\b._\b7_\b7  _\bh_\bd_\br_\bs
+       _\b7_\b._\b4_\b._\b7_\b9  _\bh_\bd_\br_\bs
 
        Type: boolean
 
        ing a new message or replying in order to take effect.  If _\bs_\be_\bt, the user
        defined header fields are added to every new message.
 
-       _\b7_\b._\b4_\b._\b7_\b8  _\bh_\be_\ba_\bd_\be_\br
+       _\b7_\b._\b4_\b._\b8_\b0  _\bh_\be_\ba_\bd_\be_\br
 
        Type: boolean
 
+       The Mutt Next Generation E-Mail Client                                      106
+
        Default: no
 
        When _\bs_\be_\bt, this variable causes Mutt-ng to include the header of the message you
-       are replying to into the edit buffer.  The ``_\b$_\bw_\be_\be_\bd (section 7.4.338  , page
-       168)'' setting applies.
+       are replying to into the edit buffer.  The ``_\b$_\bw_\be_\be_\bd (section 7.4.340  , page
+       170)'' setting applies.
 
-       _\b7_\b._\b4_\b._\b7_\b9  _\bh_\be_\ba_\bd_\be_\br_\b__\bc_\ba_\bc_\bh_\be
+       _\b7_\b._\b4_\b._\b8_\b1  _\bh_\be_\ba_\bd_\be_\br_\b__\bc_\ba_\bc_\bh_\be
 
        Type: path
 
 
        Availability: Header Cache
 
-       The _\b$_\bh_\be_\ba_\bd_\be_\br_\b__\bc_\ba_\bc_\bh_\be (section 7.4.79  , page 104) variable points to the header
+       The _\b$_\bh_\be_\ba_\bd_\be_\br_\b__\bc_\ba_\bc_\bh_\be (section 7.4.81  , page 106) variable points to the header
        cache database.
 
-       If _\b$_\bh_\be_\ba_\bd_\be_\br_\b__\bc_\ba_\bc_\bh_\be (section 7.4.79  , page 104) points to a directory it will
+       If _\b$_\bh_\be_\ba_\bd_\be_\br_\b__\bc_\ba_\bc_\bh_\be (section 7.4.81  , page 106) points to a directory it will
        contain a header cache database  per folder. If _\b$_\bh_\be_\ba_\bd_\be_\br_\b__\bc_\ba_\bc_\bh_\be (section
-       7.4.79  , page 104) points to a file that file will be a single global header
+       7.4.81  , page 106) points to a file that file will be a single global header
        cache. By default it is _\bu_\bn_\bs_\be_\bt so no header caching will be used.
 
-       _\b7_\b._\b4_\b._\b8_\b0  _\bh_\be_\ba_\bd_\be_\br_\b__\bc_\ba_\bc_\bh_\be_\b__\bc_\bo_\bm_\bp_\br_\be_\bs_\bs
+       _\b7_\b._\b4_\b._\b8_\b2  _\bh_\be_\ba_\bd_\be_\br_\b__\bc_\ba_\bc_\bh_\be_\b__\bc_\bo_\bm_\bp_\br_\be_\bs_\bs
 
        Type: boolean
 
        diskspace is used, but the uncompression can result in a slower open of the
        cached folder.
 
-       _\b7_\b._\b4_\b._\b8_\b1  _\bh_\be_\bl_\bp
-
-       The Mutt Next Generation E-Mail Client                                      106
+       _\b7_\b._\b4_\b._\b8_\b3  _\bh_\be_\bl_\bp
 
        Type: boolean
 
        is primarily aimed at new users, neither of these should present a major prob-
        lem.
 
-       _\b7_\b._\b4_\b._\b8_\b2  _\bh_\bi_\bd_\bd_\be_\bn_\b__\bh_\bo_\bs_\bt
+       _\b7_\b._\b4_\b._\b8_\b4  _\bh_\bi_\bd_\bd_\be_\bn_\b__\bh_\bo_\bs_\bt
 
        Type: boolean
 
        Default: no
 
        When _\bs_\be_\bt, Mutt-ng will skip the host name part of ``_\b$_\bh_\bo_\bs_\bt_\bn_\ba_\bm_\be (section
-       7.4.90  , page 106)'' variable when adding the domain part to addresses.  This
+
+       The Mutt Next Generation E-Mail Client                                      107
+
+       7.4.92  , page 108)'' variable when adding the domain part to addresses.  This
        variable does not affect the generation of Message-ID: header fields, and it
        will not lead to the cut-off of first-level domains.
 
-       _\b7_\b._\b4_\b._\b8_\b3  _\bh_\bi_\bd_\be_\b__\bl_\bi_\bm_\bi_\bt_\be_\bd
+       _\b7_\b._\b4_\b._\b8_\b5  _\bh_\bi_\bd_\be_\b__\bl_\bi_\bm_\bi_\bt_\be_\bd
 
        Type: boolean
 
        When _\bs_\be_\bt, Mutt-ng will not show the presence of messages that are hidden by
        limiting, in the thread tree.
 
-       _\b7_\b._\b4_\b._\b8_\b4  _\bh_\bi_\bd_\be_\b__\bm_\bi_\bs_\bs_\bi_\bn_\bg
+       _\b7_\b._\b4_\b._\b8_\b6  _\bh_\bi_\bd_\be_\b__\bm_\bi_\bs_\bs_\bi_\bn_\bg
 
        Type: boolean
 
        When _\bs_\be_\bt, Mutt-ng will not show the presence of missing messages in the thread
        tree.
 
-       _\b7_\b._\b4_\b._\b8_\b5  _\bh_\bi_\bd_\be_\b__\bt_\bh_\br_\be_\ba_\bd_\b__\bs_\bu_\bb_\bj_\be_\bc_\bt
+       _\b7_\b._\b4_\b._\b8_\b7  _\bh_\bi_\bd_\be_\b__\bt_\bh_\br_\be_\ba_\bd_\b__\bs_\bu_\bb_\bj_\be_\bc_\bt
 
        Type: boolean
 
        When _\bs_\be_\bt, Mutt-ng will not show the subject of messages in the thread tree that
        have the same subject as their parent or closest previously displayed sibling.
 
-       _\b7_\b._\b4_\b._\b8_\b6  _\bh_\bi_\bd_\be_\b__\bt_\bo_\bp_\b__\bl_\bi_\bm_\bi_\bt_\be_\bd
+       _\b7_\b._\b4_\b._\b8_\b8  _\bh_\bi_\bd_\be_\b__\bt_\bo_\bp_\b__\bl_\bi_\bm_\bi_\bt_\be_\bd
 
        Type: boolean
 
-       The Mutt Next Generation E-Mail Client                                      107
-
        Default: no
 
        When _\bs_\be_\bt, Mutt-ng will not show the presence of messages that are hidden by
        limiting, at the top of threads in the thread tree.  Note that when _\b$_\bh_\bi_\bd_\be_\b__\bm_\bi_\bs_\bs_\b-
-       _\bi_\bn_\bg (section 7.4.84  , page 105) is set, this option will have no effect.
+       _\bi_\bn_\bg (section 7.4.86  , page 107) is set, this option will have no effect.
 
-       _\b7_\b._\b4_\b._\b8_\b7  _\bh_\bi_\bd_\be_\b__\bt_\bo_\bp_\b__\bm_\bi_\bs_\bs_\bi_\bn_\bg
+       _\b7_\b._\b4_\b._\b8_\b9  _\bh_\bi_\bd_\be_\b__\bt_\bo_\bp_\b__\bm_\bi_\bs_\bs_\bi_\bn_\bg
 
        Type: boolean
 
        Default: yes
 
        When _\bs_\be_\bt, Mutt-ng will not show the presence of missing messages at the top of
-       threads in the thread tree.  Note that when _\b$_\bh_\bi_\bd_\be_\b__\bl_\bi_\bm_\bi_\bt_\be_\bd (section 7.4.83  ,
-       page 105) is _\bs_\be_\bt, this option will have no effect.
+       threads in the thread tree.  Note that when _\b$_\bh_\bi_\bd_\be_\b__\bl_\bi_\bm_\bi_\bt_\be_\bd (section 7.4.85  ,
+       page 107) is _\bs_\be_\bt, this option will have no effect.
 
-       _\b7_\b._\b4_\b._\b8_\b8  _\bh_\bi_\bs_\bt_\bo_\br_\by
+       _\b7_\b._\b4_\b._\b9_\b0  _\bh_\bi_\bs_\bt_\bo_\br_\by
 
        Type: number
 
+       The Mutt Next Generation E-Mail Client                                      108
+
        Default: 10
 
        This variable controls the size (in number of strings remembered) of the string
        history buffer. The buffer is cleared each time the variable is changed.
 
-       _\b7_\b._\b4_\b._\b8_\b9  _\bh_\bo_\bn_\bo_\br_\b__\bf_\bo_\bl_\bl_\bo_\bw_\bu_\bp_\b__\bt_\bo
+       _\b7_\b._\b4_\b._\b9_\b1  _\bh_\bo_\bn_\bo_\br_\b__\bf_\bo_\bl_\bl_\bo_\bw_\bu_\bp_\b__\bt_\bo
 
        Type: quadoption
 
        This variable controls whether or not a Mail-Followup-To: header field is hon-
        ored when group-replying to a message.
 
-       _\b7_\b._\b4_\b._\b9_\b0  _\bh_\bo_\bs_\bt_\bn_\ba_\bm_\be
+       _\b7_\b._\b4_\b._\b9_\b2  _\bh_\bo_\bs_\bt_\bn_\ba_\bm_\be
 
        Type: string
 
        Please be sure to really know what you are doing when changing this variable to
        configure a custom domain part of Message-IDs.
 
-       _\b7_\b._\b4_\b._\b9_\b1  _\bi_\bg_\bn_\bo_\br_\be_\b__\bl_\bi_\bs_\bt_\b__\br_\be_\bp_\bl_\by_\b__\bt_\bo
+       _\b7_\b._\b4_\b._\b9_\b3  _\bi_\bg_\bn_\bo_\br_\be_\b__\bl_\bi_\bs_\bt_\b__\br_\be_\bp_\bl_\by_\b__\bt_\bo
 
        Type: boolean
 
 
        Affects the behaviour of the _\br_\be_\bp_\bl_\by function when replying to messages from
        mailing lists.  When _\bs_\be_\bt, if the ``Reply-To:'' header field is set to the same
-
-       The Mutt Next Generation E-Mail Client                                      108
-
        value as the ``To:'' header field, Mutt-ng assumes that the ``Reply-To:''
        header field was set by the mailing list to automate responses to the list, and
        will ignore this field.  To direct a response to the mailing list when this
        option is set, use the _\bl_\bi_\bs_\bt_\b-_\br_\be_\bp_\bl_\by function; _\bg_\br_\bo_\bu_\bp_\b-_\br_\be_\bp_\bl_\by will reply to both the
        sender and the list.
 
-       _\b7_\b._\b4_\b._\b9_\b2  _\bi_\bm_\ba_\bp_\b__\ba_\bu_\bt_\bh_\be_\bn_\bt_\bi_\bc_\ba_\bt_\bo_\br_\bs
+       _\b7_\b._\b4_\b._\b9_\b4  _\bi_\bm_\ba_\bp_\b__\ba_\bu_\bt_\bh_\be_\bn_\bt_\bi_\bc_\ba_\bt_\bo_\br_\bs
 
        Type: string
 
        capability string, e.g. ``digest-md5'', ``gssapi'' or ``cram-md5''. This param-
        eter is case-insensitive.
 
+       The Mutt Next Generation E-Mail Client                                      109
+
        If this parameter is _\bu_\bn_\bs_\be_\bt (the default) Mutt-ng will try all available meth-
        ods, in order from most-secure to least-secure.
 
        ous methods are unavailable. If a method is available but authentication fails,
        Mutt-ng will not connect to the IMAP server.
 
-       _\b7_\b._\b4_\b._\b9_\b3  _\bi_\bm_\ba_\bp_\b__\bc_\bh_\be_\bc_\bk_\b__\bs_\bu_\bb_\bs_\bc_\br_\bi_\bb_\be_\bd
+       _\b7_\b._\b4_\b._\b9_\b5  _\bi_\bm_\ba_\bp_\b__\bc_\bh_\be_\bc_\bk_\b__\bs_\bu_\bb_\bs_\bc_\br_\bi_\bb_\be_\bd
 
        Type: boolean
 
        connection, and add them to the set of mailboxes it polls for new mail. See
        also the ``_\bm_\ba_\bi_\bl_\bb_\bo_\bx_\be_\bs (section 3.14  , page 34)'' command.
 
-       _\b7_\b._\b4_\b._\b9_\b4  _\bi_\bm_\ba_\bp_\b__\bd_\be_\bl_\bi_\bm_\b__\bc_\bh_\ba_\br_\bs
+       _\b7_\b._\b4_\b._\b9_\b6  _\bi_\bm_\ba_\bp_\b__\bd_\be_\bl_\bi_\bm_\b__\bc_\bh_\ba_\br_\bs
 
        Type: string
 
 
        This contains the list of characters which you would like to treat as folder
        separators for displaying IMAP paths. In particular it helps in using the '='
-       shortcut for your _\b$_\bf_\bo_\bl_\bd_\be_\br (section 7.4.65  , page 100) variable.
+       shortcut for your _\b$_\bf_\bo_\bl_\bd_\be_\br (section 7.4.67  , page 102) variable.
 
-       _\b7_\b._\b4_\b._\b9_\b5  _\bi_\bm_\ba_\bp_\b__\bh_\be_\ba_\bd_\be_\br_\bs
+       _\b7_\b._\b4_\b._\b9_\b7  _\bi_\bm_\ba_\bp_\b__\bh_\be_\ba_\bd_\be_\br_\bs
 
        Type: string
 
-       The Mutt Next Generation E-Mail Client                                      109
-
        Default: ''
 
        Availability: IMAP
 
        N\bNo\bot\bte\be:\b: This is a space separated list.
 
-       _\b7_\b._\b4_\b._\b9_\b6  _\bi_\bm_\ba_\bp_\b__\bh_\bo_\bm_\be_\b__\bn_\ba_\bm_\be_\bs_\bp_\ba_\bc_\be
+       _\b7_\b._\b4_\b._\b9_\b8  _\bi_\bm_\ba_\bp_\b__\bh_\bo_\bm_\be_\b__\bn_\ba_\bm_\be_\bs_\bp_\ba_\bc_\be
 
        Type: string
 
 
        Availability: IMAP
 
+       The Mutt Next Generation E-Mail Client                                      110
+
        You normally want to see your personal folders alongside your INBOX in the IMAP
        browser. If you see something else, you may set this variable to the IMAP path
        to your folders.
 
-       _\b7_\b._\b4_\b._\b9_\b7  _\bi_\bm_\ba_\bp_\b__\bk_\be_\be_\bp_\ba_\bl_\bi_\bv_\be
+       _\b7_\b._\b4_\b._\b9_\b9  _\bi_\bm_\ba_\bp_\b__\bk_\be_\be_\bp_\ba_\bl_\bi_\bv_\be
 
        Type: number
 
        Reduce this number if you find yourself getting disconnected from your IMAP
        server due to inactivity.
 
-       _\b7_\b._\b4_\b._\b9_\b8  _\bi_\bm_\ba_\bp_\b__\bl_\bi_\bs_\bt_\b__\bs_\bu_\bb_\bs_\bc_\br_\bi_\bb_\be_\bd
+       _\b7_\b._\b4_\b._\b1_\b0_\b0  _\bi_\bm_\ba_\bp_\b__\bl_\bi_\bs_\bt_\b__\bs_\bu_\bb_\bs_\bc_\br_\bi_\bb_\be_\bd
 
        Type: boolean
 
        scribed folders or all folders.  This can be toggled in the IMAP browser with
        the _\bt_\bo_\bg_\bg_\bl_\be_\b-_\bs_\bu_\bb_\bs_\bc_\br_\bi_\bb_\be_\bd function.
 
-       The Mutt Next Generation E-Mail Client                                      110
-
-       _\b7_\b._\b4_\b._\b9_\b9  _\bi_\bm_\ba_\bp_\b__\bl_\bo_\bg_\bi_\bn
+       _\b7_\b._\b4_\b._\b1_\b0_\b1  _\bi_\bm_\ba_\bp_\b__\bl_\bo_\bg_\bi_\bn
 
        Type: string
 
 
        Your login name on the IMAP server.
 
-       This variable defaults to the value of ``_\b$_\bi_\bm_\ba_\bp_\b__\bu_\bs_\be_\br (section 7.4.106  , page
-       110).''
+       This variable defaults to the value of ``_\b$_\bi_\bm_\ba_\bp_\b__\bu_\bs_\be_\br (section 7.4.108  , page
+       112).''
 
-       _\b7_\b._\b4_\b._\b1_\b0_\b0  _\bi_\bm_\ba_\bp_\b__\bm_\ba_\bi_\bl_\b__\bc_\bh_\be_\bc_\bk
+       _\b7_\b._\b4_\b._\b1_\b0_\b2  _\bi_\bm_\ba_\bp_\b__\bm_\ba_\bi_\bl_\b__\bc_\bh_\be_\bc_\bk
 
        Type: number
 
        Default: 300
 
+       The Mutt Next Generation E-Mail Client                                      111
+
        This variable configures how often (in seconds) Mutt-ng should look for new
-       mail in IMAP folders. This is split from the ``_\bm_\ba_\bi_\bl_\b__\bc_\bh_\be_\bc_\bk (section 7.4.116  ,
-       page 114)'' variable to generate less traffic and get more accurate information
+       mail in IMAP folders. This is split from the ``_\bm_\ba_\bi_\bl_\b__\bc_\bh_\be_\bc_\bk (section 7.4.118  ,
+       page 116)'' variable to generate less traffic and get more accurate information
        for local folders.
 
-       _\b7_\b._\b4_\b._\b1_\b0_\b1  _\bi_\bm_\ba_\bp_\b__\bp_\ba_\bs_\bs
+       _\b7_\b._\b4_\b._\b1_\b0_\b3  _\bi_\bm_\ba_\bp_\b__\bp_\ba_\bs_\bs
 
        Type: string
 
        machine, because the superuser can read your configuration even if you are the
        only one who can read the file.
 
-       _\b7_\b._\b4_\b._\b1_\b0_\b2  _\bi_\bm_\ba_\bp_\b__\bp_\ba_\bs_\bs_\bi_\bv_\be
+       _\b7_\b._\b4_\b._\b1_\b0_\b4  _\bi_\bm_\ba_\bp_\b__\bp_\ba_\bs_\bs_\bi_\bv_\be
 
        Type: boolean
 
        useful if you don't want to be prompted to user/password pairs on Mutt-ng invo-
        cation, or if opening the connection is slow.
 
-       _\b7_\b._\b4_\b._\b1_\b0_\b3  _\bi_\bm_\ba_\bp_\b__\bp_\be_\be_\bk
-
-       The Mutt Next Generation E-Mail Client                                      111
+       _\b7_\b._\b4_\b._\b1_\b0_\b5  _\bi_\bm_\ba_\bp_\b__\bp_\be_\be_\bk
 
        Type: boolean
 
        closing an IMAP folder somewhat slower. This option exists to appease speed
        freaks.
 
-       _\b7_\b._\b4_\b._\b1_\b0_\b4  _\bi_\bm_\ba_\bp_\b__\br_\be_\bc_\bo_\bn_\bn_\be_\bc_\bt
+       _\b7_\b._\b4_\b._\b1_\b0_\b6  _\bi_\bm_\ba_\bp_\b__\br_\be_\bc_\bo_\bn_\bn_\be_\bc_\bt
 
        Type: quadoption
 
 
        Availability: IMAP
 
+       The Mutt Next Generation E-Mail Client                                      112
+
        Controls whether or not Mutt-ng will try to reconnect to IMAP server when the
        connection is lost.
 
-       _\b7_\b._\b4_\b._\b1_\b0_\b5  _\bi_\bm_\ba_\bp_\b__\bs_\be_\br_\bv_\be_\br_\bn_\bo_\bi_\bs_\be
+       _\b7_\b._\b4_\b._\b1_\b0_\b7  _\bi_\bm_\ba_\bp_\b__\bs_\be_\br_\bv_\be_\br_\bn_\bo_\bi_\bs_\be
 
        Type: boolean
 
        ration problems on the server which are out of the users' hands, you may wish
        to suppress them at some point.
 
-       _\b7_\b._\b4_\b._\b1_\b0_\b6  _\bi_\bm_\ba_\bp_\b__\bu_\bs_\be_\br
+       _\b7_\b._\b4_\b._\b1_\b0_\b8  _\bi_\bm_\ba_\bp_\b__\bu_\bs_\be_\br
 
        Type: string
 
 
        This variable defaults to your user name on the local machine.
 
-       _\b7_\b._\b4_\b._\b1_\b0_\b7  _\bi_\bm_\bp_\bl_\bi_\bc_\bi_\bt_\b__\ba_\bu_\bt_\bo_\bv_\bi_\be_\bw
+       _\b7_\b._\b4_\b._\b1_\b0_\b9  _\bi_\bm_\bp_\bl_\bi_\bc_\bi_\bt_\b__\ba_\bu_\bt_\bo_\bv_\bi_\be_\bw
 
        Type: boolean
 
        Default: no
 
        If _\bs_\be_\bt, Mutt-ng will look for a mailcap entry with the ``copiousoutput'' flag
-
-       The Mutt Next Generation E-Mail Client                                      112
-
        set for _\be_\bv_\be_\br_\by MIME attachment it doesn't have an internal viewer defined for.
        If such an entry is found, Mutt-ng will use the viewer defined in that entry to
        convert the body part to text form.
 
-       _\b7_\b._\b4_\b._\b1_\b0_\b8  _\bi_\bn_\bc_\bl_\bu_\bd_\be
+       _\b7_\b._\b4_\b._\b1_\b1_\b0  _\bi_\bn_\bc_\bl_\bu_\bd_\be
 
        Type: quadoption
 
        Controls whether or not a copy of the message(s) you are replying to is
        included in your reply.
 
-       _\b7_\b._\b4_\b._\b1_\b0_\b9  _\bi_\bn_\bc_\bl_\bu_\bd_\be_\b__\bo_\bn_\bl_\by_\bf_\bi_\br_\bs_\bt
+       _\b7_\b._\b4_\b._\b1_\b1_\b1  _\bi_\bn_\bc_\bl_\bu_\bd_\be_\b__\bo_\bn_\bl_\by_\bf_\bi_\br_\bs_\bt
 
        Type: boolean
 
        Default: no
 
+       The Mutt Next Generation E-Mail Client                                      113
+
        Controls whether or not Mutt-ng includes only the first attachment of the mes-
        sage you are replying.
 
-       _\b7_\b._\b4_\b._\b1_\b1_\b0  _\bi_\bn_\bd_\be_\bn_\bt_\b__\bs_\bt_\br_\bi_\bn_\bg
+       _\b7_\b._\b4_\b._\b1_\b1_\b2  _\bi_\bn_\bd_\be_\bn_\bt_\b__\bs_\bt_\br_\bi_\bn_\bg
 
        Type: string
 
        which you are replying.  You are strongly encouraged not to change this value,
        as it tends to agitate the more fanatical netizens.
 
-       _\b7_\b._\b4_\b._\b1_\b1_\b1  _\bi_\bn_\bd_\be_\bx_\b__\bf_\bo_\br_\bm_\ba_\bt
+       _\b7_\b._\b4_\b._\b1_\b1_\b3  _\bi_\bn_\bd_\be_\bx_\b__\bf_\bo_\br_\bm_\ba_\bt
 
        Type: string
 
              %b
                    filename of the original message folder (think mailBox)
 
-       The Mutt Next Generation E-Mail Client                                      113
-
              %B
                    the list to which the letter was sent, or else the folder name
                    (%b).
                    date and time of the message in the format specified by ``date_for-
                    mat'' converted to the local time zone
 
+       The Mutt Next Generation E-Mail Client                                      114
+
              %e
                    current message number in thread
 
              %M
                    number of hidden messages if the thread is collapsed.
 
-       The Mutt Next Generation E-Mail Client                                      114
-
              %N
                    message score
 
              %t
                    `to:' field (recipients)
 
+       The Mutt Next Generation E-Mail Client                                      115
+
              %T
-                   the appropriate character from the _\b$_\bt_\bo_\b__\bc_\bh_\ba_\br_\bs (section 7.4.325  ,
-                   page 165) string
+                   the appropriate character from the _\b$_\bt_\bo_\b__\bc_\bh_\ba_\br_\bs (section 7.4.327  ,
+                   page 167) string
 
              %u
                    user (login) name of the author
                    zone, and ``fmt'' is expanded by the library function ``strftime'';
                    a leading bang disables locales
 
-       The Mutt Next Generation E-Mail Client                                      115
-
              %(fmt)
                    the local date and time when the message was received.  ``fmt'' is
                    expanded by the library function ``strftime''; a leading bang dis-
              %|X
                    pad to the end of the line with character 'X'
 
-       See also: ``_\b$_\bt_\bo_\b__\bc_\bh_\ba_\br_\bs (section 7.4.325  , page 165)''.
+       See also: ``_\b$_\bt_\bo_\b__\bc_\bh_\ba_\br_\bs (section 7.4.327  , page 167)''.
+
+       _\b7_\b._\b4_\b._\b1_\b1_\b4  _\bi_\bs_\bp_\be_\bl_\bl
 
-       _\b7_\b._\b4_\b._\b1_\b1_\b2  _\bi_\bs_\bp_\be_\bl_\bl
+       The Mutt Next Generation E-Mail Client                                      116
 
        Type: path
 
 
        How to invoke ispell (GNU's spell-checking software).
 
-       _\b7_\b._\b4_\b._\b1_\b1_\b3  _\bk_\be_\be_\bp_\b__\bf_\bl_\ba_\bg_\bg_\be_\bd
+       _\b7_\b._\b4_\b._\b1_\b1_\b5  _\bk_\be_\be_\bp_\b__\bf_\bl_\ba_\bg_\bg_\be_\bd
 
        Type: boolean
 
        Default: no
 
        If _\bs_\be_\bt, read messages marked as flagged will not be moved from your spool mail-
-       box to your ``_\b$_\bm_\bb_\bo_\bx (section 7.4.126  , page 117)'' mailbox, or as a result of
+       box to your ``_\b$_\bm_\bb_\bo_\bx (section 7.4.128  , page 118)'' mailbox, or as a result of
        a ``_\bm_\bb_\bo_\bx_\b-_\bh_\bo_\bo_\bk (section 3.13  , page 34)'' command.
 
-       _\b7_\b._\b4_\b._\b1_\b1_\b4  _\bl_\bi_\bs_\bt_\b__\br_\be_\bp_\bl_\by
+       _\b7_\b._\b4_\b._\b1_\b1_\b6  _\bl_\bi_\bs_\bt_\b__\br_\be_\bp_\bl_\by
 
        Type: quadoption
 
        (instead to the author only). Setting this option to ``_\ba_\bs_\bk_\b-_\by_\be_\bs'' or ``_\ba_\bs_\bk_\b-_\bn_\bo''
        will ask if you really intended to reply to the author only.
 
-       _\b7_\b._\b4_\b._\b1_\b1_\b5  _\bl_\bo_\bc_\ba_\bl_\be
+       _\b7_\b._\b4_\b._\b1_\b1_\b7  _\bl_\bo_\bc_\ba_\bl_\be
 
        Type: string
 
        The locale used by strftime(3) to format dates. Legal values are the strings
        your system accepts for the locale variable LC_TIME.
 
-       The Mutt Next Generation E-Mail Client                                      116
-
-       _\b7_\b._\b4_\b._\b1_\b1_\b6  _\bm_\ba_\bi_\bl_\b__\bc_\bh_\be_\bc_\bk
+       _\b7_\b._\b4_\b._\b1_\b1_\b8  _\bm_\ba_\bi_\bl_\b__\bc_\bh_\be_\bc_\bk
 
        Type: number
 
        mail.
 
        N\bNo\bot\bte\be:\b: This does not apply to IMAP mailboxes, see _\b$_\bi_\bm_\ba_\bp_\b__\bm_\ba_\bi_\bl_\b__\bc_\bh_\be_\bc_\bk (section
-       7.4.100  , page 109).
+       7.4.102  , page 110).
 
-       _\b7_\b._\b4_\b._\b1_\b1_\b7  _\bm_\ba_\bi_\bl_\bc_\ba_\bp_\b__\bp_\ba_\bt_\bh
+       _\b7_\b._\b4_\b._\b1_\b1_\b9  _\bm_\ba_\bi_\bl_\bc_\ba_\bp_\b__\bp_\ba_\bt_\bh
 
        Type: string
 
        Default: ''
 
        This variable specifies which files to consult when attempting to display MIME
+
+       The Mutt Next Generation E-Mail Client                                      117
+
        bodies not directly supported by Mutt-ng.
 
-       _\b7_\b._\b4_\b._\b1_\b1_\b8  _\bm_\ba_\bi_\bl_\bc_\ba_\bp_\b__\bs_\ba_\bn_\bi_\bt_\bi_\bz_\be
+       _\b7_\b._\b4_\b._\b1_\b2_\b0  _\bm_\ba_\bi_\bl_\bc_\ba_\bp_\b__\bs_\ba_\bn_\bi_\bt_\bi_\bz_\be
 
        Type: boolean
 
 
        D\bDO\bON\bN'\b'T\bT C\bCH\bHA\bAN\bNG\bGE\bE T\bTH\bHI\bIS\bS S\bSE\bET\bTT\bTI\bIN\bNG\bG U\bUN\bNL\bLE\bES\bSS\bS Y\bYO\bOU\bU A\bAR\bRE\bE R\bRE\bEA\bAL\bLL\bLY\bY S\bSU\bUR\bRE\bE W\bWH\bHA\bAT\bT Y\bYO\bOU\bU A\bAR\bRE\bE D\bDO\bOI\bIN\bNG\bG!\b!
 
-       _\b7_\b._\b4_\b._\b1_\b1_\b9  _\bm_\ba_\bi_\bl_\bd_\bi_\br_\b__\bh_\be_\ba_\bd_\be_\br_\b__\bc_\ba_\bc_\bh_\be_\b__\bv_\be_\br_\bi_\bf_\by
+       _\b7_\b._\b4_\b._\b1_\b2_\b1  _\bm_\ba_\bi_\bl_\bd_\bi_\br_\b__\bh_\be_\ba_\bd_\be_\br_\b__\bc_\ba_\bc_\bh_\be_\b__\bv_\be_\br_\bi_\bf_\by
 
        Type: boolean
 
        files when the header cache is in use. This incurs one stat(2) per message
        every time the folder is opened.
 
-       _\b7_\b._\b4_\b._\b1_\b2_\b0  _\bm_\ba_\bi_\bl_\bd_\bi_\br_\b__\bt_\br_\ba_\bs_\bh
+       _\b7_\b._\b4_\b._\b1_\b2_\b2  _\bm_\ba_\bi_\bl_\bd_\bi_\br_\b__\bt_\br_\ba_\bs_\bh
 
        Type: boolean
 
        If _\bs_\be_\bt, messages marked as deleted will be saved with the maildir (T)rashed
        flag instead of physically deleted.
 
-       The Mutt Next Generation E-Mail Client                                      117
-
        N\bNO\bOT\bTE\bE:\b: this only applies to maildir-style mailboxes. Setting it will have no
        effect on other mailbox types.
 
        It is similiar to the trash option.
 
-       _\b7_\b._\b4_\b._\b1_\b2_\b1  _\bm_\ba_\br_\bk_\b__\bo_\bl_\bd
+       _\b7_\b._\b4_\b._\b1_\b2_\b3  _\bm_\ba_\br_\bk_\b__\bo_\bl_\bd
 
        Type: boolean
 
        up with an 'O' next to them in the ``index'' menu, indicating that they are
        old.
 
-       _\b7_\b._\b4_\b._\b1_\b2_\b2  _\bm_\ba_\br_\bk_\be_\br_\bs
+       The Mutt Next Generation E-Mail Client                                      118
+
+       _\b7_\b._\b4_\b._\b1_\b2_\b4  _\bm_\ba_\br_\bk_\be_\br_\bs
 
        Type: boolean
 
 
        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
-       ``_\b$_\bs_\bm_\ba_\br_\bt_\b__\bw_\br_\ba_\bp (section 7.4.265  , page 150)'' variable.
+       ``_\b$_\bs_\bm_\ba_\br_\bt_\b__\bw_\br_\ba_\bp (section 7.4.267  , page 151)'' variable.
 
-       _\b7_\b._\b4_\b._\b1_\b2_\b3  _\bm_\ba_\bs_\bk
+       _\b7_\b._\b4_\b._\b1_\b2_\b5  _\bm_\ba_\bs_\bk
 
        Type: regular expression
 
        operator ``!''.  Only files whose names match this mask will be shown. The
        match is always case-sensitive.
 
-       _\b7_\b._\b4_\b._\b1_\b2_\b4  _\bm_\ba_\bx_\b__\bd_\bi_\bs_\bp_\bl_\ba_\by_\b__\br_\be_\bc_\bi_\bp_\bs
+       _\b7_\b._\b4_\b._\b1_\b2_\b6  _\bm_\ba_\bx_\b__\bd_\bi_\bs_\bp_\bl_\ba_\by_\b__\br_\be_\bc_\bi_\bp_\bs
 
        Type: number
 
        case the number of lines exeeds its value, the last line will have 3 dots
        appended.
 
-       _\b7_\b._\b4_\b._\b1_\b2_\b5  _\bm_\ba_\bx_\b__\bl_\bi_\bn_\be_\b__\bl_\be_\bn_\bg_\bt_\bh
+       _\b7_\b._\b4_\b._\b1_\b2_\b7  _\bm_\ba_\bx_\b__\bl_\bi_\bn_\be_\b__\bl_\be_\bn_\bg_\bt_\bh
 
        Type: number
 
        Default: 0
 
-       The Mutt Next Generation E-Mail Client                                      118
-
        When _\bs_\be_\bt, the maximum line length for displaying ``format = flowed'' messages
        is limited to this length. A value of 0 (which is also the default) means that
        the maximum line length is determined by the terminal width and _\b$_\bw_\br_\ba_\bp_\bm_\ba_\br_\bg_\bi_\bn
-       (section 7.4.340  , page 168).
+       (section 7.4.342  , page 170).
 
-       _\b7_\b._\b4_\b._\b1_\b2_\b6  _\bm_\bb_\bo_\bx
+       _\b7_\b._\b4_\b._\b1_\b2_\b8  _\bm_\bb_\bo_\bx
 
        Type: path
 
        Default: '~/mbox'
 
        This specifies the folder into which read mail in your ``_\b$_\bs_\bp_\bo_\bo_\bl_\bf_\bi_\bl_\be (section
-       7.4.299  , page 158)'' folder will be appended.
+       7.4.301  , page 159)'' folder will be appended.
 
-       _\b7_\b._\b4_\b._\b1_\b2_\b7  _\bm_\bb_\bo_\bx_\b__\bt_\by_\bp_\be
+       _\b7_\b._\b4_\b._\b1_\b2_\b9  _\bm_\bb_\bo_\bx_\b__\bt_\by_\bp_\be
 
        Type: folder magic
 
+       The Mutt Next Generation E-Mail Client                                      119
+
        Default: mbox
 
        The default mailbox type used when creating new folders. May be any of mbox,
        MMDF, MH and Maildir.
 
-       _\b7_\b._\b4_\b._\b1_\b2_\b8  _\bm_\be_\bn_\bu_\b__\bc_\bo_\bn_\bt_\be_\bx_\bt
+       _\b7_\b._\b4_\b._\b1_\b3_\b0  _\bm_\be_\bn_\bu_\b__\bc_\bo_\bn_\bt_\be_\bx_\bt
 
        Type: number
 
        Default: 0
 
        This variable controls the number of lines of context that are given when
-       scrolling through menus. (Similar to ``_\b$_\bp_\ba_\bg_\be_\br_\b__\bc_\bo_\bn_\bt_\be_\bx_\bt (section 7.4.169  , page
-       127)''.)
+       scrolling through menus. (Similar to ``_\b$_\bp_\ba_\bg_\be_\br_\b__\bc_\bo_\bn_\bt_\be_\bx_\bt (section 7.4.171  , page
+       129)''.)
 
-       _\b7_\b._\b4_\b._\b1_\b2_\b9  _\bm_\be_\bn_\bu_\b__\bm_\bo_\bv_\be_\b__\bo_\bf_\bf
+       _\b7_\b._\b4_\b._\b1_\b3_\b1  _\bm_\be_\bn_\bu_\b__\bm_\bo_\bv_\be_\b__\bo_\bf_\bf
 
        Type: boolean
 
        the screen, unless there are less entries than lines.  When _\bs_\be_\bt, the bottom
        entry may move off the bottom.
 
-       _\b7_\b._\b4_\b._\b1_\b3_\b0  _\bm_\be_\bn_\bu_\b__\bs_\bc_\br_\bo_\bl_\bl
+       _\b7_\b._\b4_\b._\b1_\b3_\b2  _\bm_\be_\bn_\bu_\b__\bs_\bc_\br_\bo_\bl_\bl
 
        Type: boolean
 
        vious page of the menu is displayed (useful for slow links to avoid many
        redraws).
 
-       The Mutt Next Generation E-Mail Client                                      119
-
-       _\b7_\b._\b4_\b._\b1_\b3_\b1  _\bm_\be_\bs_\bs_\ba_\bg_\be_\b__\bf_\bo_\br_\bm_\ba_\bt
+       _\b7_\b._\b4_\b._\b1_\b3_\b3  _\bm_\be_\bs_\bs_\ba_\bg_\be_\b__\bf_\bo_\br_\bm_\ba_\bt
 
        Type: string
 
 
        This is the string displayed in the ``attachment'' menu for attachments of type
        message/rfc822.  For a full listing of defined printf(3)-like sequences see the
-       section on ``_\b$_\bi_\bn_\bd_\be_\bx_\b__\bf_\bo_\br_\bm_\ba_\bt (section 7.4.111  , page 111)''.
+       section on ``_\b$_\bi_\bn_\bd_\be_\bx_\b__\bf_\bo_\br_\bm_\ba_\bt (section 7.4.113  , page 113)''.
 
-       _\b7_\b._\b4_\b._\b1_\b3_\b2  _\bm_\be_\bt_\ba_\b__\bk_\be_\by
+       _\b7_\b._\b4_\b._\b1_\b3_\b4  _\bm_\be_\bt_\ba_\b__\bk_\be_\by
 
        Type: boolean
 
 
        If _\bs_\be_\bt, forces Mutt-ng to interpret keystrokes with the high bit (bit 8) set as
        if the user had pressed the ESC key and whatever key remains after having the
+
+       The Mutt Next Generation E-Mail Client                                      120
+
        high bit removed.  For example, if the key pressed has an ASCII value of 0xf4,
        then this is treated as if the user had pressed ESC then ``x''.  This is
        because the result of removing the high bit from ``0xf4'' is ``0x74'', which is
        the ASCII character ``x''.
 
-       _\b7_\b._\b4_\b._\b1_\b3_\b3  _\bm_\be_\bt_\bo_\bo
+       _\b7_\b._\b4_\b._\b1_\b3_\b5  _\bm_\be_\bt_\bo_\bo
 
        Type: boolean
 
        If _\bu_\bn_\bs_\be_\bt, Mutt-ng will remove your address (see the ``alternates'' command)
        from the list of recipients when replying to a message.
 
-       _\b7_\b._\b4_\b._\b1_\b3_\b4  _\bm_\bh_\b__\bp_\bu_\br_\bg_\be
+       _\b7_\b._\b4_\b._\b1_\b3_\b6  _\bm_\bh_\b__\bp_\bu_\br_\bg_\be
 
        Type: boolean
 
        _\b,_\b<_\bo_\bl_\bd _\bf_\bi_\bl_\be _\bn_\ba_\bm_\be_\b> in mh folders instead of really deleting them.  If the vari-
        able is set, the message files will simply be deleted.
 
-       _\b7_\b._\b4_\b._\b1_\b3_\b5  _\bm_\bh_\b__\bs_\be_\bq_\b__\bf_\bl_\ba_\bg_\bg_\be_\bd
+       _\b7_\b._\b4_\b._\b1_\b3_\b7  _\bm_\bh_\b__\bs_\be_\bq_\b__\bf_\bl_\ba_\bg_\bg_\be_\bd
 
        Type: string
 
 
        The name of the MH sequence used for flagged messages.
 
-       _\b7_\b._\b4_\b._\b1_\b3_\b6  _\bm_\bh_\b__\bs_\be_\bq_\b__\br_\be_\bp_\bl_\bi_\be_\bd
+       _\b7_\b._\b4_\b._\b1_\b3_\b8  _\bm_\bh_\b__\bs_\be_\bq_\b__\br_\be_\bp_\bl_\bi_\be_\bd
 
        Type: string
 
-       The Mutt Next Generation E-Mail Client                                      120
-
        Default: 'replied'
 
        The name of the MH sequence used to tag replied messages.
 
-       _\b7_\b._\b4_\b._\b1_\b3_\b7  _\bm_\bh_\b__\bs_\be_\bq_\b__\bu_\bn_\bs_\be_\be_\bn
+       _\b7_\b._\b4_\b._\b1_\b3_\b9  _\bm_\bh_\b__\bs_\be_\bq_\b__\bu_\bn_\bs_\be_\be_\bn
 
        Type: string
 
 
        The name of the MH sequence used for unseen messages.
 
-       _\b7_\b._\b4_\b._\b1_\b3_\b8  _\bm_\bi_\bm_\be_\b__\bf_\bo_\br_\bw_\ba_\br_\bd
+       _\b7_\b._\b4_\b._\b1_\b4_\b0  _\bm_\bi_\bm_\be_\b__\bf_\bo_\br_\bw_\ba_\br_\bd
 
        Type: quadoption
 
        Default: no
 
+       The Mutt Next Generation E-Mail Client                                      121
+
        When _\bs_\be_\bt, the message you are forwarding will be attached as a separate MIME
        part instead of included in the main body of the message.
 
        the message as it was delivered to you. If you like to switch between MIME and
        not MIME from mail to mail, set this variable to ask-no or ask-yes.
 
-       Also see ``_\b$_\bf_\bo_\br_\bw_\ba_\br_\bd_\b__\bd_\be_\bc_\bo_\bd_\be (section 7.4.70  , page 102)'' and ``_\b$_\bm_\bi_\bm_\be_\b__\bf_\bo_\br_\b-
-       _\bw_\ba_\br_\bd_\b__\bd_\be_\bc_\bo_\bd_\be (section 7.4.139  , page 119)''.
+       Also see ``_\b$_\bf_\bo_\br_\bw_\ba_\br_\bd_\b__\bd_\be_\bc_\bo_\bd_\be (section 7.4.72  , page 104)'' and ``_\b$_\bm_\bi_\bm_\be_\b__\bf_\bo_\br_\b-
+       _\bw_\ba_\br_\bd_\b__\bd_\be_\bc_\bo_\bd_\be (section 7.4.141  , page 121)''.
 
-       _\b7_\b._\b4_\b._\b1_\b3_\b9  _\bm_\bi_\bm_\be_\b__\bf_\bo_\br_\bw_\ba_\br_\bd_\b__\bd_\be_\bc_\bo_\bd_\be
+       _\b7_\b._\b4_\b._\b1_\b4_\b1  _\bm_\bi_\bm_\be_\b__\bf_\bo_\br_\bw_\ba_\br_\bd_\b__\bd_\be_\bc_\bo_\bd_\be
 
        Type: boolean
 
        Default: no
 
        Controls the decoding of complex MIME messages into text/plain when forwarding
-       a message while ``_\b$_\bm_\bi_\bm_\be_\b__\bf_\bo_\br_\bw_\ba_\br_\bd (section 7.4.138  , page 119)'' is _\bs_\be_\bt. Other-
-       wise ``_\b$_\bf_\bo_\br_\bw_\ba_\br_\bd_\b__\bd_\be_\bc_\bo_\bd_\be (section 7.4.70  , page 102)'' is used instead.
+       a message while ``_\b$_\bm_\bi_\bm_\be_\b__\bf_\bo_\br_\bw_\ba_\br_\bd (section 7.4.140  , page 120)'' is _\bs_\be_\bt. Other-
+       wise ``_\b$_\bf_\bo_\br_\bw_\ba_\br_\bd_\b__\bd_\be_\bc_\bo_\bd_\be (section 7.4.72  , page 104)'' is used instead.
 
-       _\b7_\b._\b4_\b._\b1_\b4_\b0  _\bm_\bi_\bm_\be_\b__\bf_\bo_\br_\bw_\ba_\br_\bd_\b__\br_\be_\bs_\bt
+       _\b7_\b._\b4_\b._\b1_\b4_\b2  _\bm_\bi_\bm_\be_\b__\bf_\bo_\br_\bw_\ba_\br_\bd_\b__\br_\be_\bs_\bt
 
        Type: quadoption
 
        menu, attachments which cannot be decoded in a reasonable manner will be
        attached to the newly composed message if this option is set.
 
-       _\b7_\b._\b4_\b._\b1_\b4_\b1  _\bm_\bi_\bx_\b__\be_\bn_\bt_\br_\by_\b__\bf_\bo_\br_\bm_\ba_\bt
+       _\b7_\b._\b4_\b._\b1_\b4_\b3  _\bm_\bi_\bx_\b__\be_\bn_\bt_\br_\by_\b__\bf_\bo_\br_\bm_\ba_\bt
 
        Type: string
 
        Default: '%4n %c %-16s %a'
 
-       The Mutt Next Generation E-Mail Client                                      121
-
        Availability: Mixmaster
 
        This variable describes the format of a remailer line on the mixmaster chain
              %a
                    The remailer's e-mail address.
 
-       _\b7_\b._\b4_\b._\b1_\b4_\b2  _\bm_\bi_\bx_\bm_\ba_\bs_\bt_\be_\br
+       The Mutt Next Generation E-Mail Client                                      122
+
+       _\b7_\b._\b4_\b._\b1_\b4_\b4  _\bm_\bi_\bx_\bm_\ba_\bs_\bt_\be_\br
 
        Type: path
 
        used with various sets of parameters to gather the list of known remailers, and
        to finally send a message through the mixmaster chain.
 
-       _\b7_\b._\b4_\b._\b1_\b4_\b3  _\bm_\bo_\bv_\be
+       _\b7_\b._\b4_\b._\b1_\b4_\b5  _\bm_\bo_\bv_\be
 
        Type: quadoption
 
        Default: ask-no
 
        Controls whether or not Mutt-ng will move read messages from your spool mailbox
-       to your ``_\b$_\bm_\bb_\bo_\bx (section 7.4.126  , page 117)'' mailbox, or as a result of a
+       to your ``_\b$_\bm_\bb_\bo_\bx (section 7.4.128  , page 118)'' mailbox, or as a result of a
        ``_\bm_\bb_\bo_\bx_\b-_\bh_\bo_\bo_\bk (section 3.13  , page 34)'' command.
 
-       _\b7_\b._\b4_\b._\b1_\b4_\b4  _\bm_\bs_\bg_\bi_\bd_\b__\bf_\bo_\br_\bm_\ba_\bt
+       _\b7_\b._\b4_\b._\b1_\b4_\b6  _\bm_\bs_\bg_\bi_\bd_\b__\bf_\bo_\br_\bm_\ba_\bt
 
        Type: string
 
              %d
                    the current day of month
 
-       The Mutt Next Generation E-Mail Client                                      122
-
              %h
                    the current hour
 
                    the current Message-ID prefix (a character rotating with every Mes-
                    sage-ID being generated)
 
+       The Mutt Next Generation E-Mail Client                                      123
+
              %r
                    a random integer value (decimal)
 
        N\bNo\bot\bte\be:\b: Please only change this setting if you know what you are doing.  Also
        make sure to consult RFC2822 to produce technically _\bv_\ba_\bl_\bi_\bd strings.
 
-       _\b7_\b._\b4_\b._\b1_\b4_\b5  _\bn_\ba_\br_\br_\bo_\bw_\b__\bt_\br_\be_\be
+       _\b7_\b._\b4_\b._\b1_\b4_\b7  _\bn_\ba_\br_\br_\bo_\bw_\b__\bt_\br_\be_\be
 
        Type: boolean
 
        This variable, when _\bs_\be_\bt, makes the thread tree narrower, allowing deeper
        threads to fit on the screen.
 
-       _\b7_\b._\b4_\b._\b1_\b4_\b6  _\bn_\bn_\bt_\bp_\b__\ba_\bs_\bk_\b__\bf_\bo_\bl_\bl_\bo_\bw_\bu_\bp_\b__\bt_\bo
-
-       The Mutt Next Generation E-Mail Client                                      123
+       _\b7_\b._\b4_\b._\b1_\b4_\b8  _\bn_\bn_\bt_\bp_\b__\ba_\bs_\bk_\b__\bf_\bo_\bl_\bl_\bo_\bw_\bu_\bp_\b__\bt_\bo
 
        Type: boolean
 
        If _\bs_\be_\bt, Mutt-ng will prompt you for the Followup-To: header field before edit-
        ing the body of an outgoing news article.
 
-       _\b7_\b._\b4_\b._\b1_\b4_\b7  _\bn_\bn_\bt_\bp_\b__\ba_\bs_\bk_\b__\bx_\b__\bc_\bo_\bm_\bm_\be_\bn_\bt_\b__\bt_\bo
+       _\b7_\b._\b4_\b._\b1_\b4_\b9  _\bn_\bn_\bt_\bp_\b__\ba_\bs_\bk_\b__\bx_\b__\bc_\bo_\bm_\bm_\be_\bn_\bt_\b__\bt_\bo
 
        Type: boolean
 
        If _\bs_\be_\bt, Mutt-ng will prompt you for the X-Comment-To: header field before edit-
        ing the body of an outgoing news article.
 
-       _\b7_\b._\b4_\b._\b1_\b4_\b8  _\bn_\bn_\bt_\bp_\b__\bc_\ba_\bc_\bh_\be_\b__\bd_\bi_\br
+       The Mutt Next Generation E-Mail Client                                      124
+
+       _\b7_\b._\b4_\b._\b1_\b5_\b0  _\bn_\bn_\bt_\bp_\b__\bc_\ba_\bc_\bh_\be_\b__\bd_\bi_\br
 
        Type: path
 
        As for the header caching in connection with IMAP and/or Maildir, this drasti-
        cally increases speed and lowers traffic.
 
-       _\b7_\b._\b4_\b._\b1_\b4_\b9  _\bn_\bn_\bt_\bp_\b__\bc_\ba_\bt_\bc_\bh_\bu_\bp
+       _\b7_\b._\b4_\b._\b1_\b5_\b1  _\bn_\bn_\bt_\bp_\b__\bc_\ba_\bt_\bc_\bh_\bu_\bp
 
        Type: quadoption
 
        If this variable is _\bs_\be_\bt, Mutt-ng will mark all articles in a newsgroup as read
        when you leaving it.
 
-       _\b7_\b._\b4_\b._\b1_\b5_\b0  _\bn_\bn_\bt_\bp_\b__\bc_\bo_\bn_\bt_\be_\bx_\bt
+       _\b7_\b._\b4_\b._\b1_\b5_\b2  _\bn_\bn_\bt_\bp_\b__\bc_\bo_\bn_\bt_\be_\bx_\bt
 
        Type: number
 
 
        Availability: NNTP
 
-       The Mutt Next Generation E-Mail Client                                      124
-
        This variable controls how many news articles to cache per newsgroup (if
-       caching is enabled, see _\b$_\bn_\bn_\bt_\bp_\b__\bc_\ba_\bc_\bh_\be_\b__\bd_\bi_\br (section 7.4.148  , page 122)) and how
+       caching is enabled, see _\b$_\bn_\bn_\bt_\bp_\b__\bc_\ba_\bc_\bh_\be_\b__\bd_\bi_\br (section 7.4.150  , page 123)) and how
        many news articles to show in the ``index'' menu.
 
-       If there're more articles than defined with _\b$_\bn_\bn_\bt_\bp_\b__\bc_\bo_\bn_\bt_\be_\bx_\bt (section 7.4.150  ,
-       page 122), all older ones will be removed/not shown in the index.
+       If there're more articles than defined with _\b$_\bn_\bn_\bt_\bp_\b__\bc_\bo_\bn_\bt_\be_\bx_\bt (section 7.4.152  ,
+       page 124), all older ones will be removed/not shown in the index.
 
-       _\b7_\b._\b4_\b._\b1_\b5_\b1  _\bn_\bn_\bt_\bp_\b__\bf_\bo_\bl_\bl_\bo_\bw_\bu_\bp_\b__\bt_\bo_\b__\bp_\bo_\bs_\bt_\be_\br
+       _\b7_\b._\b4_\b._\b1_\b5_\b3  _\bn_\bn_\bt_\bp_\b__\bf_\bo_\bl_\bl_\bo_\bw_\bu_\bp_\b__\bt_\bo_\b__\bp_\bo_\bs_\bt_\be_\br
 
        Type: quadoption
 
        header field, a follow-up to the newsgroup is not permitted.  The message will
        be mailed to the submitter of the message via mail.
 
-       _\b7_\b._\b4_\b._\b1_\b5_\b2  _\bn_\bn_\bt_\bp_\b__\bg_\br_\bo_\bu_\bp_\b__\bi_\bn_\bd_\be_\bx_\b__\bf_\bo_\br_\bm_\ba_\bt
+       The Mutt Next Generation E-Mail Client                                      125
+
+       _\b7_\b._\b4_\b._\b1_\b5_\b4  _\bn_\bn_\bt_\bp_\b__\bg_\br_\bo_\bu_\bp_\b__\bi_\bn_\bd_\be_\bx_\b__\bf_\bo_\br_\bm_\ba_\bt
 
        Type: string
 
        Availability: NNTP
 
        This variable allows you to customize the newsgroup browser display to your
-       personal taste.  This string is similar to ``_\bi_\bn_\bd_\be_\bx_\b__\bf_\bo_\br_\bm_\ba_\bt (section 7.4.111  ,
-       page 111)'', but has its own set of printf(3)-like sequences:
+       personal taste.  This string is similar to ``_\bi_\bn_\bd_\be_\bx_\b__\bf_\bo_\br_\bm_\ba_\bt (section 7.4.113  ,
+       page 113)'', but has its own set of printf(3)-like sequences:
 
             %C      current newsgroup number
             %d      description of newsgroup (retrieved from server)
             %>X     right justify the rest of the string and pad with character "X"
             %|X     pad to the end of the line with character "X"
 
-       _\b7_\b._\b4_\b._\b1_\b5_\b3  _\bn_\bn_\bt_\bp_\b__\bh_\bo_\bs_\bt
+       _\b7_\b._\b4_\b._\b1_\b5_\b5  _\bn_\bn_\bt_\bp_\b__\bh_\bo_\bs_\bt
 
        Type: string
 
        This variable specifies the name (or address) of the NNTP server to be used.
 
        It defaults to the value specified via the environment variable $NNTPSERVER or
-
-       The Mutt Next Generation E-Mail Client                                      125
-
        contained in the file /etc/nntpserver.
 
        You can also specify a username and an alternative port for each newsserver,
        security risk since the superuser of your machine may read it regardless of the
        file's permissions.
 
-       _\b7_\b._\b4_\b._\b1_\b5_\b4  _\bn_\bn_\bt_\bp_\b__\bi_\bn_\be_\bw_\bs
+       _\b7_\b._\b4_\b._\b1_\b5_\b6  _\bn_\bn_\bt_\bp_\b__\bi_\bn_\be_\bw_\bs
 
        Type: path
 
 
        Availability: NNTP
 
+       The Mutt Next Generation E-Mail Client                                      126
+
        If _\bs_\be_\bt, specifies the program and arguments used to deliver news posted by
        Mutt-ng.  Otherwise, Mutt-ng posts article using current connection.  The fol-
        lowing printf(3)-style sequence is understood:
 
        Example: set inews='/usr/local/bin/inews -hS'
 
-       _\b7_\b._\b4_\b._\b1_\b5_\b5  _\bn_\bn_\bt_\bp_\b__\bl_\bo_\ba_\bd_\b__\bd_\be_\bs_\bc_\br_\bi_\bp_\bt_\bi_\bo_\bn
+       _\b7_\b._\b4_\b._\b1_\b5_\b7  _\bn_\bn_\bt_\bp_\b__\bl_\bo_\ba_\bd_\b__\bd_\be_\bs_\bc_\br_\bi_\bp_\bt_\bi_\bo_\bn
 
        Type: boolean
 
        This variable controls whether or not descriptions for newsgroups are to be
        loaded when subscribing to a newsgroup.
 
-       _\b7_\b._\b4_\b._\b1_\b5_\b6  _\bn_\bn_\bt_\bp_\b__\bm_\ba_\bi_\bl_\b__\bc_\bh_\be_\bc_\bk
+       _\b7_\b._\b4_\b._\b1_\b5_\b8  _\bn_\bn_\bt_\bp_\b__\bm_\ba_\bi_\bl_\b__\bc_\bh_\be_\bc_\bk
 
        Type: number
 
        article will cause a recheck for new news. If set to 0, Mutt-ng will recheck on
        each operation in index (stepping, read article, etc.).
 
-       _\b7_\b._\b4_\b._\b1_\b5_\b7  _\bn_\bn_\bt_\bp_\b__\bm_\bi_\bm_\be_\b__\bs_\bu_\bb_\bj_\be_\bc_\bt
-
-       The Mutt Next Generation E-Mail Client                                      126
+       _\b7_\b._\b4_\b._\b1_\b5_\b9  _\bn_\bn_\bt_\bp_\b__\bm_\bi_\bm_\be_\b__\bs_\bu_\bb_\bj_\be_\bc_\bt
 
        Type: boolean
 
 
        N\bNo\bot\bte\be:\b: Only change this setting if you know what you are doing.
 
-       _\b7_\b._\b4_\b._\b1_\b5_\b8  _\bn_\bn_\bt_\bp_\b__\bn_\be_\bw_\bs_\br_\bc
+       _\b7_\b._\b4_\b._\b1_\b6_\b0  _\bn_\bn_\bt_\bp_\b__\bn_\be_\bw_\bs_\br_\bc
 
        Type: path
 
 
        Availability: NNTP
 
+       The Mutt Next Generation E-Mail Client                                      127
+
        This file contains information about subscribed newsgroup and articles read so
        far.
 
 
             %s      newsserver name
 
-       _\b7_\b._\b4_\b._\b1_\b5_\b9  _\bn_\bn_\bt_\bp_\b__\bp_\ba_\bs_\bs
+       _\b7_\b._\b4_\b._\b1_\b6_\b1  _\bn_\bn_\bt_\bp_\b__\bp_\ba_\bs_\bs
 
        Type: string
 
        N\bNo\bot\bte\be:\b: Storing passwords in a configuration file presents a security risk since
        the superuser of your machine may read it regardless of the file's permissions.
 
-       _\b7_\b._\b4_\b._\b1_\b6_\b0  _\bn_\bn_\bt_\bp_\b__\bp_\bo_\bs_\bt_\b__\bm_\bo_\bd_\be_\br_\ba_\bt_\be_\bd
+       _\b7_\b._\b4_\b._\b1_\b6_\b2  _\bn_\bn_\bt_\bp_\b__\bp_\bo_\bs_\bt_\b__\bm_\bo_\bd_\be_\br_\ba_\bt_\be_\bd
 
        Type: quadoption
 
        sions to post (e.g. moderated).
 
        N\bNo\bot\bte\be:\b: if the newsserver does not support posting to that newsgroup or a group
-
-       The Mutt Next Generation E-Mail Client                                      127
-
        is totally read-only, that posting will not have any effect.
 
-       _\b7_\b._\b4_\b._\b1_\b6_\b1  _\bn_\bn_\bt_\bp_\b__\br_\be_\bc_\bo_\bn_\bn_\be_\bc_\bt
+       _\b7_\b._\b4_\b._\b1_\b6_\b3  _\bn_\bn_\bt_\bp_\b__\br_\be_\bc_\bo_\bn_\bn_\be_\bc_\bt
 
        Type: quadoption
 
        Controls whether or not Mutt-ng will try to reconnect to a newsserver when the
        was connection lost.
 
-       _\b7_\b._\b4_\b._\b1_\b6_\b2  _\bn_\bn_\bt_\bp_\b__\bs_\ba_\bv_\be_\b__\bu_\bn_\bs_\bu_\bb_\bs_\bc_\br_\bi_\bb_\be_\bd
+       _\b7_\b._\b4_\b._\b1_\b6_\b4  _\bn_\bn_\bt_\bp_\b__\bs_\ba_\bv_\be_\b__\bu_\bn_\bs_\bu_\bb_\bs_\bc_\br_\bi_\bb_\be_\bd
 
        Type: boolean
 
        Default: no
 
+       The Mutt Next Generation E-Mail Client                                      128
+
        Availability: NNTP
 
        When _\bs_\be_\bt, info about unsubscribed newsgroups will be saved into the ``newsrc''
        file and into the news cache.
 
-       _\b7_\b._\b4_\b._\b1_\b6_\b3  _\bn_\bn_\bt_\bp_\b__\bs_\bh_\bo_\bw_\b__\bn_\be_\bw_\b__\bn_\be_\bw_\bs
+       _\b7_\b._\b4_\b._\b1_\b6_\b5  _\bn_\bn_\bt_\bp_\b__\bs_\bh_\bo_\bw_\b__\bn_\be_\bw_\b__\bn_\be_\bw_\bs
 
        Type: boolean
 
        whether or not the number of new articles of subscribed newsgroups will be
        checked.
 
-       _\b7_\b._\b4_\b._\b1_\b6_\b4  _\bn_\bn_\bt_\bp_\b__\bs_\bh_\bo_\bw_\b__\bo_\bn_\bl_\by_\b__\bu_\bn_\br_\be_\ba_\bd
+       _\b7_\b._\b4_\b._\b1_\b6_\b6  _\bn_\bn_\bt_\bp_\b__\bs_\bh_\bo_\bw_\b__\bo_\bn_\bl_\by_\b__\bu_\bn_\br_\be_\ba_\bd
 
        Type: boolean
 
        If _\bs_\be_\bt, only subscribed newsgroups that contain unread articles will be dis-
        played in the newsgroup browser.
 
-       _\b7_\b._\b4_\b._\b1_\b6_\b5  _\bn_\bn_\bt_\bp_\b__\bu_\bs_\be_\br
+       _\b7_\b._\b4_\b._\b1_\b6_\b7  _\bn_\bn_\bt_\bp_\b__\bu_\bs_\be_\br
 
        Type: string
 
        Default: ''
 
-       The Mutt Next Generation E-Mail Client                                      128
-
        Availability: NNTP
 
        Your login name on the NNTP server.  If _\bu_\bn_\bs_\be_\bt and the server requires authen-
        tification, Mutt-ng will prompt you for your account name.
 
-       _\b7_\b._\b4_\b._\b1_\b6_\b6  _\bn_\bn_\bt_\bp_\b__\bx_\b__\bc_\bo_\bm_\bm_\be_\bn_\bt_\b__\bt_\bo
+       _\b7_\b._\b4_\b._\b1_\b6_\b8  _\bn_\bn_\bt_\bp_\b__\bx_\b__\bc_\bo_\bm_\bm_\be_\bn_\bt_\b__\bt_\bo
 
        Type: boolean
 
        If _\bs_\be_\bt, Mutt-ng will add a ``X-Comment-To:'' header field (that contains full
        name of the original article author) to articles that you followup to.
 
-       _\b7_\b._\b4_\b._\b1_\b6_\b7  _\bo_\bp_\be_\br_\ba_\bt_\bi_\bn_\bg_\b__\bs_\by_\bs_\bt_\be_\bm
+       _\b7_\b._\b4_\b._\b1_\b6_\b9  _\bo_\bp_\be_\br_\ba_\bt_\bi_\bn_\bg_\b__\bs_\by_\bs_\bt_\be_\bm
 
        Type: string
 
+       The Mutt Next Generation E-Mail Client                                      129
+
        Default: ''
 
        This specifies the operating system name for the User-Agent: header field. If
 
        It may, for example, look as: ``mutt-ng 1.5.9i (Linux)''.
 
-       _\b7_\b._\b4_\b._\b1_\b6_\b8  _\bp_\ba_\bg_\be_\br
+       _\b7_\b._\b4_\b._\b1_\b7_\b0  _\bp_\ba_\bg_\be_\br
 
        Type: path
 
        screen resizes cause lines longer than the screen width to be badly formatted
        in the help menu.
 
-       _\b7_\b._\b4_\b._\b1_\b6_\b9  _\bp_\ba_\bg_\be_\br_\b__\bc_\bo_\bn_\bt_\be_\bx_\bt
+       _\b7_\b._\b4_\b._\b1_\b7_\b1  _\bp_\ba_\bg_\be_\br_\b__\bc_\bo_\bn_\bt_\be_\bx_\bt
 
        Type: number
 
        will display the line after the last one on the screen at the top of the next
        page (0 lines of context).
 
-       The Mutt Next Generation E-Mail Client                                      129
-
-       _\b7_\b._\b4_\b._\b1_\b7_\b0  _\bp_\ba_\bg_\be_\br_\b__\bf_\bo_\br_\bm_\ba_\bt
+       _\b7_\b._\b4_\b._\b1_\b7_\b2  _\bp_\ba_\bg_\be_\br_\b__\bf_\bo_\br_\bm_\ba_\bt
 
        Type: string
 
 
        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 ``_\b$_\bi_\bn_\bd_\be_\bx_\b__\bf_\bo_\br_\bm_\ba_\bt (section 7.4.111  , page 111)''
+       sequences are listed in the ``_\b$_\bi_\bn_\bd_\be_\bx_\b__\bf_\bo_\br_\bm_\ba_\bt (section 7.4.113  , page 113)''
        section.
 
-       _\b7_\b._\b4_\b._\b1_\b7_\b1  _\bp_\ba_\bg_\be_\br_\b__\bi_\bn_\bd_\be_\bx_\b__\bl_\bi_\bn_\be_\bs
+       _\b7_\b._\b4_\b._\b1_\b7_\b3  _\bp_\ba_\bg_\be_\br_\b__\bi_\bn_\bd_\be_\bx_\b__\bl_\bi_\bn_\be_\bs
 
        Type: number
 
        Determines the number of lines of a mini-index which is shown when in the
        pager.  The current message, unless near the top or bottom of the folder, will
        be roughly one third of the way down this mini-index, giving the reader the
+
+       The Mutt Next Generation E-Mail Client                                      130
+
        context of a few messages before and after the message.  This is useful, for
        example, to determine how many messages remain to be read in the current
        thread.  One of the lines is reserved for the status bar from the index, so a
        folder is less than _\bp_\ba_\bg_\be_\br_\b__\bi_\bn_\bd_\be_\bx_\b__\bl_\bi_\bn_\be_\bs, then the index will only use as many
        lines as it needs.
 
-       _\b7_\b._\b4_\b._\b1_\b7_\b2  _\bp_\ba_\bg_\be_\br_\b__\bs_\bt_\bo_\bp
+       _\b7_\b._\b4_\b._\b1_\b7_\b4  _\bp_\ba_\bg_\be_\br_\b__\bs_\bt_\bo_\bp
 
        Type: boolean
 
        When _\bs_\be_\bt, the internal-pager will n\bno\bot\bt move to the next message when you are at
        the end of a message and invoke the _\bn_\be_\bx_\bt_\b-_\bp_\ba_\bg_\be function.
 
-       _\b7_\b._\b4_\b._\b1_\b7_\b3  _\bp_\bg_\bp_\b__\ba_\bu_\bt_\bo_\b__\bd_\be_\bc_\bo_\bd_\be
+       _\b7_\b._\b4_\b._\b1_\b7_\b5  _\bp_\bg_\bp_\b__\ba_\bu_\bt_\bo_\b__\bd_\be_\bc_\bo_\bd_\be
 
        Type: boolean
 
        ditional-pgp function, Mutt-ng will automatically check the message for tradi-
        tional pgp.
 
-       _\b7_\b._\b4_\b._\b1_\b7_\b4  _\bp_\bg_\bp_\b__\ba_\bu_\bt_\bo_\bi_\bn_\bl_\bi_\bn_\be
+       _\b7_\b._\b4_\b._\b1_\b7_\b6  _\bp_\bg_\bp_\b__\ba_\bu_\bt_\bo_\bi_\bn_\bl_\bi_\bn_\be
 
        Type: boolean
 
-       The Mutt Next Generation E-Mail Client                                      130
-
        Default: no
 
        This option controls whether Mutt-ng generates old-style inline (traditional)
        Note that Mutt-ng might automatically use PGP/MIME for messages which consist
        of more than a single MIME part.  Mutt-ng can be configured to ask before send-
        ing PGP/MIME messages when inline (traditional) would not work.  See also:
-       ``_\b$_\bp_\bg_\bp_\b__\bm_\bi_\bm_\be_\b__\ba_\bu_\bt_\bo (section 7.4.190  , page 132)''.
+       ``_\b$_\bp_\bg_\bp_\b__\bm_\bi_\bm_\be_\b__\ba_\bu_\bt_\bo (section 7.4.192  , page 134)''.
 
        Also note that using the old-style PGP message format is s\bst\btr\bro\bon\bng\bgl\bly\by d\bde\bep\bpr\bre\bec\bca\bat\bte\bed\bd.
        (PGP only)
 
-       _\b7_\b._\b4_\b._\b1_\b7_\b5  _\bp_\bg_\bp_\b__\bc_\bh_\be_\bc_\bk_\b__\be_\bx_\bi_\bt
+       _\b7_\b._\b4_\b._\b1_\b7_\b7  _\bp_\bg_\bp_\b__\bc_\bh_\be_\bc_\bk_\b__\be_\bx_\bi_\bt
 
        Type: boolean
 
        Default: yes
 
+       The Mutt Next Generation E-Mail Client                                      131
+
        If _\bs_\be_\bt, Mutt-ng will check the exit code of the PGP subprocess when signing or
        encrypting.  A non-zero exit code means that the subprocess failed.  (PGP only)
 
-       _\b7_\b._\b4_\b._\b1_\b7_\b6  _\bp_\bg_\bp_\b__\bc_\bl_\be_\ba_\br_\bs_\bi_\bg_\bn_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd
+       _\b7_\b._\b4_\b._\b1_\b7_\b8  _\bp_\bg_\bp_\b__\bc_\bl_\be_\ba_\br_\bs_\bi_\bg_\bn_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd
 
        Type: string
 
 
        Note that the use of this format is s\bst\btr\bro\bon\bng\bgl\bly\by d\bde\bep\bpr\bre\bec\bca\bat\bte\bed\bd.  (PGP only)
 
-       _\b7_\b._\b4_\b._\b1_\b7_\b7  _\bp_\bg_\bp_\b__\bd_\be_\bc_\bo_\bd_\be_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd
+       _\b7_\b._\b4_\b._\b1_\b7_\b9  _\bp_\bg_\bp_\b__\bd_\be_\bc_\bo_\bd_\be_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd
 
        Type: string
 
                    Expands to the name of a file containing the signature part of a
                    multipart/signed attachment when verifying it.
 
-       The Mutt Next Generation E-Mail Client                                      131
-
              %a
-                   The value of _\b$_\bp_\bg_\bp_\b__\bs_\bi_\bg_\bn_\b__\ba_\bs (section 7.4.194  , page 133).
+                   The value of _\b$_\bp_\bg_\bp_\b__\bs_\bi_\bg_\bn_\b__\ba_\bs (section 7.4.196  , page 135).
 
              %r
                    One or more key IDs.
        subdirectory which has been installed on your system alongside the documenta-
        tion.  (PGP only)
 
-       _\b7_\b._\b4_\b._\b1_\b7_\b8  _\bp_\bg_\bp_\b__\bd_\be_\bc_\br_\by_\bp_\bt_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd
+       _\b7_\b._\b4_\b._\b1_\b8_\b0  _\bp_\bg_\bp_\b__\bd_\be_\bc_\br_\by_\bp_\bt_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd
 
        Type: string
 
 
        This command is used to decrypt a PGP encrypted message.  (PGP only)
 
-       _\b7_\b._\b4_\b._\b1_\b7_\b9  _\bp_\bg_\bp_\b__\be_\bn_\bc_\br_\by_\bp_\bt_\b__\bo_\bn_\bl_\by_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd
+       The Mutt Next Generation E-Mail Client                                      132
+
+       _\b7_\b._\b4_\b._\b1_\b8_\b1  _\bp_\bg_\bp_\b__\be_\bn_\bc_\br_\by_\bp_\bt_\b__\bo_\bn_\bl_\by_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd
 
        Type: string
 
 
        This command is used to encrypt a body part without signing it.  (PGP only)
 
-       _\b7_\b._\b4_\b._\b1_\b8_\b0  _\bp_\bg_\bp_\b__\be_\bn_\bc_\br_\by_\bp_\bt_\b__\bs_\bi_\bg_\bn_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd
+       _\b7_\b._\b4_\b._\b1_\b8_\b2  _\bp_\bg_\bp_\b__\be_\bn_\bc_\br_\by_\bp_\bt_\b__\bs_\bi_\bg_\bn_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd
 
        Type: string
 
 
        This command is used to both sign and encrypt a body part.  (PGP only)
 
-       _\b7_\b._\b4_\b._\b1_\b8_\b1  _\bp_\bg_\bp_\b__\be_\bn_\bt_\br_\by_\b__\bf_\bo_\br_\bm_\ba_\bt
+       _\b7_\b._\b4_\b._\b1_\b8_\b3  _\bp_\bg_\bp_\b__\be_\bn_\bt_\br_\by_\b__\bf_\bo_\br_\bm_\ba_\bt
 
        Type: string
 
        Default: '%4n %t%f %4l/0x%k %-4a %2c %u'
 
        This variable allows you to customize the PGP key selection menu to your per-
-       sonal taste. This string is similar to ``_\b$_\bi_\bn_\bd_\be_\bx_\b__\bf_\bo_\br_\bm_\ba_\bt (section 7.4.111  , page
-       111)'', but has its own set of printf(3)-like sequences:
+       sonal taste. This string is similar to ``_\b$_\bi_\bn_\bd_\be_\bx_\b__\bf_\bo_\br_\bm_\ba_\bt (section 7.4.113  , page
+       113)'', but has its own set of printf(3)-like sequences:
 
              %n
                    number
              %u
                    user id
 
-       The Mutt Next Generation E-Mail Client                                      132
-
              %a
                    algorithm
 
 
        (PGP only)
 
-       _\b7_\b._\b4_\b._\b1_\b8_\b2  _\bp_\bg_\bp_\b__\be_\bx_\bp_\bo_\br_\bt_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd
+       The Mutt Next Generation E-Mail Client                                      133
+
+       _\b7_\b._\b4_\b._\b1_\b8_\b4  _\bp_\bg_\bp_\b__\be_\bx_\bp_\bo_\br_\bt_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd
 
        Type: string
 
        This command is used to export a public key from the user's key ring.  (PGP
        only)
 
-       _\b7_\b._\b4_\b._\b1_\b8_\b3  _\bp_\bg_\bp_\b__\bg_\be_\bt_\bk_\be_\by_\bs_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd
+       _\b7_\b._\b4_\b._\b1_\b8_\b5  _\bp_\bg_\bp_\b__\bg_\be_\bt_\bk_\be_\by_\bs_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd
 
        Type: string
 
        This command is invoked whenever Mutt-ng will need public key information.  %r
        is the only printf(3)-like sequence used with this format.  (PGP only)
 
-       _\b7_\b._\b4_\b._\b1_\b8_\b4  _\bp_\bg_\bp_\b__\bg_\bo_\bo_\bd_\b__\bs_\bi_\bg_\bn
+       _\b7_\b._\b4_\b._\b1_\b8_\b6  _\bp_\bg_\bp_\b__\bg_\bo_\bo_\bd_\b__\bs_\bi_\bg_\bn
 
        Type: regular expression
 
        Default: ''
 
        If you assign a text to this variable, then a PGP signature is only considered
-       verified if the output from _\b$_\bp_\bg_\bp_\b__\bv_\be_\br_\bi_\bf_\by_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd (section 7.4.200  , page 135)
+       verified if the output from _\b$_\bp_\bg_\bp_\b__\bv_\be_\br_\bi_\bf_\by_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd (section 7.4.202  , page 136)
        contains the text. Use this variable if the exit code from the command is 0
        even for bad signatures.  (PGP only)
 
-       _\b7_\b._\b4_\b._\b1_\b8_\b5  _\bp_\bg_\bp_\b__\bi_\bg_\bn_\bo_\br_\be_\b__\bs_\bu_\bb_\bk_\be_\by_\bs
+       _\b7_\b._\b4_\b._\b1_\b8_\b7  _\bp_\bg_\bp_\b__\bi_\bg_\bn_\bo_\br_\be_\b__\bs_\bu_\bb_\bk_\be_\by_\bs
 
        Type: boolean
 
        Default: yes
 
-       The Mutt Next Generation E-Mail Client                                      133
-
        Setting this variable will cause Mutt-ng to ignore OpenPGP subkeys. Instead,
        the principal key will inherit the subkeys' capabilities. _\bU_\bn_\bs_\be_\bt this if you
        want to play interesting key selection games.  (PGP only)
 
-       _\b7_\b._\b4_\b._\b1_\b8_\b6  _\bp_\bg_\bp_\b__\bi_\bm_\bp_\bo_\br_\bt_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd
+       _\b7_\b._\b4_\b._\b1_\b8_\b8  _\bp_\bg_\bp_\b__\bi_\bm_\bp_\bo_\br_\bt_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd
 
        Type: string
 
        This command is used to import a key from a message into the user's public key
        ring.  (PGP only)
 
-       _\b7_\b._\b4_\b._\b1_\b8_\b7  _\bp_\bg_\bp_\b__\bl_\bi_\bs_\bt_\b__\bp_\bu_\bb_\br_\bi_\bn_\bg_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd
+       _\b7_\b._\b4_\b._\b1_\b8_\b9  _\bp_\bg_\bp_\b__\bl_\bi_\bs_\bt_\b__\bp_\bu_\bb_\br_\bi_\bn_\bg_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd
 
        Type: string
 
        Default: ''
 
+       The Mutt Next Generation E-Mail Client                                      134
+
        This command is used to list the public key ring's contents.  The output format
        must be analogous to the one used by gpg --list-keys --with-colons.
 
        This format is also generated by the pgpring utility which comes with Mutt-ng.
        (PGP only)
 
-       _\b7_\b._\b4_\b._\b1_\b8_\b8  _\bp_\bg_\bp_\b__\bl_\bi_\bs_\bt_\b__\bs_\be_\bc_\br_\bi_\bn_\bg_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd
+       _\b7_\b._\b4_\b._\b1_\b9_\b0  _\bp_\bg_\bp_\b__\bl_\bi_\bs_\bt_\b__\bs_\be_\bc_\br_\bi_\bn_\bg_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd
 
        Type: string
 
        This format is also generated by the pgpring utility which comes with Mutt-ng.
        (PGP only)
 
-       _\b7_\b._\b4_\b._\b1_\b8_\b9  _\bp_\bg_\bp_\b__\bl_\bo_\bn_\bg_\b__\bi_\bd_\bs
+       _\b7_\b._\b4_\b._\b1_\b9_\b1  _\bp_\bg_\bp_\b__\bl_\bo_\bn_\bg_\b__\bi_\bd_\bs
 
        Type: boolean
 
        If _\bs_\be_\bt, use 64 bit PGP key IDs. _\bU_\bn_\bs_\be_\bt uses the normal 32 bit Key IDs.  (PGP
        only)
 
-       _\b7_\b._\b4_\b._\b1_\b9_\b0  _\bp_\bg_\bp_\b__\bm_\bi_\bm_\be_\b__\ba_\bu_\bt_\bo
+       _\b7_\b._\b4_\b._\b1_\b9_\b2  _\bp_\bg_\bp_\b__\bm_\bi_\bm_\be_\b__\ba_\bu_\bt_\bo
 
        Type: quadoption
 
 
        This option controls whether Mutt-ng will prompt you for automatically sending
        a (signed/encrypted) message using PGP/MIME when inline (traditional) fails
-
-       The Mutt Next Generation E-Mail Client                                      134
-
        (for any reason).
 
        Also note that using the old-style PGP message format is s\bst\btr\bro\bon\bng\bgl\bly\by d\bde\bep\bpr\bre\bec\bca\bat\bte\bed\bd.
        (PGP only)
 
-       _\b7_\b._\b4_\b._\b1_\b9_\b1  _\bp_\bg_\bp_\b__\br_\be_\bp_\bl_\by_\bi_\bn_\bl_\bi_\bn_\be
+       _\b7_\b._\b4_\b._\b1_\b9_\b3  _\bp_\bg_\bp_\b__\br_\be_\bp_\bl_\by_\bi_\bn_\bl_\bi_\bn_\be
 
        Type: boolean
 
        checked/flagged messages.
 
        Note that Mutt-ng might automatically use PGP/MIME for messages which consist
+
+       The Mutt Next Generation E-Mail Client                                      135
+
        of more than a single MIME part.  Mutt-ng can be configured to ask before send-
        ing PGP/MIME messages when inline (traditional) would not work.  See also:
-       ``_\b$_\bp_\bg_\bp_\b__\bm_\bi_\bm_\be_\b__\ba_\bu_\bt_\bo (section 7.4.190  , page 132)''.
+       ``_\b$_\bp_\bg_\bp_\b__\bm_\bi_\bm_\be_\b__\ba_\bu_\bt_\bo (section 7.4.192  , page 134)''.
 
        Also note that using the old-style PGP message format is s\bst\btr\bro\bon\bng\bgl\bly\by d\bde\bep\bpr\bre\bec\bca\bat\bte\bed\bd.
        (PGP only)
 
-       _\b7_\b._\b4_\b._\b1_\b9_\b2  _\bp_\bg_\bp_\b__\br_\be_\bt_\ba_\bi_\bn_\ba_\bb_\bl_\be_\b__\bs_\bi_\bg_\bs
+       _\b7_\b._\b4_\b._\b1_\b9_\b4  _\bp_\bg_\bp_\b__\br_\be_\bt_\ba_\bi_\bn_\ba_\bb_\bl_\be_\b__\bs_\bi_\bg_\bs
 
        Type: boolean
 
        the outer layer (multipart/encrypted) can be easily removed, while the inner
        multipart/signed part is retained.  (PGP only)
 
-       _\b7_\b._\b4_\b._\b1_\b9_\b3  _\bp_\bg_\bp_\b__\bs_\bh_\bo_\bw_\b__\bu_\bn_\bu_\bs_\ba_\bb_\bl_\be
+       _\b7_\b._\b4_\b._\b1_\b9_\b5  _\bp_\bg_\bp_\b__\bs_\bh_\bo_\bw_\b__\bu_\bn_\bu_\bs_\ba_\bb_\bl_\be
 
        Type: boolean
 
        This includes keys which have been revoked, have expired, or have been marked
        as ``disabled'' by the user.  (PGP only)
 
-       _\b7_\b._\b4_\b._\b1_\b9_\b4  _\bp_\bg_\bp_\b__\bs_\bi_\bg_\bn_\b__\ba_\bs
+       _\b7_\b._\b4_\b._\b1_\b9_\b6  _\bp_\bg_\bp_\b__\bs_\bi_\bg_\bn_\b__\ba_\bs
 
        Type: string
 
        Default: ''
 
-       The Mutt Next Generation E-Mail Client                                      135
-
        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., ``0x00112233'').  (PGP only)
 
-       _\b7_\b._\b4_\b._\b1_\b9_\b5  _\bp_\bg_\bp_\b__\bs_\bi_\bg_\bn_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd
+       _\b7_\b._\b4_\b._\b1_\b9_\b7  _\bp_\bg_\bp_\b__\bs_\bi_\bg_\bn_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd
 
        Type: string
 
        This command is used to create the detached PGP signature for a multi-
        part/signed PGP/MIME body part.  (PGP only)
 
-       _\b7_\b._\b4_\b._\b1_\b9_\b6  _\bp_\bg_\bp_\b__\bs_\bo_\br_\bt_\b__\bk_\be_\by_\bs
+       _\b7_\b._\b4_\b._\b1_\b9_\b8  _\bp_\bg_\bp_\b__\bs_\bo_\br_\bt_\b__\bk_\be_\by_\bs
 
        Type: sort order
 
        Default: address
 
+       The Mutt Next Generation E-Mail Client                                      136
+
        Specifies how the entries in the ``pgp keys'' menu are sorted. The following
        are legal values:
 
        If you prefer reverse order of the above values, prefix it with ``reverse-''.
        (PGP only)
 
-       _\b7_\b._\b4_\b._\b1_\b9_\b7  _\bp_\bg_\bp_\b__\bs_\bt_\br_\bi_\bc_\bt_\b__\be_\bn_\bc
+       _\b7_\b._\b4_\b._\b1_\b9_\b9  _\bp_\bg_\bp_\b__\bs_\bt_\br_\bi_\bc_\bt_\b__\be_\bn_\bc
 
        Type: boolean
 
        non-verifyable PGP signatures, so only change this if you know what you are
        doing.  (PGP only)
 
-       _\b7_\b._\b4_\b._\b1_\b9_\b8  _\bp_\bg_\bp_\b__\bt_\bi_\bm_\be_\bo_\bu_\bt
+       _\b7_\b._\b4_\b._\b2_\b0_\b0  _\bp_\bg_\bp_\b__\bt_\bi_\bm_\be_\bo_\bu_\bt
 
        Type: number
 
        Default: 300
 
-       The Mutt Next Generation E-Mail Client                                      136
-
        The number of seconds after which a cached passphrase will expire if not used.
        Default: 300.  (PGP only)
 
-       _\b7_\b._\b4_\b._\b1_\b9_\b9  _\bp_\bg_\bp_\b__\bu_\bs_\be_\b__\bg_\bp_\bg_\b__\ba_\bg_\be_\bn_\bt
+       _\b7_\b._\b4_\b._\b2_\b0_\b1  _\bp_\bg_\bp_\b__\bu_\bs_\be_\b__\bg_\bp_\bg_\b__\ba_\bg_\be_\bn_\bt
 
        Type: boolean
 
 
        If _\bs_\be_\bt, Mutt-ng will use a possibly-running gpg-agent process.  (PGP only)
 
-       _\b7_\b._\b4_\b._\b2_\b0_\b0  _\bp_\bg_\bp_\b__\bv_\be_\br_\bi_\bf_\by_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd
+       _\b7_\b._\b4_\b._\b2_\b0_\b2  _\bp_\bg_\bp_\b__\bv_\be_\br_\bi_\bf_\by_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd
 
        Type: string
 
 
        This command is used to verify PGP signatures.  (PGP only)
 
-       _\b7_\b._\b4_\b._\b2_\b0_\b1  _\bp_\bg_\bp_\b__\bv_\be_\br_\bi_\bf_\by_\b__\bk_\be_\by_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd
+       The Mutt Next Generation E-Mail Client                                      137
+
+       _\b7_\b._\b4_\b._\b2_\b0_\b3  _\bp_\bg_\bp_\b__\bv_\be_\br_\bi_\bf_\by_\b__\bk_\be_\by_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd
 
        Type: string
 
        This command is used to verify key information from the key selection menu.
        (PGP only)
 
-       _\b7_\b._\b4_\b._\b2_\b0_\b2  _\bp_\bi_\bp_\be_\b__\bd_\be_\bc_\bo_\bd_\be
+       _\b7_\b._\b4_\b._\b2_\b0_\b4  _\bp_\bi_\bp_\be_\b__\bd_\be_\bc_\bo_\bd_\be
 
        Type: boolean
 
        pipe the messages without any preprocessing. When _\bs_\be_\bt, Mutt-ng will weed head-
        ers and will attempt to PGP/MIME decode the messages first.
 
-       _\b7_\b._\b4_\b._\b2_\b0_\b3  _\bp_\bi_\bp_\be_\b__\bs_\be_\bp
+       _\b7_\b._\b4_\b._\b2_\b0_\b5  _\bp_\bi_\bp_\be_\b__\bs_\be_\bp
 
        Type: string
 
        The separator to add between messages when piping a list of tagged messages to
        an external Unix command.
 
-       _\b7_\b._\b4_\b._\b2_\b0_\b4  _\bp_\bi_\bp_\be_\b__\bs_\bp_\bl_\bi_\bt
+       _\b7_\b._\b4_\b._\b2_\b0_\b6  _\bp_\bi_\bp_\be_\b__\bs_\bp_\bl_\bi_\bt
 
        Type: boolean
 
        Default: no
 
        Used in connection with the _\bp_\bi_\bp_\be_\b-_\bm_\be_\bs_\bs_\ba_\bg_\be command and the ``tag- prefix'' or
-
-       The Mutt Next Generation E-Mail Client                                      137
-
        ``tag-prefix-cond'' operators.  If this variable is _\bu_\bn_\bs_\be_\bt, when piping a list
        of tagged messages Mutt-ng will concatenate the messages and will pipe them as
        a single folder.  When _\bs_\be_\bt, Mutt-ng will pipe the messages one by one.  In both
        cases the messages are piped in the current sorted order, and the ``_\b$_\bp_\bi_\bp_\be_\b__\bs_\be_\bp
-       (section 7.4.203  , page 135)'' separator is added after each message.
+       (section 7.4.205  , page 137)'' separator is added after each message.
 
-       _\b7_\b._\b4_\b._\b2_\b0_\b5  _\bp_\bo_\bp_\b__\ba_\bu_\bt_\bh_\b__\bt_\br_\by_\b__\ba_\bl_\bl
+       _\b7_\b._\b4_\b._\b2_\b0_\b7  _\bp_\bo_\bp_\b__\ba_\bu_\bt_\bh_\b__\bt_\br_\by_\b__\ba_\bl_\bl
 
        Type: boolean
 
        able. If a method is available but authentication fails, Mutt-ng will not con-
        nect to the POP server.
 
-       _\b7_\b._\b4_\b._\b2_\b0_\b6  _\bp_\bo_\bp_\b__\ba_\bu_\bt_\bh_\be_\bn_\bt_\bi_\bc_\ba_\bt_\bo_\br_\bs
+       The Mutt Next Generation E-Mail Client                                      138
+
+       _\b7_\b._\b4_\b._\b2_\b0_\b8  _\bp_\bo_\bp_\b__\ba_\bu_\bt_\bh_\be_\bn_\bt_\bi_\bc_\ba_\bt_\bo_\br_\bs
 
        Type: string
 
 
        Example: set pop_authenticators='digest-md5:apop:user'
 
-       _\b7_\b._\b4_\b._\b2_\b0_\b7  _\bp_\bo_\bp_\b__\bd_\be_\bl_\be_\bt_\be
+       _\b7_\b._\b4_\b._\b2_\b0_\b9  _\bp_\bo_\bp_\b__\bd_\be_\bl_\be_\bt_\be
 
        Type: quadoption
 
        server when using the ``fetch-mail'' function.  When _\bu_\bn_\bs_\be_\bt, Mutt-ng will down-
        load messages but also leave them on the POP server.
 
-       _\b7_\b._\b4_\b._\b2_\b0_\b8  _\bp_\bo_\bp_\b__\bh_\bo_\bs_\bt
+       _\b7_\b._\b4_\b._\b2_\b1_\b0  _\bp_\bo_\bp_\b__\bh_\bo_\bs_\bt
 
        Type: string
 
-       The Mutt Next Generation E-Mail Client                                      138
-
        Default: ''
 
        Availability: POP
        N\bNo\bot\bte\be:\b: Storing passwords in a configuration file presents a security risk since
        the superuser of your machine may read it regardless of the file's permissions.
 
-       _\b7_\b._\b4_\b._\b2_\b0_\b9  _\bp_\bo_\bp_\b__\bl_\ba_\bs_\bt
+       _\b7_\b._\b4_\b._\b2_\b1_\b1  _\bp_\bo_\bp_\b__\bl_\ba_\bs_\bt
 
        Type: boolean
 
 
        Availability: POP
 
+       The Mutt Next Generation E-Mail Client                                      139
+
        If this variable is _\bs_\be_\bt, Mutt-ng will try to use the ``LAST'' POP command for
        retrieving only unread messages from the POP server when using the ``fetch-
        mail'' function.
 
-       _\b7_\b._\b4_\b._\b2_\b1_\b0  _\bp_\bo_\bp_\b__\bm_\ba_\bi_\bl_\b__\bc_\bh_\be_\bc_\bk
+       _\b7_\b._\b4_\b._\b2_\b1_\b2  _\bp_\bo_\bp_\b__\bm_\ba_\bi_\bl_\b__\bc_\bh_\be_\bc_\bk
 
        Type: number
 
 
        This variable configures how often (in seconds) POP should look for new mail.
 
-       _\b7_\b._\b4_\b._\b2_\b1_\b1  _\bp_\bo_\bp_\b__\bp_\ba_\bs_\bs
+       _\b7_\b._\b4_\b._\b2_\b1_\b3  _\bp_\bo_\bp_\b__\bp_\ba_\bs_\bs
 
        Type: string
 
        N\bNo\bot\bte\be:\b: Storing passwords in a configuration file presents a security risk since
        the superuser of your machine may read it regardless of the file's permissions.
 
-       _\b7_\b._\b4_\b._\b2_\b1_\b2  _\bp_\bo_\bp_\b__\br_\be_\bc_\bo_\bn_\bn_\be_\bc_\bt
+       _\b7_\b._\b4_\b._\b2_\b1_\b4  _\bp_\bo_\bp_\b__\br_\be_\bc_\bo_\bn_\bn_\be_\bc_\bt
 
        Type: quadoption
 
        Default: ask-yes
 
-       The Mutt Next Generation E-Mail Client                                      139
-
        Availability: POP
 
        Controls whether or not Mutt-ng will try to reconnect to a POP server when the
        connection is lost.
 
-       _\b7_\b._\b4_\b._\b2_\b1_\b3  _\bp_\bo_\bp_\b__\bu_\bs_\be_\br
+       _\b7_\b._\b4_\b._\b2_\b1_\b5  _\bp_\bo_\bp_\b__\bu_\bs_\be_\br
 
        Type: string
 
 
        This variable defaults to your user name on the local machine.
 
-       _\b7_\b._\b4_\b._\b2_\b1_\b4  _\bp_\bo_\bs_\bt_\b__\bi_\bn_\bd_\be_\bn_\bt_\b__\bs_\bt_\br_\bi_\bn_\bg
+       _\b7_\b._\b4_\b._\b2_\b1_\b6  _\bp_\bo_\bs_\bt_\b__\bi_\bn_\bd_\be_\bn_\bt_\b__\bs_\bt_\br_\bi_\bn_\bg
 
        Type: string
 
+       The Mutt Next Generation E-Mail Client                                      140
+
        Default: ''
 
-       Similar to the ``_\b$_\ba_\bt_\bt_\br_\bi_\bb_\bu_\bt_\bi_\bo_\bn (section 7.4.15  , page 89)'' variable, Mutt-ng
+       Similar to the ``_\b$_\ba_\bt_\bt_\br_\bi_\bb_\bu_\bt_\bi_\bo_\bn (section 7.4.17  , page 91)'' variable, Mutt-ng
        will append this string after the inclusion of a message which is being replied
        to.
 
-       _\b7_\b._\b4_\b._\b2_\b1_\b5  _\bp_\bo_\bs_\bt_\bp_\bo_\bn_\be
+       _\b7_\b._\b4_\b._\b2_\b1_\b7  _\bp_\bo_\bs_\bt_\bp_\bo_\bn_\be
 
        Type: quadoption
 
        Default: ask-yes
 
        Controls whether or not messages are saved in the ``_\b$_\bp_\bo_\bs_\bt_\bp_\bo_\bn_\be_\bd (section
-       7.4.216  , page 138)'' mailbox when you elect not to send immediately.
+       7.4.218  , page 140)'' mailbox when you elect not to send immediately.
 
-       _\b7_\b._\b4_\b._\b2_\b1_\b6  _\bp_\bo_\bs_\bt_\bp_\bo_\bn_\be_\bd
+       _\b7_\b._\b4_\b._\b2_\b1_\b8  _\bp_\bo_\bs_\bt_\bp_\bo_\bn_\be_\bd
 
        Type: path
 
        Default: '~/postponed'
 
-       Mutt-ng allows you to indefinitely ``_\bp_\bo_\bs_\bt_\bp_\bo_\bn_\be (section 7.4.215  , page 138)
+       Mutt-ng allows you to indefinitely ``_\bp_\bo_\bs_\bt_\bp_\bo_\bn_\be (section 7.4.217  , page 139)
        sending a message'' which you are editing.  When you choose to postpone a mes-
        sage, Mutt-ng saves it in the mailbox specified by this variable.  Also see the
-       ``_\b$_\bp_\bo_\bs_\bt_\bp_\bo_\bn_\be (section 7.4.215  , page 138)'' variable.
+       ``_\b$_\bp_\bo_\bs_\bt_\bp_\bo_\bn_\be (section 7.4.217  , page 139)'' variable.
 
-       _\b7_\b._\b4_\b._\b2_\b1_\b7  _\bp_\br_\be_\bc_\bo_\bn_\bn_\be_\bc_\bt
+       _\b7_\b._\b4_\b._\b2_\b1_\b9  _\bp_\br_\be_\bc_\bo_\bn_\bn_\be_\bc_\bt
 
        Type: string
 
        Default: ''
 
-       If _\bs_\be_\bt, a shell command to be executed if Mutt-ng fails to establish a
-
-       The Mutt Next Generation E-Mail Client                                      140
-
-       connection to the server. This is useful for setting up secure connections,
-       e.g. with ssh(1). If the command returns a  nonzero status, Mutt-ng gives up
-       opening the server. Example:
+       If _\bs_\be_\bt, a shell command to be executed if Mutt-ng fails to establish a connec-
+       tion to the server. This is useful for setting up secure connections, e.g. with
+       ssh(1). If the command returns a  nonzero status, Mutt-ng gives up opening the
+       server. Example:
 
        preconnect='ssh -f -q -L 1234:mailhost.net:143 mailhost.net sleep 20 <
        /dev/null > /dev/null'
        N\bNo\bot\bte\be:\b: For this example to work, you must be able to log in to the remote
        machine without having to enter a password.
 
-       _\b7_\b._\b4_\b._\b2_\b1_\b8  _\bp_\br_\bi_\bn_\bt
+       _\b7_\b._\b4_\b._\b2_\b2_\b0  _\bp_\br_\bi_\bn_\bt
 
        Type: quadoption
 
        Controls whether or not Mutt-ng really prints messages.  This is set to _\ba_\bs_\bk_\b-_\bn_\bo
        by default, because some people accidentally hit ``p'' often.
 
-       _\b7_\b._\b4_\b._\b2_\b1_\b9  _\bp_\br_\bi_\bn_\bt_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd
+       The Mutt Next Generation E-Mail Client                                      141
+
+       _\b7_\b._\b4_\b._\b2_\b2_\b1  _\bp_\br_\bi_\bn_\bt_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd
 
        Type: path
 
 
        This specifies the command pipe that should be used to print messages.
 
-       _\b7_\b._\b4_\b._\b2_\b2_\b0  _\bp_\br_\bi_\bn_\bt_\b__\bd_\be_\bc_\bo_\bd_\be
+       _\b7_\b._\b4_\b._\b2_\b2_\b2  _\bp_\br_\bi_\bn_\bt_\b__\bd_\be_\bc_\bo_\bd_\be
 
        Type: boolean
 
 
        Used in connection with the print-message command.  If this option is _\bs_\be_\bt, the
        message is decoded before it is passed to the external command specified by
-       _\b$_\bp_\br_\bi_\bn_\bt_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd (section 7.4.219  , page 139).  If this option is _\bu_\bn_\bs_\be_\bt, no pro-
+       _\b$_\bp_\br_\bi_\bn_\bt_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd (section 7.4.221  , page 140).  If this option is _\bu_\bn_\bs_\be_\bt, no pro-
        cessing will be applied to the message when printing it.  The latter setting
        may be useful if you are using some advanced printer filter which is able to
        properly format e-mail messages for printing.
 
-       _\b7_\b._\b4_\b._\b2_\b2_\b1  _\bp_\br_\bi_\bn_\bt_\b__\bs_\bp_\bl_\bi_\bt
+       _\b7_\b._\b4_\b._\b2_\b2_\b3  _\bp_\br_\bi_\bn_\bt_\b__\bs_\bp_\bl_\bi_\bt
 
        Type: boolean
 
        Default: no
 
        Used in connection with the print-message command.  If this option is _\bs_\be_\bt, the
-       command specified by _\b$_\bp_\br_\bi_\bn_\bt_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd (section 7.4.219  , page 139) is executed
+       command specified by _\b$_\bp_\br_\bi_\bn_\bt_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd (section 7.4.221  , page 140) is executed
        once for each message which is to be printed.  If this option is _\bu_\bn_\bs_\be_\bt, the
-       command specified by _\b$_\bp_\br_\bi_\bn_\bt_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd (section 7.4.219  , page 139) is executed
+       command specified by _\b$_\bp_\br_\bi_\bn_\bt_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd (section 7.4.221  , page 140) is executed
        only once, and all the messages are concatenated, with a form feed as the mes-
        sage separator.
 
-       The Mutt Next Generation E-Mail Client                                      141
-
        Those who use the enscript(1) program's mail-printing mode will most likely
        want to set this option.
 
-       _\b7_\b._\b4_\b._\b2_\b2_\b2  _\bp_\br_\bo_\bm_\bp_\bt_\b__\ba_\bf_\bt_\be_\br
+       _\b7_\b._\b4_\b._\b2_\b2_\b4  _\bp_\br_\bo_\bm_\bp_\bt_\b__\ba_\bf_\bt_\be_\br
 
        Type: boolean
 
        Default: yes
 
-       If you use an _\be_\bx_\bt_\be_\br_\bn_\ba_\bl ``_\b$_\bp_\ba_\bg_\be_\br (section 7.4.168  , page 127)'', setting this
+       If you use an _\be_\bx_\bt_\be_\br_\bn_\ba_\bl ``_\b$_\bp_\ba_\bg_\be_\br (section 7.4.170  , page 129)'', setting this
        variable will cause Mutt-ng to prompt you for a command when the pager exits
        rather than returning to the index menu.  If _\bu_\bn_\bs_\be_\bt, Mutt-ng will return to the
        index menu when the external pager exits.
 
-       _\b7_\b._\b4_\b._\b2_\b2_\b3  _\bq_\bu_\be_\br_\by_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd
+       _\b7_\b._\b4_\b._\b2_\b2_\b5  _\bq_\bu_\be_\br_\by_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd
 
        Type: path
 
        Default: ''
 
+       The Mutt Next Generation E-Mail Client                                      142
+
        This specifies the command that Mutt-ng will use to make external address
        queries.  The string should contain a %s, which will be substituted with the
        query string the user types.  See ``_\bq_\bu_\be_\br_\by (section 4.7  , page 56)'' for more
        information.
 
-       _\b7_\b._\b4_\b._\b2_\b2_\b4  _\bq_\bu_\bi_\bt
+       _\b7_\b._\b4_\b._\b2_\b2_\b6  _\bq_\bu_\bi_\bt
 
        Type: quadoption
 
        and if it is set to _\ba_\bs_\bk_\b-_\by_\be_\bs or _\ba_\bs_\bk_\b-_\bn_\bo, you are prompted for confirmation when
        you try to quit.
 
-       _\b7_\b._\b4_\b._\b2_\b2_\b5  _\bq_\bu_\bo_\bt_\be_\b__\be_\bm_\bp_\bt_\by
+       _\b7_\b._\b4_\b._\b2_\b2_\b7  _\bq_\bu_\bo_\bt_\be_\b__\be_\bm_\bp_\bt_\by
 
        Type: boolean
 
        Default: yes
 
        Controls whether or not empty lines will be quoted using ``_\bi_\bn_\bd_\be_\bn_\bt_\b__\bs_\bt_\br_\bi_\bn_\bg (sec-
-       tion 7.4.110  , page 111)''.
+       tion 7.4.112  , page 113)''.
 
-       _\b7_\b._\b4_\b._\b2_\b2_\b6  _\bq_\bu_\bo_\bt_\be_\b__\bq_\bu_\bo_\bt_\be_\bd
+       _\b7_\b._\b4_\b._\b2_\b2_\b8  _\bq_\bu_\bo_\bt_\be_\b__\bq_\bu_\bo_\bt_\be_\bd
 
        Type: boolean
 
 
        Controls how quoted lines will be quoted. If _\bs_\be_\bt, one quote character will be
        added to the end of existing prefix.  Otherwise, quoted lines will be prepended
-       by ``_\bi_\bn_\bd_\be_\bn_\bt_\b__\bs_\bt_\br_\bi_\bn_\bg (section 7.4.110  , page 111)''.
-
-       The Mutt Next Generation E-Mail Client                                      142
+       by ``_\bi_\bn_\bd_\be_\bn_\bt_\b__\bs_\bt_\br_\bi_\bn_\bg (section 7.4.112  , page 113)''.
 
-       _\b7_\b._\b4_\b._\b2_\b2_\b7  _\bq_\bu_\bo_\bt_\be_\b__\br_\be_\bg_\be_\bx_\bp
+       _\b7_\b._\b4_\b._\b2_\b2_\b9  _\bq_\bu_\bo_\bt_\be_\b__\br_\be_\bg_\be_\bx_\bp
 
        Type: regular expression
 
        set this to a regular expression that matches _\be_\bx_\ba_\bc_\bt_\bl_\by the quote characters at
        the beginning of quoted lines.
 
-       _\b7_\b._\b4_\b._\b2_\b2_\b8  _\br_\be_\ba_\bd_\b__\bi_\bn_\bc
+       _\b7_\b._\b4_\b._\b2_\b3_\b0  _\br_\be_\ba_\bd_\b__\bi_\bn_\bc
 
        Type: number
 
        Default: 10
 
+       The Mutt Next Generation E-Mail Client                                      143
+
        If set to a value greater than 0, Mutt-ng will display which message it is cur-
        rently on when reading a mailbox.  The message is printed after _\br_\be_\ba_\bd_\b__\bi_\bn_\bc mes-
        sages have been read (e.g., if set to 25, Mutt-ng will print a message when it
        time.  When set to 0, only a single message will appear before the reading the
        mailbox.
 
-       Also see the ``_\b$_\bw_\br_\bi_\bt_\be_\b__\bi_\bn_\bc (section 7.4.342  , page 169)'' variable.
+       Also see the ``_\b$_\bw_\br_\bi_\bt_\be_\b__\bi_\bn_\bc (section 7.4.344  , page 170)'' variable.
 
-       _\b7_\b._\b4_\b._\b2_\b2_\b9  _\br_\be_\ba_\bd_\b__\bo_\bn_\bl_\by
+       _\b7_\b._\b4_\b._\b2_\b3_\b1  _\br_\be_\ba_\bd_\b__\bo_\bn_\bl_\by
 
        Type: boolean
 
 
        If set, all folders are opened in read-only mode.
 
-       _\b7_\b._\b4_\b._\b2_\b3_\b0  _\br_\be_\ba_\bl_\bn_\ba_\bm_\be
+       _\b7_\b._\b4_\b._\b2_\b3_\b2  _\br_\be_\ba_\bl_\bn_\ba_\bm_\be
 
        Type: string
 
        By default, this is the GECOS field from /etc/passwd.
 
        _\bN_\bo_\bt_\be_\b: This variable will _\bn_\bo_\bt be used when the user has set a real name in the
-       _\b$_\bf_\br_\bo_\bm (section 7.4.75  , page 103) variable.
+       _\b$_\bf_\br_\bo_\bm (section 7.4.77  , page 105) variable.
 
-       _\b7_\b._\b4_\b._\b2_\b3_\b1  _\br_\be_\bc_\ba_\bl_\bl
+       _\b7_\b._\b4_\b._\b2_\b3_\b3  _\br_\be_\bc_\ba_\bl_\bl
 
        Type: quadoption
 
-       The Mutt Next Generation E-Mail Client                                      143
-
        Default: ask-yes
 
        Controls whether or not Mutt-ng recalls postponed messages when composing a new
-       message.  Also see ``_\b$_\bp_\bo_\bs_\bt_\bp_\bo_\bn_\be_\bd (section 7.4.216  , page 138)''.
+       message.  Also see ``_\b$_\bp_\bo_\bs_\bt_\bp_\bo_\bn_\be_\bd (section 7.4.218  , page 140)''.
 
        Setting this variable to _\by_\be_\bs is not generally useful, and thus not recommended.
 
-       _\b7_\b._\b4_\b._\b2_\b3_\b2  _\br_\be_\bc_\bo_\br_\bd
+       _\b7_\b._\b4_\b._\b2_\b3_\b4  _\br_\be_\bc_\bo_\br_\bd
 
        Type: path
 
        another way to do this is using the ``_\bm_\by_\b__\bh_\bd_\br (section 3.15  , page 35)'' com-
        mand to create a Bcc: header field with your email address in it.)
 
-       The value of _\b$_\br_\be_\bc_\bo_\br_\bd _\b(_\bs_\be_\bc_\bt_\bi_\bo_\bn _\b7_\b._\b4_\b._\b2_\b3_\b2  _\b, _\bp_\ba_\bg_\be _\b1_\b4_\b2_\b) is overridden by the
-       ``_\b$_\bf_\bo_\br_\bc_\be_\b__\bn_\ba_\bm_\be (section 7.4.69  , page 102)'' and ``_\b$_\bs_\ba_\bv_\be_\b__\bn_\ba_\bm_\be (section
-       7.4.243  , page 144)'' variables, and the ``_\bf_\bc_\bc_\b-_\bh_\bo_\bo_\bk (section 3.18  , page
+       The Mutt Next Generation E-Mail Client                                      144
+
+       The value of _\b$_\br_\be_\bc_\bo_\br_\bd _\b(_\bs_\be_\bc_\bt_\bi_\bo_\bn _\b7_\b._\b4_\b._\b2_\b3_\b4  _\b, _\bp_\ba_\bg_\be _\b1_\b4_\b3_\b) is overridden by the
+       ``_\b$_\bf_\bo_\br_\bc_\be_\b__\bn_\ba_\bm_\be (section 7.4.71  , page 103)'' and ``_\b$_\bs_\ba_\bv_\be_\b__\bn_\ba_\bm_\be (section
+       7.4.245  , page 146)'' variables, and the ``_\bf_\bc_\bc_\b-_\bh_\bo_\bo_\bk (section 3.18  , page
        36)'' command.
 
-       _\b7_\b._\b4_\b._\b2_\b3_\b3  _\br_\be_\bp_\bl_\by_\b__\br_\be_\bg_\be_\bx_\bp
+       _\b7_\b._\b4_\b._\b2_\b3_\b5  _\br_\be_\bp_\bl_\by_\b__\br_\be_\bg_\be_\bx_\bp
 
        Type: regular expression
 
        ing. The default value corresponds to the English ``Re:'' and the German
        ``Aw:''.
 
-       _\b7_\b._\b4_\b._\b2_\b3_\b4  _\br_\be_\bp_\bl_\by_\b__\bs_\be_\bl_\bf
+       _\b7_\b._\b4_\b._\b2_\b3_\b6  _\br_\be_\bp_\bl_\by_\b__\bs_\be_\bl_\bf
 
        Type: boolean
 
        that you want to reply to the recipients of that message rather than to your-
        self.
 
-       _\b7_\b._\b4_\b._\b2_\b3_\b5  _\br_\be_\bp_\bl_\by_\b__\bt_\bo
+       _\b7_\b._\b4_\b._\b2_\b3_\b7  _\br_\be_\bp_\bl_\by_\b__\bt_\bo
 
        Type: quadoption
 
        use the address in the ``From:'' header field instead.
 
        This option is useful for reading a mailing list that sets the ``Reply-To:''
-
-       The Mutt Next Generation E-Mail Client                                      144
-
        header field to the list address and you want to send a private message to the
        author of a message.
 
-       _\b7_\b._\b4_\b._\b2_\b3_\b6  _\br_\be_\bs_\bo_\bl_\bv_\be
+       _\b7_\b._\b4_\b._\b2_\b3_\b8  _\br_\be_\bs_\bo_\bl_\bv_\be
 
        Type: boolean
 
        undeleted) message whenever a command that modifies the current message is exe-
        cuted.
 
-       _\b7_\b._\b4_\b._\b2_\b3_\b7  _\br_\be_\bv_\be_\br_\bs_\be_\b__\ba_\bl_\bi_\ba_\bs
+       _\b7_\b._\b4_\b._\b2_\b3_\b9  _\br_\be_\bv_\be_\br_\bs_\be_\b__\ba_\bl_\bi_\ba_\bs
 
        Type: boolean
 
        Default: no
 
+       The Mutt Next Generation E-Mail Client                                      145
+
        This variable controls whether or not Mutt-ng 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:
        ``abd30425@somewhere.net.''  This is useful when the person's e-mail address is
        not human friendly (like CompuServe addresses).
 
-       _\b7_\b._\b4_\b._\b2_\b3_\b8  _\br_\be_\bv_\be_\br_\bs_\be_\b__\bn_\ba_\bm_\be
+       _\b7_\b._\b4_\b._\b2_\b4_\b0  _\br_\be_\bv_\be_\br_\bs_\be_\b__\bn_\ba_\bm_\be
 
        Type: boolean
 
        would be used doesn't match your alternates, the From: line will use your
        address on the current machine.
 
-       _\b7_\b._\b4_\b._\b2_\b3_\b9  _\br_\be_\bv_\be_\br_\bs_\be_\b__\br_\be_\ba_\bl_\bn_\ba_\bm_\be
+       _\b7_\b._\b4_\b._\b2_\b4_\b1  _\br_\be_\bv_\be_\br_\bs_\be_\b__\br_\be_\ba_\bl_\bn_\ba_\bm_\be
 
        Type: boolean
 
        Default: yes
 
-       This variable fine-tunes the behaviour of the _\br_\be_\bv_\be_\br_\bs_\be_\b__\bn_\ba_\bm_\be (section 7.4.238  ,
-
-       The Mutt Next Generation E-Mail Client                                      145
-
-       page 143) feature.  When it is _\bs_\be_\bt, Mutt-ng will use the address from incoming
+       This variable fine-tunes the behaviour of the _\br_\be_\bv_\be_\br_\bs_\be_\b__\bn_\ba_\bm_\be (section 7.4.240  ,
+       page 145) feature.  When it is _\bs_\be_\bt, Mutt-ng will use the address from incoming
        messages as-is, possibly including eventual real names.  When it is _\bu_\bn_\bs_\be_\bt,
        Mutt-ng will override any such real names with the setting of the _\br_\be_\ba_\bl_\bn_\ba_\bm_\be
-       (section 7.4.230  , page 141) variable.
+       (section 7.4.232  , page 143) variable.
 
-       _\b7_\b._\b4_\b._\b2_\b4_\b0  _\br_\bf_\bc_\b2_\b0_\b4_\b7_\b__\bp_\ba_\br_\ba_\bm_\be_\bt_\be_\br_\bs
+       _\b7_\b._\b4_\b._\b2_\b4_\b2  _\br_\bf_\bc_\b2_\b0_\b4_\b7_\b__\bp_\ba_\br_\ba_\bm_\be_\bt_\be_\br_\bs
 
        Type: boolean
 
        When this variable is _\bs_\be_\bt interactively, the change doesn't have the desired
        effect before you have changed folders.
 
+       The Mutt Next Generation E-Mail Client                                      146
+
        Note that this use of RFC 2047's encoding is explicitly, prohibited by the
        standard, but nevertheless encountered in the wild.
 
        _\bg_\be_\bn_\be_\br_\ba_\bt_\be_\bs this kind of encoding.  Instead, Mutt-ng will unconditionally use the
        encoding specified in RFC 2231.
 
-       _\b7_\b._\b4_\b._\b2_\b4_\b1  _\bs_\ba_\bv_\be_\b__\ba_\bd_\bd_\br_\be_\bs_\bs
+       _\b7_\b._\b4_\b._\b2_\b4_\b3  _\bs_\ba_\bv_\be_\b__\ba_\bd_\bd_\br_\be_\bs_\bs
 
        Type: boolean
 
        Default: no
 
        If _\bs_\be_\bt, Mutt-ng will take the sender's full address when choosing a default
-       folder for saving a mail. If ``_\b$_\bs_\ba_\bv_\be_\b__\bn_\ba_\bm_\be (section 7.4.243  , page 144)'' or
-       ``_\b$_\bf_\bo_\br_\bc_\be_\b__\bn_\ba_\bm_\be (section 7.4.69  , page 102)'' is _\bs_\be_\bt too, the selection of the
+       folder for saving a mail. If ``_\b$_\bs_\ba_\bv_\be_\b__\bn_\ba_\bm_\be (section 7.4.245  , page 146)'' or
+       ``_\b$_\bf_\bo_\br_\bc_\be_\b__\bn_\ba_\bm_\be (section 7.4.71  , page 103)'' is _\bs_\be_\bt too, the selection of the
        fcc folder will be changed as well.
 
-       _\b7_\b._\b4_\b._\b2_\b4_\b2  _\bs_\ba_\bv_\be_\b__\be_\bm_\bp_\bt_\by
+       _\b7_\b._\b4_\b._\b2_\b4_\b4  _\bs_\ba_\bv_\be_\b__\be_\bm_\bp_\bt_\by
 
        Type: boolean
 
        Default: yes
 
        When _\bu_\bn_\bs_\be_\bt, mailboxes which contain no saved messages will be removed when
-       closed (the exception is ``_\b$_\bs_\bp_\bo_\bo_\bl_\bf_\bi_\bl_\be (section 7.4.299  , page 158)'' which is
+       closed (the exception is ``_\b$_\bs_\bp_\bo_\bo_\bl_\bf_\bi_\bl_\be (section 7.4.301  , page 159)'' which is
        never removed).  If _\bs_\be_\bt, mailboxes are never removed.
 
        N\bNo\bot\bte\be:\b: This only applies to mbox and MMDF folders, Mutt-ng does not delete MH
        and Maildir directories.
 
-       _\b7_\b._\b4_\b._\b2_\b4_\b3  _\bs_\ba_\bv_\be_\b__\bn_\ba_\bm_\be
+       _\b7_\b._\b4_\b._\b2_\b4_\b5  _\bs_\ba_\bv_\be_\b__\bn_\ba_\bm_\be
 
        Type: boolean
 
-       The Mutt Next Generation E-Mail Client                                      146
-
        Default: no
 
        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 mailbox in the ``_\b$_\bf_\bo_\bl_\bd_\be_\br (section 7.4.65  ,
-       page 100)'' directory with the _\bu_\bs_\be_\br_\bn_\ba_\bm_\be part of the recipient address).  If the
+       (this is done by searching for a mailbox in the ``_\b$_\bf_\bo_\bl_\bd_\be_\br (section 7.4.67  ,
+       page 102)'' directory with the _\bu_\bs_\be_\br_\bn_\ba_\bm_\be 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 ``_\b$_\br_\be_\bc_\bo_\br_\bd (section 7.4.232  , page 142)'' mailbox.
+       the message is saved to the ``_\b$_\br_\be_\bc_\bo_\br_\bd (section 7.4.234  , page 143)'' mailbox.
 
-       Also see the ``_\b$_\bf_\bo_\br_\bc_\be_\b__\bn_\ba_\bm_\be (section 7.4.69  , page 102)'' variable.
+       Also see the ``_\b$_\bf_\bo_\br_\bc_\be_\b__\bn_\ba_\bm_\be (section 7.4.71  , page 103)'' variable.
 
-       _\b7_\b._\b4_\b._\b2_\b4_\b4  _\bs_\bc_\bo_\br_\be
+       _\b7_\b._\b4_\b._\b2_\b4_\b6  _\bs_\bc_\bo_\br_\be
 
        Type: boolean
 
        Default: yes
 
        When this variable is _\bu_\bn_\bs_\be_\bt, scoring is turned off.  This can be useful to
-       selectively disable scoring for certain folders when the ``_\b$_\bs_\bc_\bo_\br_\be_\b__\bt_\bh_\br_\be_\bs_\bh_\b-
-       _\bo_\bl_\bd_\b__\bd_\be_\bl_\be_\bt_\be (section 7.4.245  , page 145)'' variable and friends are used.
+       selectively disable scoring for certain folders when the
+
+       The Mutt Next Generation E-Mail Client                                      147
+
+       ``_\b$_\bs_\bc_\bo_\br_\be_\b__\bt_\bh_\br_\be_\bs_\bh_\bo_\bl_\bd_\b__\bd_\be_\bl_\be_\bt_\be (section 7.4.247  , page 146)'' variable and friends
+       are used.
 
-       _\b7_\b._\b4_\b._\b2_\b4_\b5  _\bs_\bc_\bo_\br_\be_\b__\bt_\bh_\br_\be_\bs_\bh_\bo_\bl_\bd_\b__\bd_\be_\bl_\be_\bt_\be
+       _\b7_\b._\b4_\b._\b2_\b4_\b7  _\bs_\bc_\bo_\br_\be_\b__\bt_\bh_\br_\be_\bs_\bh_\bo_\bl_\bd_\b__\bd_\be_\bl_\be_\bt_\be
 
        Type: number
 
        scores are always greater than or equal to zero, the default setting of this
        variable will never mark a message for deletion.
 
-       _\b7_\b._\b4_\b._\b2_\b4_\b6  _\bs_\bc_\bo_\br_\be_\b__\bt_\bh_\br_\be_\bs_\bh_\bo_\bl_\bd_\b__\bf_\bl_\ba_\bg
+       _\b7_\b._\b4_\b._\b2_\b4_\b8  _\bs_\bc_\bo_\br_\be_\b__\bt_\bh_\br_\be_\bs_\bh_\bo_\bl_\bd_\b__\bf_\bl_\ba_\bg
 
        Type: number
 
        Messages which have been assigned a score greater than or equal to this vari-
        able's value are automatically marked ``flagged''.
 
-       _\b7_\b._\b4_\b._\b2_\b4_\b7  _\bs_\bc_\bo_\br_\be_\b__\bt_\bh_\br_\be_\bs_\bh_\bo_\bl_\bd_\b__\br_\be_\ba_\bd
+       _\b7_\b._\b4_\b._\b2_\b4_\b9  _\bs_\bc_\bo_\br_\be_\b__\bt_\bh_\br_\be_\bs_\bh_\bo_\bl_\bd_\b__\br_\be_\ba_\bd
 
        Type: number
 
        scores are always greater than or equal to zero, the default setting of this
        variable will never mark a message read.
 
-       _\b7_\b._\b4_\b._\b2_\b4_\b8  _\bs_\be_\bn_\bd_\b__\bc_\bh_\ba_\br_\bs_\be_\bt
-
-       The Mutt Next Generation E-Mail Client                                      147
+       _\b7_\b._\b4_\b._\b2_\b5_\b0  _\bs_\be_\bn_\bd_\b__\bc_\bh_\ba_\br_\bs_\be_\bt
 
        Type: string
 
 
        A list of character sets for outgoing messages. Mutt-ng will use the first
        character set into which the text can be converted exactly.  If your ``_\b$_\bc_\bh_\ba_\br_\bs_\be_\bt
-       (section 7.4.24  , page 91)'' is not iso-8859-1 and recipients may not under-
+       (section 7.4.26  , page 93)'' is not iso-8859-1 and recipients may not under-
        stand UTF-8, it is advisable to include in the list an appropriate widely used
        standard character set (such as iso-8859-2, koi8-r or iso-2022-jp) either
        instead of or after iso-8859-1.
 
-       _\b7_\b._\b4_\b._\b2_\b4_\b9  _\bs_\be_\bn_\bd_\bm_\ba_\bi_\bl
+       _\b7_\b._\b4_\b._\b2_\b5_\b1  _\bs_\be_\bn_\bd_\bm_\ba_\bi_\bl
 
        Type: path
 
        Default: '/usr/sbin/sendmail -oem -oi'
 
        Specifies the program and arguments used to deliver mail sent by Mutt-ng.
+
+       The Mutt Next Generation E-Mail Client                                      148
+
        Mutt-ng expects that the specified program interprets additional arguments as
        recipient addresses.
 
-       _\b7_\b._\b4_\b._\b2_\b5_\b0  _\bs_\be_\bn_\bd_\bm_\ba_\bi_\bl_\b__\bw_\ba_\bi_\bt
+       _\b7_\b._\b4_\b._\b2_\b5_\b2  _\bs_\be_\bn_\bd_\bm_\ba_\bi_\bl_\b__\bw_\ba_\bi_\bt
 
        Type: number
 
        Default: 0
 
-       Specifies the number of seconds to wait for the ``_\b$_\bs_\be_\bn_\bd_\bm_\ba_\bi_\bl (section 7.4.249  ,
-       page 146)'' process to finish before giving up and putting delivery in the
+       Specifies the number of seconds to wait for the ``_\b$_\bs_\be_\bn_\bd_\bm_\ba_\bi_\bl (section 7.4.251  ,
+       page 147)'' process to finish before giving up and putting delivery in the
        background.
 
        Mutt-ng interprets the value of this variable as follows:
        will be put in a temporary file.  If there is some error, you will be informed
        as to where to find the output.
 
-       _\b7_\b._\b4_\b._\b2_\b5_\b1  _\bs_\bh_\be_\bl_\bl
+       _\b7_\b._\b4_\b._\b2_\b5_\b3  _\bs_\bh_\be_\bl_\bl
 
        Type: path
 
        Command to use when spawning a subshell.  By default, the user's login shell
        from /etc/passwd is used.
 
-       The Mutt Next Generation E-Mail Client                                      148
-
-       _\b7_\b._\b4_\b._\b2_\b5_\b2  _\bs_\bi_\bd_\be_\bb_\ba_\br_\b__\bb_\bo_\bu_\bn_\bd_\ba_\br_\by
+       _\b7_\b._\b4_\b._\b2_\b5_\b4  _\bs_\bi_\bd_\be_\bb_\ba_\br_\b__\bb_\bo_\bu_\bn_\bd_\ba_\br_\by
 
        Type: string
 
        Default: '.'
 
        When the sidebar is displayed and _\b$_\bs_\bi_\bd_\be_\bb_\ba_\br_\b__\bs_\bh_\bo_\br_\bt_\be_\bn_\b__\bh_\bi_\be_\br_\ba_\br_\bc_\bh_\by (section
-       7.4.256  , page 148) is _\bs_\be_\bt, this variable specifies the characters at which to
+       7.4.258  , page 149) is _\bs_\be_\bt, this variable specifies the characters at which to
        split a folder name into ``hierarchy items.''
 
-       _\b7_\b._\b4_\b._\b2_\b5_\b3  _\bs_\bi_\bd_\be_\bb_\ba_\br_\b__\bd_\be_\bl_\bi_\bm
+       _\b7_\b._\b4_\b._\b2_\b5_\b5  _\bs_\bi_\bd_\be_\bb_\ba_\br_\b__\bd_\be_\bl_\bi_\bm
 
        Type: string
 
        Default: '|'
 
        This specifies the delimiter between the sidebar (if visible) and other
+
+       The Mutt Next Generation E-Mail Client                                      149
+
        screens.
 
-       _\b7_\b._\b4_\b._\b2_\b5_\b4  _\bs_\bi_\bd_\be_\bb_\ba_\br_\b__\bn_\be_\bw_\bm_\ba_\bi_\bl_\b__\bo_\bn_\bl_\by
+       _\b7_\b._\b4_\b._\b2_\b5_\b6  _\bs_\bi_\bd_\be_\bb_\ba_\br_\b__\bn_\be_\bw_\bm_\ba_\bi_\bl_\b__\bo_\bn_\bl_\by
 
        Type: boolean
 
 
        If _\bs_\be_\bt, only folders with new mail will be shown in the sidebar.
 
-       _\b7_\b._\b4_\b._\b2_\b5_\b5  _\bs_\bi_\bd_\be_\bb_\ba_\br_\b__\bn_\bu_\bm_\bb_\be_\br_\b__\bf_\bo_\br_\bm_\ba_\bt
+       _\b7_\b._\b4_\b._\b2_\b5_\b7  _\bs_\bi_\bd_\be_\bb_\ba_\br_\b__\bn_\bu_\bm_\bb_\be_\br_\b__\bf_\bo_\br_\bm_\ba_\bt
 
        Type: string
 
              %M
                    Total number of messages shown, i.e. not hidden by a limit. 1)
 
-       The Mutt Next Generation E-Mail Client                                      149
-
              %n
                    Number of new messages.
 
        1) These expandos only have a non-zero value for the current mailbox and will
        always be zero otherwise.
 
-       _\b7_\b._\b4_\b._\b2_\b5_\b6  _\bs_\bi_\bd_\be_\bb_\ba_\br_\b__\bs_\bh_\bo_\br_\bt_\be_\bn_\b__\bh_\bi_\be_\br_\ba_\br_\bc_\bh_\by
+       _\b7_\b._\b4_\b._\b2_\b5_\b8  _\bs_\bi_\bd_\be_\bb_\ba_\br_\b__\bs_\bh_\bo_\br_\bt_\be_\bn_\b__\bh_\bi_\be_\br_\ba_\br_\bc_\bh_\by
 
        Type: boolean
 
 
        When _\bs_\be_\bt, the ``hierarchy'' of the sidebar entries will be shortened only if
        they cannot be printed in full length (because ``_\b$_\bs_\bi_\bd_\be_\bb_\ba_\br_\b__\bw_\bi_\bd_\bt_\bh (section
-       7.4.258  , page 148)'' is set to a too low value). For example, if the news-
-       group name ``de.alt.sysadmin.recovery'' doesn't fit on the screen, it'll get
-       shortened ``d.a.s.recovery'' while ``de.alt.d0'' still would and thus will not
-       get shortened.
+       7.4.260  , page 150)'' is set to a too low value). For example, if the
+
+       The Mutt Next Generation E-Mail Client                                      150
+
+       newsgroup name ``de.alt.sysadmin.recovery'' doesn't fit on the screen, it'll
+       get shortened ``d.a.s.recovery'' while ``de.alt.d0'' still would and thus will
+       not get shortened.
 
        At which characters this compression is done is controled via the _\b$_\bs_\bi_\bd_\be_\b-
-       _\bb_\ba_\br_\b__\bb_\bo_\bu_\bn_\bd_\ba_\br_\by (section 7.4.252  , page 146) variable.
+       _\bb_\ba_\br_\b__\bb_\bo_\bu_\bn_\bd_\ba_\br_\by (section 7.4.254  , page 148) variable.
 
-       _\b7_\b._\b4_\b._\b2_\b5_\b7  _\bs_\bi_\bd_\be_\bb_\ba_\br_\b__\bv_\bi_\bs_\bi_\bb_\bl_\be
+       _\b7_\b._\b4_\b._\b2_\b5_\b9  _\bs_\bi_\bd_\be_\bb_\ba_\br_\b__\bv_\bi_\bs_\bi_\bb_\bl_\be
 
        Type: boolean
 
        This specifies whether or not to show the sidebar (a list of folders specified
        with the ``mailboxes'' command).
 
-       _\b7_\b._\b4_\b._\b2_\b5_\b8  _\bs_\bi_\bd_\be_\bb_\ba_\br_\b__\bw_\bi_\bd_\bt_\bh
+       _\b7_\b._\b4_\b._\b2_\b6_\b0  _\bs_\bi_\bd_\be_\bb_\ba_\br_\b__\bw_\bi_\bd_\bt_\bh
 
        Type: number
 
 
        The width of the sidebar.
 
-       _\b7_\b._\b4_\b._\b2_\b5_\b9  _\bs_\bi_\bg_\b__\bd_\ba_\bs_\bh_\be_\bs
+       _\b7_\b._\b4_\b._\b2_\b6_\b1  _\bs_\bi_\bg_\b__\bd_\ba_\bs_\bh_\be_\bs
 
        Type: boolean
 
        Default: yes
 
        If set, a line containing ``-- '' (dash, dash, space) will be inserted before
-       your ``_\b$_\bs_\bi_\bg_\bn_\ba_\bt_\bu_\br_\be (section 7.4.261  , page 149)''.  It is s\bst\btr\bro\bon\bng\bgl\bly\by recommended
+       your ``_\b$_\bs_\bi_\bg_\bn_\ba_\bt_\bu_\br_\be (section 7.4.263  , page 150)''.  It is s\bst\btr\bro\bon\bng\bgl\bly\by 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.
 
-       The Mutt Next Generation E-Mail Client                                      150
-
        For example, Mutt-ng has the ability to highlight the signature in a different
        color in the builtin pager.
 
-       _\b7_\b._\b4_\b._\b2_\b6_\b0  _\bs_\bi_\bg_\b__\bo_\bn_\b__\bt_\bo_\bp
+       _\b7_\b._\b4_\b._\b2_\b6_\b2  _\bs_\bi_\bg_\b__\bo_\bn_\b__\bt_\bo_\bp
 
        Type: boolean
 
        know what you are doing, and are prepared to take some heat from netiquette
        guardians.
 
-       _\b7_\b._\b4_\b._\b2_\b6_\b1  _\bs_\bi_\bg_\bn_\ba_\bt_\bu_\br_\be
+       _\b7_\b._\b4_\b._\b2_\b6_\b3  _\bs_\bi_\bg_\bn_\ba_\bt_\bu_\br_\be
 
        Type: path
 
+       The Mutt Next Generation E-Mail Client                                      151
+
        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 file-
        name is a shell command and input should be read from its stdout.
 
-       _\b7_\b._\b4_\b._\b2_\b6_\b2  _\bs_\bi_\bg_\bn_\bo_\bf_\bf_\b__\bs_\bt_\br_\bi_\bn_\bg
+       _\b7_\b._\b4_\b._\b2_\b6_\b4  _\bs_\bi_\bg_\bn_\bo_\bf_\bf_\b__\bs_\bt_\br_\bi_\bn_\bg
 
        Type: string
 
        witty quotes into your mails, better use a signature file instead of the sig-
        noff string.
 
-       _\b7_\b._\b4_\b._\b2_\b6_\b3  _\bs_\bi_\bm_\bp_\bl_\be_\b__\bs_\be_\ba_\br_\bc_\bh
+       _\b7_\b._\b4_\b._\b2_\b6_\b5  _\bs_\bi_\bm_\bp_\bl_\be_\b__\bs_\be_\ba_\br_\bc_\bh
 
        Type: string
 
 
        Specifies how Mutt-ng should expand a simple search into a real search pattern.
        A simple search is one that does not contain any of the ~ operators.  See
-       ``_\bp_\ba_\bt_\bt_\be_\br_\bn_\bs (section 7.2  , page 80)'' for more information on search patterns.
+       ``_\bp_\ba_\bt_\bt_\be_\br_\bn_\bs (section 7.2  , page 81)'' for more information on search patterns.
 
        For example, if you simply type ``joe'' at a search or limit prompt, Mutt-ng
        will automatically expand it to the value specified by this variable.  For the
 
        ~f joe | ~s joe
 
-       The Mutt Next Generation E-Mail Client                                      151
-
-       _\b7_\b._\b4_\b._\b2_\b6_\b4  _\bs_\bl_\be_\be_\bp_\b__\bt_\bi_\bm_\be
+       _\b7_\b._\b4_\b._\b2_\b6_\b6  _\bs_\bl_\be_\be_\bp_\b__\bt_\bi_\bm_\be
 
        Type: number
 
        the current folder.  The default is to pause one second, so a value of zero for
        this option suppresses the pause.
 
-       _\b7_\b._\b4_\b._\b2_\b6_\b5  _\bs_\bm_\ba_\br_\bt_\b__\bw_\br_\ba_\bp
+       _\b7_\b._\b4_\b._\b2_\b6_\b7  _\bs_\bm_\ba_\br_\bt_\b__\bw_\br_\ba_\bp
 
        Type: boolean
 
 
        Controls the display of lines longer than the screen width in the internal
        pager. If _\bs_\be_\bt, long lines are wrapped at a word boundary.  If _\bu_\bn_\bs_\be_\bt, lines are
-       simply wrapped at the screen edge. Also see the ``_\b$_\bm_\ba_\br_\bk_\be_\br_\bs (section 7.4.122  ,
-       page 116)'' variable.
 
-       _\b7_\b._\b4_\b._\b2_\b6_\b6  _\bs_\bm_\bi_\bl_\be_\by_\bs
+       The Mutt Next Generation E-Mail Client                                      152
+
+       simply wrapped at the screen edge. Also see the ``_\b$_\bm_\ba_\br_\bk_\be_\br_\bs (section 7.4.124  ,
+       page 117)'' variable.
+
+       _\b7_\b._\b4_\b._\b2_\b6_\b8  _\bs_\bm_\bi_\bl_\be_\by_\bs
 
        Type: regular expression
 
        Default: '(>From )|(:[-^]?[][)(><}{|/DP])'
 
        The _\bp_\ba_\bg_\be_\br uses this variable to catch some common false positives of
-       ``_\b$_\bq_\bu_\bo_\bt_\be_\b__\br_\be_\bg_\be_\bx_\bp (section 7.4.227  , page 140)'', most notably smileys in the
+       ``_\b$_\bq_\bu_\bo_\bt_\be_\b__\br_\be_\bg_\be_\bx_\bp (section 7.4.229  , page 142)'', most notably smileys in the
        beginning of a line
 
-       _\b7_\b._\b4_\b._\b2_\b6_\b7  _\bs_\bm_\bi_\bm_\be_\b__\ba_\bs_\bk_\b__\bc_\be_\br_\bt_\b__\bl_\ba_\bb_\be_\bl
+       _\b7_\b._\b4_\b._\b2_\b6_\b9  _\bs_\bm_\bi_\bm_\be_\b__\ba_\bs_\bk_\b__\bc_\be_\br_\bt_\b__\bl_\ba_\bb_\be_\bl
 
        Type: boolean
 
        cate about to be added to the database or not. It is _\bs_\be_\bt by default.  (S/MIME
        only)
 
-       _\b7_\b._\b4_\b._\b2_\b6_\b8  _\bs_\bm_\bi_\bm_\be_\b__\bc_\ba_\b__\bl_\bo_\bc_\ba_\bt_\bi_\bo_\bn
+       _\b7_\b._\b4_\b._\b2_\b7_\b0  _\bs_\bm_\bi_\bm_\be_\b__\bc_\ba_\b__\bl_\bo_\bc_\ba_\bt_\bi_\bo_\bn
 
        Type: path
 
        This variable contains the name of either a directory, or a file which contains
        trusted certificates for use with OpenSSL.  (S/MIME only)
 
-       _\b7_\b._\b4_\b._\b2_\b6_\b9  _\bs_\bm_\bi_\bm_\be_\b__\bc_\be_\br_\bt_\bi_\bf_\bi_\bc_\ba_\bt_\be_\bs
+       _\b7_\b._\b4_\b._\b2_\b7_\b1  _\bs_\bm_\bi_\bm_\be_\b__\bc_\be_\br_\bt_\bi_\bf_\bi_\bc_\ba_\bt_\be_\bs
 
        Type: path
 
-       The Mutt Next Generation E-Mail Client                                      152
-
        Default: ''
 
        Since there is no pubring/secring as with PGP, Mutt-ng has to handle storage
        address keyid pairs, and which can be manually edited. This one points to the
        location of the certificates.  (S/MIME only)
 
-       _\b7_\b._\b4_\b._\b2_\b7_\b0  _\bs_\bm_\bi_\bm_\be_\b__\bd_\be_\bc_\br_\by_\bp_\bt_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd
+       _\b7_\b._\b4_\b._\b2_\b7_\b2  _\bs_\bm_\bi_\bm_\be_\b__\bd_\be_\bc_\br_\by_\bp_\bt_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd
 
        Type: string
 
        This format string specifies a command which is used to decrypt application/x-
        pkcs7-mime attachments.
 
+       The Mutt Next Generation E-Mail Client                                      153
+
        The OpenSSL command formats have their own set of printf(3)-like sequences sim-
        ilar to PGP's:
 
                    multipart/signed attachment when verifying it.
 
              %k
-                   The key-pair specified with _\b$_\bs_\bm_\bi_\bm_\be_\b__\bd_\be_\bf_\ba_\bu_\bl_\bt_\b__\bk_\be_\by (section 7.4.272  ,
-                   page 151)
+                   The key-pair specified with _\b$_\bs_\bm_\bi_\bm_\be_\b__\bd_\be_\bf_\ba_\bu_\bl_\bt_\b__\bk_\be_\by (section 7.4.274  ,
+                   page 153)
 
              %c
                    One or more certificate IDs.
 
              %C
                    CA location:  Depending on whether _\b$_\bs_\bm_\bi_\bm_\be_\b__\bc_\ba_\b__\bl_\bo_\bc_\ba_\bt_\bi_\bo_\bn (section
-                   7.4.268  , page 150) points to a directory or file, this expands to
-                   '-CApath _\b$_\bs_\bm_\bi_\bm_\be_\b__\bc_\ba_\b__\bl_\bo_\bc_\ba_\bt_\bi_\bo_\bn (section 7.4.268  , page 150)' or
-                   '-CAfile _\b$_\bs_\bm_\bi_\bm_\be_\b__\bc_\ba_\b__\bl_\bo_\bc_\ba_\bt_\bi_\bo_\bn (section 7.4.268  , page 150)'.
+                   7.4.270  , page 152) points to a directory or file, this expands to
+                   '-CApath _\b$_\bs_\bm_\bi_\bm_\be_\b__\bc_\ba_\b__\bl_\bo_\bc_\ba_\bt_\bi_\bo_\bn (section 7.4.270  , page 152)' or
+                   '-CAfile _\b$_\bs_\bm_\bi_\bm_\be_\b__\bc_\ba_\b__\bl_\bo_\bc_\ba_\bt_\bi_\bo_\bn (section 7.4.270  , page 152)'.
 
        For examples on how to configure these formats, see the smime.rc in the sam-
        ples/ subdirectory which has been installed on your system alongside the docu-
        mentation.  (S/MIME only)
 
-       _\b7_\b._\b4_\b._\b2_\b7_\b1  _\bs_\bm_\bi_\bm_\be_\b__\bd_\be_\bc_\br_\by_\bp_\bt_\b__\bu_\bs_\be_\b__\bd_\be_\bf_\ba_\bu_\bl_\bt_\b__\bk_\be_\by
+       _\b7_\b._\b4_\b._\b2_\b7_\b3  _\bs_\bm_\bi_\bm_\be_\b__\bd_\be_\bc_\br_\by_\bp_\bt_\b__\bu_\bs_\be_\b__\bd_\be_\bf_\ba_\bu_\bl_\bt_\b__\bk_\be_\by
 
        Type: boolean
 
        Default: yes
 
-       The Mutt Next Generation E-Mail Client                                      153
-
        If _\bs_\be_\bt (default) this tells Mutt-ng to use the default key for decryption. Oth-
        erwise, if manage multiple certificate-key-pairs, Mutt-ng will try to use the
        mailbox-address to determine the key to use. It will ask you to supply a key,
        if it can't find one.  (S/MIME only)
 
-       _\b7_\b._\b4_\b._\b2_\b7_\b2  _\bs_\bm_\bi_\bm_\be_\b__\bd_\be_\bf_\ba_\bu_\bl_\bt_\b__\bk_\be_\by
+       _\b7_\b._\b4_\b._\b2_\b7_\b4  _\bs_\bm_\bi_\bm_\be_\b__\bd_\be_\bf_\ba_\bu_\bl_\bt_\b__\bk_\be_\by
 
        Type: string
 
        This is the default key-pair to use for signing. This must be set to the keyid
        (the hash-value that OpenSSL generates) to work properly (S/MIME only)
 
-       _\b7_\b._\b4_\b._\b2_\b7_\b3  _\bs_\bm_\bi_\bm_\be_\b__\be_\bn_\bc_\br_\by_\bp_\bt_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd
+       _\b7_\b._\b4_\b._\b2_\b7_\b5  _\bs_\bm_\bi_\bm_\be_\b__\be_\bn_\bc_\br_\by_\bp_\bt_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd
 
        Type: string
 
+       The Mutt Next Generation E-Mail Client                                      154
+
        Default: ''
 
        This command is used to create encrypted S/MIME messages.  (S/MIME only)
 
-       _\b7_\b._\b4_\b._\b2_\b7_\b4  _\bs_\bm_\bi_\bm_\be_\b__\be_\bn_\bc_\br_\by_\bp_\bt_\b__\bw_\bi_\bt_\bh
+       _\b7_\b._\b4_\b._\b2_\b7_\b6  _\bs_\bm_\bi_\bm_\be_\b__\be_\bn_\bc_\br_\by_\bp_\bt_\b__\bw_\bi_\bt_\bh
 
        Type: string
 
 
        If _\bu_\bn_\bs_\be_\bt ``_\b3_\bd_\be_\bs'' (TripleDES) is used.  (S/MIME only)
 
-       _\b7_\b._\b4_\b._\b2_\b7_\b5  _\bs_\bm_\bi_\bm_\be_\b__\bg_\be_\bt_\b__\bc_\be_\br_\bt_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd
+       _\b7_\b._\b4_\b._\b2_\b7_\b7  _\bs_\bm_\bi_\bm_\be_\b__\bg_\be_\bt_\b__\bc_\be_\br_\bt_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd
 
        Type: string
 
        This command is used to extract X509 certificates from a PKCS7 structure.
        (S/MIME only)
 
-       _\b7_\b._\b4_\b._\b2_\b7_\b6  _\bs_\bm_\bi_\bm_\be_\b__\bg_\be_\bt_\b__\bc_\be_\br_\bt_\b__\be_\bm_\ba_\bi_\bl_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd
+       _\b7_\b._\b4_\b._\b2_\b7_\b8  _\bs_\bm_\bi_\bm_\be_\b__\bg_\be_\bt_\b__\bc_\be_\br_\bt_\b__\be_\bm_\ba_\bi_\bl_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd
 
        Type: string
 
        tificates, and for verification purposes (to check whether the certificate was
        issued for the sender's mailbox).  (S/MIME only)
 
-       _\b7_\b._\b4_\b._\b2_\b7_\b7  _\bs_\bm_\bi_\bm_\be_\b__\bg_\be_\bt_\b__\bs_\bi_\bg_\bn_\be_\br_\b__\bc_\be_\br_\bt_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd
-
-       The Mutt Next Generation E-Mail Client                                      154
+       _\b7_\b._\b4_\b._\b2_\b7_\b9  _\bs_\bm_\bi_\bm_\be_\b__\bg_\be_\bt_\b__\bs_\bi_\bg_\bn_\be_\br_\b__\bc_\be_\br_\bt_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd
 
        Type: string
 
        signature, so that the certificate's owner may get compared to the email's
        ``From:'' header field.  (S/MIME only)
 
-       _\b7_\b._\b4_\b._\b2_\b7_\b8  _\bs_\bm_\bi_\bm_\be_\b__\bi_\bm_\bp_\bo_\br_\bt_\b__\bc_\be_\br_\bt_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd
+       _\b7_\b._\b4_\b._\b2_\b8_\b0  _\bs_\bm_\bi_\bm_\be_\b__\bi_\bm_\bp_\bo_\br_\bt_\b__\bc_\be_\br_\bt_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd
 
        Type: string
 
 
        This command is used to import a certificate via smime_keysng.  (S/MIME only)
 
-       _\b7_\b._\b4_\b._\b2_\b7_\b9  _\bs_\bm_\bi_\bm_\be_\b__\bi_\bs_\b__\bd_\be_\bf_\ba_\bu_\bl_\bt
+       _\b7_\b._\b4_\b._\b2_\b8_\b1  _\bs_\bm_\bi_\bm_\be_\b__\bi_\bs_\b__\bd_\be_\bf_\ba_\bu_\bl_\bt
+
+       The Mutt Next Generation E-Mail Client                                      155
 
        Type: boolean
 
        select the same application that was used to sign/encrypt the original message.
 
        (Note that this variable can be overridden by unsetting _\b$_\bc_\br_\by_\bp_\bt_\b__\ba_\bu_\bt_\bo_\bs_\bm_\bi_\bm_\be (sec-
-       tion 7.4.37  , page 94).)  (S/MIME only)
+       tion 7.4.39  , page 96).)  (S/MIME only)
 
-       _\b7_\b._\b4_\b._\b2_\b8_\b0  _\bs_\bm_\bi_\bm_\be_\b__\bk_\be_\by_\bs
+       _\b7_\b._\b4_\b._\b2_\b8_\b2  _\bs_\bm_\bi_\bm_\be_\b__\bk_\be_\by_\bs
 
        Type: path
 
        address keyid pair, and which can be manually edited. This one points to the
        location of the private keys.  (S/MIME only)
 
-       _\b7_\b._\b4_\b._\b2_\b8_\b1  _\bs_\bm_\bi_\bm_\be_\b__\bp_\bk_\b7_\bo_\bu_\bt_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd
+       _\b7_\b._\b4_\b._\b2_\b8_\b3  _\bs_\bm_\bi_\bm_\be_\b__\bp_\bk_\b7_\bo_\bu_\bt_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd
 
        Type: string
 
        This command is used to extract PKCS7 structures of S/MIME signatures, in order
        to extract the public X509 certificate(s).  (S/MIME only)
 
-       The Mutt Next Generation E-Mail Client                                      155
-
-       _\b7_\b._\b4_\b._\b2_\b8_\b2  _\bs_\bm_\bi_\bm_\be_\b__\bs_\bi_\bg_\bn_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd
+       _\b7_\b._\b4_\b._\b2_\b8_\b4  _\bs_\bm_\bi_\bm_\be_\b__\bs_\bi_\bg_\bn_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd
 
        Type: string
 
        This command is used to created S/MIME signatures of type multipart/signed,
        which can be read by all mail clients.  (S/MIME only)
 
-       _\b7_\b._\b4_\b._\b2_\b8_\b3  _\bs_\bm_\bi_\bm_\be_\b__\bs_\bi_\bg_\bn_\b__\bo_\bp_\ba_\bq_\bu_\be_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd
+       _\b7_\b._\b4_\b._\b2_\b8_\b5  _\bs_\bm_\bi_\bm_\be_\b__\bs_\bi_\bg_\bn_\b__\bo_\bp_\ba_\bq_\bu_\be_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd
 
        Type: string
 
        pkcs7-signature, which can only be handled by mail clients supporting the
        S/MIME extension.  (S/MIME only)
 
-       _\b7_\b._\b4_\b._\b2_\b8_\b4  _\bs_\bm_\bi_\bm_\be_\b__\bt_\bi_\bm_\be_\bo_\bu_\bt
+       The Mutt Next Generation E-Mail Client                                      156
+
+       _\b7_\b._\b4_\b._\b2_\b8_\b6  _\bs_\bm_\bi_\bm_\be_\b__\bt_\bi_\bm_\be_\bo_\bu_\bt
 
        Type: number
 
        The number of seconds after which a cached passphrase will expire if not used.
        (S/MIME only)
 
-       _\b7_\b._\b4_\b._\b2_\b8_\b5  _\bs_\bm_\bi_\bm_\be_\b__\bv_\be_\br_\bi_\bf_\by_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd
+       _\b7_\b._\b4_\b._\b2_\b8_\b7  _\bs_\bm_\bi_\bm_\be_\b__\bv_\be_\br_\bi_\bf_\by_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd
 
        Type: string
 
        This command is used to verify S/MIME signatures of type multipart/signed.
        (S/MIME only)
 
-       _\b7_\b._\b4_\b._\b2_\b8_\b6  _\bs_\bm_\bi_\bm_\be_\b__\bv_\be_\br_\bi_\bf_\by_\b__\bo_\bp_\ba_\bq_\bu_\be_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd
+       _\b7_\b._\b4_\b._\b2_\b8_\b8  _\bs_\bm_\bi_\bm_\be_\b__\bv_\be_\br_\bi_\bf_\by_\b__\bo_\bp_\ba_\bq_\bu_\be_\b__\bc_\bo_\bm_\bm_\ba_\bn_\bd
 
        Type: string
 
        This command is used to verify S/MIME signatures of type application/x-
        pkcs7-mime.  (S/MIME only)
 
-       _\b7_\b._\b4_\b._\b2_\b8_\b7  _\bs_\bm_\bt_\bp_\b__\be_\bn_\bv_\be_\bl_\bo_\bp_\be
+       _\b7_\b._\b4_\b._\b2_\b8_\b9  _\bs_\bm_\bt_\bp_\b__\be_\bn_\bv_\be_\bl_\bo_\bp_\be
 
        Type: string
 
 
        Availability: SMTP
 
-       The Mutt Next Generation E-Mail Client                                      156
-
        If this variable is non-empty, it'll be used as the envelope sender. If it's
        empty (the default), the value of the regular From: header will be used.
 
        envelope sender but only a particular one which may not be the same as the
        user's desired From: header.
 
-       _\b7_\b._\b4_\b._\b2_\b8_\b8  _\bs_\bm_\bt_\bp_\b__\bh_\bo_\bs_\bt
+       _\b7_\b._\b4_\b._\b2_\b9_\b0  _\bs_\bm_\bt_\bp_\b__\bh_\bo_\bs_\bt
 
        Type: string
 
 
        Defines the SMTP host which will be used to deliver mail, as opposed to invok-
        ing the sendmail binary.  Setting this variable overrides the value of ``_\b$_\bs_\be_\bn_\bd_\b-
-       _\bm_\ba_\bi_\bl (section 7.4.249  , page 146)'', and any associated variables.
+       _\bm_\ba_\bi_\bl (section 7.4.251  , page 147)'', and any associated variables.
+
+       The Mutt Next Generation E-Mail Client                                      157
 
-       _\b7_\b._\b4_\b._\b2_\b8_\b9  _\bs_\bm_\bt_\bp_\b__\bp_\ba_\bs_\bs
+       _\b7_\b._\b4_\b._\b2_\b9_\b1  _\bs_\bm_\bt_\bp_\b__\bp_\ba_\bs_\bs
 
        Type: string
 
        Availability: SMTP
 
        Defines the password to use with SMTP AUTH.  If ``_\b$_\bs_\bm_\bt_\bp_\b__\bu_\bs_\be_\br (section
-       7.4.292  , page 155)'' is set, but this variable is not, you will be prompted
+       7.4.294  , page 157)'' is set, but this variable is not, you will be prompted
        for a password when sending.
 
        N\bNo\bot\bte\be:\b: Storing passwords in a configuration file presents a security risk since
        the superuser of your machine may read it regardless of the file's permissions.
 
-       _\b7_\b._\b4_\b._\b2_\b9_\b0  _\bs_\bm_\bt_\bp_\b__\bp_\bo_\br_\bt
+       _\b7_\b._\b4_\b._\b2_\b9_\b2  _\bs_\bm_\bt_\bp_\b__\bp_\bo_\br_\bt
 
        Type: number
 
        Defaults to 25, the standard SMTP port, but RFC 2476-compliant SMTP servers
        will probably desire 587, the mail submission port.
 
-       _\b7_\b._\b4_\b._\b2_\b9_\b1  _\bs_\bm_\bt_\bp_\b__\bu_\bs_\be_\b__\bt_\bl_\bs
+       _\b7_\b._\b4_\b._\b2_\b9_\b3  _\bs_\bm_\bt_\bp_\b__\bu_\bs_\be_\b__\bt_\bl_\bs
 
        Type: string
 
        Default: ''
 
-       The Mutt Next Generation E-Mail Client                                      157
-
        Availability: SMTP (and SSL)
 
        Defines wether to use STARTTLS. If this option is set to ``_\br_\be_\bq_\bu_\bi_\br_\be_\bd'' and the
        continue without TLS in case of an error.  Muttng still needs to have SSL sup-
        port enabled in order to use it.
 
-       _\b7_\b._\b4_\b._\b2_\b9_\b2  _\bs_\bm_\bt_\bp_\b__\bu_\bs_\be_\br
+       _\b7_\b._\b4_\b._\b2_\b9_\b4  _\bs_\bm_\bt_\bp_\b__\bu_\bs_\be_\br
 
        Type: string
 
        Defines the username to use with SMTP AUTH.  Setting this variable will cause
        Mutt-ng to attempt to use SMTP AUTH when sending.
 
-       _\b7_\b._\b4_\b._\b2_\b9_\b3  _\bs_\bo_\br_\bt
+       The Mutt Next Generation E-Mail Client                                      158
+
+       _\b7_\b._\b4_\b._\b2_\b9_\b5  _\bs_\bo_\br_\bt
 
        Type: sort order
 
        You may optionally use the ``reverse-'' prefix to specify reverse sorting order
        (example: set sort=reverse-date-sent).
 
-       _\b7_\b._\b4_\b._\b2_\b9_\b4  _\bs_\bo_\br_\bt_\b__\ba_\bl_\bi_\ba_\bs
+       _\b7_\b._\b4_\b._\b2_\b9_\b6  _\bs_\bo_\br_\bt_\b__\ba_\bl_\bi_\ba_\bs
 
        Type: sort order
 
        Specifies how the entries in the ``alias'' menu are sorted.  The following are
        legal values:
 
-       The Mutt Next Generation E-Mail Client                                      158
-
                address (sort alphabetically by email address)
                alias (sort alphabetically by alias name)
                unsorted (leave in order specified in .muttrc)
 
-       _\b7_\b._\b4_\b._\b2_\b9_\b5  _\bs_\bo_\br_\bt_\b__\ba_\bu_\bx
+       _\b7_\b._\b4_\b._\b2_\b9_\b7  _\bs_\bo_\br_\bt_\b__\ba_\bu_\bx
 
        Type: sort order
 
 
        When sorting by threads, this variable controls how threads are sorted in rela-
        tion to other threads, and how the branches of the thread trees are sorted.
-       This can be set to any value that ``_\b$_\bs_\bo_\br_\bt (section 7.4.293  , page 156)'' can,
+       This can be set to any value that ``_\b$_\bs_\bo_\br_\bt (section 7.4.295  , page 157)'' can,
        except threads (in that case, Mutt-ng will just use date-sent).  You can also
        specify the ``last-'' prefix in addition to ``reverse-'' prefix, but last- must
        come after reverse-.  The last- prefix causes messages to be sorted against its
        siblings by which has the last descendant, using the rest of sort_aux as an
        ordering.
 
+       The Mutt Next Generation E-Mail Client                                      159
+
        For instance, set sort_aux=last-date-received would mean that if a new message
        is received in a thread, that thread becomes the last one displayed (or the
        first, if you have set sort=reverse-threads.)
 
-       N\bNo\bot\bte\be:\b: For reversed ``_\b$_\bs_\bo_\br_\bt (section 7.4.293  , page 156)'' order _\b$_\bs_\bo_\br_\bt_\b__\ba_\bu_\bx
-       (section 7.4.295  , page 156) is reversed again (which is not the right thing
+       N\bNo\bot\bte\be:\b: For reversed ``_\b$_\bs_\bo_\br_\bt (section 7.4.295  , page 157)'' order _\b$_\bs_\bo_\br_\bt_\b__\ba_\bu_\bx
+       (section 7.4.297  , page 158) is reversed again (which is not the right thing
        to do, but kept to not break any existing configuration setting).
 
-       _\b7_\b._\b4_\b._\b2_\b9_\b6  _\bs_\bo_\br_\bt_\b__\bb_\br_\bo_\bw_\bs_\be_\br
+       _\b7_\b._\b4_\b._\b2_\b9_\b8  _\bs_\bo_\br_\bt_\b__\bb_\br_\bo_\bw_\bs_\be_\br
 
        Type: sort order
 
        You may optionally use the ``reverse-'' prefix to specify reverse sorting order
        (example: set sort_browser=reverse-date).
 
-       _\b7_\b._\b4_\b._\b2_\b9_\b7  _\bs_\bo_\br_\bt_\b__\br_\be
+       _\b7_\b._\b4_\b._\b2_\b9_\b9  _\bs_\bo_\br_\bt_\b__\br_\be
 
        Type: boolean
 
        Default: yes
 
        This variable is only useful when sorting by threads with ``_\b$_\bs_\bt_\br_\bi_\bc_\bt_\b__\bt_\bh_\br_\be_\ba_\bd_\bs
-
-       The Mutt Next Generation E-Mail Client                                      159
-
-       (section 7.4.314  , page 163)'' _\bu_\bn_\bs_\be_\bt. In that case, it changes the heuristic
-       Mutt-ng uses to thread messages by subject.  With _\b$_\bs_\bo_\br_\bt_\b__\br_\be (section 7.4.297  ,
-       page 157) _\bs_\be_\bt, Mutt-ng will only attach a message as the child of another mes-
+       (section 7.4.316  , page 165)'' _\bu_\bn_\bs_\be_\bt. In that case, it changes the heuristic
+       Mutt-ng uses to thread messages by subject.  With _\b$_\bs_\bo_\br_\bt_\b__\br_\be (section 7.4.299  ,
+       page 159) _\bs_\be_\bt, Mutt-ng will only attach a message as the child of another mes-
        sage by subject if the subject of the child message starts with a substring
-       matching the setting of ``_\b$_\br_\be_\bp_\bl_\by_\b__\br_\be_\bg_\be_\bx_\bp (section 7.4.233  , page 142)''. With
-       _\b$_\bs_\bo_\br_\bt_\b__\br_\be (section 7.4.297  , page 157) _\bu_\bn_\bs_\be_\bt, Mutt-ng will attach the message
+       matching the setting of ``_\b$_\br_\be_\bp_\bl_\by_\b__\br_\be_\bg_\be_\bx_\bp (section 7.4.235  , page 143)''. With
+       _\b$_\bs_\bo_\br_\bt_\b__\br_\be (section 7.4.299  , page 159) _\bu_\bn_\bs_\be_\bt, Mutt-ng will attach the message
        whether or not this is the case, as long as the non-``_\b$_\br_\be_\bp_\bl_\by_\b__\br_\be_\bg_\be_\bx_\bp (section
-       7.4.233  , page 142)'' parts of both messages are identical.
+       7.4.235  , page 143)'' parts of both messages are identical.
 
-       _\b7_\b._\b4_\b._\b2_\b9_\b8  _\bs_\bp_\ba_\bm_\b__\bs_\be_\bp_\ba_\br_\ba_\bt_\bo_\br
+       _\b7_\b._\b4_\b._\b3_\b0_\b0  _\bs_\bp_\ba_\bm_\b__\bs_\be_\bp_\ba_\br_\ba_\bt_\bo_\br
 
        Type: string
 
        Default: ','
 
-       ``_\bs_\bp_\ba_\bm_\b__\bs_\be_\bp_\ba_\br_\ba_\bt_\bo_\br (section 7.4.298  , page 157)'' controls what happens when
+       ``_\bs_\bp_\ba_\bm_\b__\bs_\be_\bp_\ba_\br_\ba_\bt_\bo_\br (section 7.4.300  , page 159)'' controls what happens when
        multiple spam headers are matched: if _\bu_\bn_\bs_\be_\bt, each successive header will over-
        write any previous matches value for the spam label. If _\bs_\be_\bt, each successive
-       match will append to the previous, using ``_\bs_\bp_\ba_\bm_\b__\bs_\be_\bp_\ba_\br_\ba_\bt_\bo_\br (section 7.4.298  ,
-       page 157)'' as a separator.
+       match will append to the previous, using ``_\bs_\bp_\ba_\bm_\b__\bs_\be_\bp_\ba_\br_\ba_\bt_\bo_\br (section 7.4.300  ,
+       page 159)'' as a separator.
+
+       The Mutt Next Generation E-Mail Client                                      160
 
-       _\b7_\b._\b4_\b._\b2_\b9_\b9  _\bs_\bp_\bo_\bo_\bl_\bf_\bi_\bl_\be
+       _\b7_\b._\b4_\b._\b3_\b0_\b1  _\bs_\bp_\bo_\bo_\bl_\bf_\bi_\bl_\be
 
        Type: path
 
        set this variable to the value of the environment variable $MAIL if it is not
        set.
 
-       _\b7_\b._\b4_\b._\b3_\b0_\b0  _\bs_\bs_\bl_\b__\bc_\ba_\b__\bc_\be_\br_\bt_\bi_\bf_\bi_\bc_\ba_\bt_\be_\bs_\b__\bf_\bi_\bl_\be
+       _\b7_\b._\b4_\b._\b3_\b0_\b2  _\bs_\bs_\bl_\b__\bc_\ba_\b__\bc_\be_\br_\bt_\bi_\bf_\bi_\bc_\ba_\bt_\be_\bs_\b__\bf_\bi_\bl_\be
 
        Type: path
 
 
        Example: set ssl_ca_certificates_file=/etc/ssl/certs/ca-certificates.crt
 
-       _\b7_\b._\b4_\b._\b3_\b0_\b1  _\bs_\bs_\bl_\b__\bc_\bl_\bi_\be_\bn_\bt_\b__\bc_\be_\br_\bt
+       _\b7_\b._\b4_\b._\b3_\b0_\b3  _\bs_\bs_\bl_\b__\bc_\bl_\bi_\be_\bn_\bt_\b__\bc_\be_\br_\bt
 
        Type: path
 
 
        The file containing a client certificate and its associated private key.
 
-       The Mutt Next Generation E-Mail Client                                      160
-
-       _\b7_\b._\b4_\b._\b3_\b0_\b2  _\bs_\bs_\bl_\b__\bf_\bo_\br_\bc_\be_\b__\bt_\bl_\bs
+       _\b7_\b._\b4_\b._\b3_\b0_\b4  _\bs_\bs_\bl_\b__\bf_\bo_\br_\bc_\be_\b__\bt_\bl_\bs
 
        Type: boolean
 
        servers be encrypted. Furthermore it will attempt to negotiate TLS even if the
        server does not advertise the capability, since it would otherwise have to
        abort the connection anyway. This option supersedes ``_\b$_\bs_\bs_\bl_\b__\bs_\bt_\ba_\br_\bt_\bt_\bl_\bs (section
-       7.4.304  , page 159)''.
+       7.4.306  , page 160)''.
 
-       _\b7_\b._\b4_\b._\b3_\b0_\b3  _\bs_\bs_\bl_\b__\bm_\bi_\bn_\b__\bd_\bh_\b__\bp_\br_\bi_\bm_\be_\b__\bb_\bi_\bt_\bs
+       _\b7_\b._\b4_\b._\b3_\b0_\b5  _\bs_\bs_\bl_\b__\bm_\bi_\bn_\b__\bd_\bh_\b__\bp_\br_\bi_\bm_\be_\b__\bb_\bi_\bt_\bs
 
        Type: number
 
        Availability: GNUTLS
 
        This variable specifies the minimum acceptable prime size (in bits) for use in
+
+       The Mutt Next Generation E-Mail Client                                      161
+
        any Diffie-Hellman key exchange. A value of 0 will use the default from the
        GNUTLS library.
 
-       _\b7_\b._\b4_\b._\b3_\b0_\b4  _\bs_\bs_\bl_\b__\bs_\bt_\ba_\br_\bt_\bt_\bl_\bs
+       _\b7_\b._\b4_\b._\b3_\b0_\b6  _\bs_\bs_\bl_\b__\bs_\bt_\ba_\br_\bt_\bt_\bl_\bs
 
        Type: quadoption
 
        ing the capability. When _\bu_\bn_\bs_\be_\bt, Mutt-ng will not attempt to use STARTTLS
        regardless of the server's capabilities.
 
-       _\b7_\b._\b4_\b._\b3_\b0_\b5  _\bs_\bs_\bl_\b__\bu_\bs_\be_\b__\bs_\bs_\bl_\bv_\b2
+       _\b7_\b._\b4_\b._\b3_\b0_\b7  _\bs_\bs_\bl_\b__\bu_\bs_\be_\b__\bs_\bs_\bl_\bv_\b2
 
        Type: boolean
 
        This variables specifies whether to attempt to use SSLv2 in the SSL authentica-
        tion process.
 
-       _\b7_\b._\b4_\b._\b3_\b0_\b6  _\bs_\bs_\bl_\b__\bu_\bs_\be_\b__\bs_\bs_\bl_\bv_\b3
+       _\b7_\b._\b4_\b._\b3_\b0_\b8  _\bs_\bs_\bl_\b__\bu_\bs_\be_\b__\bs_\bs_\bl_\bv_\b3
 
        Type: boolean
 
 
        Availability: SSL or GNUTLS
 
-       The Mutt Next Generation E-Mail Client                                      161
-
        This variables specifies whether to attempt to use SSLv3 in the SSL authentica-
        tion process.
 
-       _\b7_\b._\b4_\b._\b3_\b0_\b7  _\bs_\bs_\bl_\b__\bu_\bs_\be_\b__\bt_\bl_\bs_\bv_\b1
+       _\b7_\b._\b4_\b._\b3_\b0_\b9  _\bs_\bs_\bl_\b__\bu_\bs_\be_\b__\bt_\bl_\bs_\bv_\b1
 
        Type: boolean
 
        This variables specifies whether to attempt to use TLSv1 in the SSL authentica-
        tion process.
 
-       _\b7_\b._\b4_\b._\b3_\b0_\b8  _\bs_\bs_\bl_\b__\bu_\bs_\be_\bs_\by_\bs_\bt_\be_\bm_\bc_\be_\br_\bt_\bs
+       _\b7_\b._\b4_\b._\b3_\b1_\b0  _\bs_\bs_\bl_\b__\bu_\bs_\be_\bs_\by_\bs_\bt_\be_\bm_\bc_\be_\br_\bt_\bs
 
        Type: boolean
 
        Default: yes
 
+       The Mutt Next Generation E-Mail Client                                      162
+
        Availability: SSL
 
        If set to _\by_\be_\bs, Mutt-ng will use CA certificates in the system-wide certificate
        store when checking if server certificate is signed by a trusted CA.
 
-       _\b7_\b._\b4_\b._\b3_\b0_\b9  _\bs_\bt_\ba_\bt_\bu_\bs_\b__\bc_\bh_\ba_\br_\bs
+       _\b7_\b._\b4_\b._\b3_\b1_\b1  _\bs_\bt_\ba_\bt_\bu_\bs_\b__\bc_\bh_\ba_\br_\bs
 
        Type: string
 
        Default: '-*%A'
 
        Controls the characters used by the ``%r'' indicator in ``_\b$_\bs_\bt_\ba_\bt_\bu_\bs_\b__\bf_\bo_\br_\bm_\ba_\bt (sec-
-       tion 7.4.310  , page 160)''. The first character is used when the mailbox is
+       tion 7.4.312  , page 162)''. 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 if the mailbox is in read-only mode, or
        if the mailbox will not be written when exiting that mailbox (You can toggle
        been opened in attach-message mode (Certain operations like composing a new
        mail, replying, forwarding, etc. are not permitted in this mode).
 
-       _\b7_\b._\b4_\b._\b3_\b1_\b0  _\bs_\bt_\ba_\bt_\bu_\bs_\b__\bf_\bo_\br_\bm_\ba_\bt
+       _\b7_\b._\b4_\b._\b3_\b1_\b2  _\bs_\bt_\ba_\bt_\bu_\bs_\b__\bf_\bo_\br_\bm_\ba_\bt
 
        Type: string
 
        %l?]---(%s/%S)-%>-(%P)---'
 
        Controls the format of the status line displayed in the _\bi_\bn_\bd_\be_\bx menu.  This
-       string is similar to ``_\b$_\bi_\bn_\bd_\be_\bx_\b__\bf_\bo_\br_\bm_\ba_\bt (section 7.4.111  , page 111)'', but has
+       string is similar to ``_\b$_\bi_\bn_\bd_\be_\bx_\b__\bf_\bo_\br_\bm_\ba_\bt (section 7.4.113  , page 113)'', but has
        its own set of printf(3)-like sequences:
 
-       The Mutt Next Generation E-Mail Client                                      162
-
              %b
                    number of mailboxes with new mail *
 
              %l
                    size (in bytes) of the current mailbox *
 
+       The Mutt Next Generation E-Mail Client                                      163
+
              %L
                    size (in bytes) of the messages shown (i.e., which match the cur-
                    rent limit) *
 
              %r
                    modified/read-only/won't-write/attach-message indicator, according
-                   to _\b$_\bs_\bt_\ba_\bt_\bu_\bs_\b__\bc_\bh_\ba_\br_\bs (section 7.4.309  , page 160)
+                   to _\b$_\bs_\bt_\ba_\bt_\bu_\bs_\b__\bc_\bh_\ba_\br_\bs (section 7.4.311  , page 161)
 
              %s
-                   current sorting mode (_\b$_\bs_\bo_\br_\bt (section 7.4.293  , page 156))
+                   current sorting mode (_\b$_\bs_\bo_\br_\bt (section 7.4.295  , page 157))
 
              %S
-                   current aux sorting method (_\b$_\bs_\bo_\br_\bt_\b__\ba_\bu_\bx (section 7.4.295  , page
-                   156))
-
-       The Mutt Next Generation E-Mail Client                                      163
+                   current aux sorting method (_\b$_\bs_\bo_\br_\bt_\b__\ba_\bu_\bx (section 7.4.297  , page
+                   158))
 
              %t
                    number of tagged messages *
 
        * = can be optionally printed if nonzero
 
+       The Mutt Next Generation E-Mail Client                                      164
+
        Some of the above sequences can be used to optionally print a string if their
        value is nonzero.  For example, you may only want to see the number of flagged
        messages if such messages exist, since zero is not particularly meaningful.  To
        replace any dots in the expansion by underscores. This might be helpful with
        IMAP folders that don't like dots in folder names.
 
-       The Mutt Next Generation E-Mail Client                                      164
-
-       _\b7_\b._\b4_\b._\b3_\b1_\b1  _\bs_\bt_\ba_\bt_\bu_\bs_\b__\bo_\bn_\b__\bt_\bo_\bp
+       _\b7_\b._\b4_\b._\b3_\b1_\b3  _\bs_\bt_\ba_\bt_\bu_\bs_\b__\bo_\bn_\b__\bt_\bo_\bp
 
        Type: boolean
 
        Setting this variable causes the ``status bar'' to be displayed on the first
        line of the screen rather than near the bottom.
 
-       _\b7_\b._\b4_\b._\b3_\b1_\b2  _\bs_\bt_\br_\bi_\bc_\bt_\b__\bm_\ba_\bi_\bl_\bt_\bo
+       _\b7_\b._\b4_\b._\b3_\b1_\b4  _\bs_\bt_\br_\bi_\bc_\bt_\b__\bm_\ba_\bi_\bl_\bt_\bo
 
        Type: boolean
 
 
        With mailto: style links, a body as well as arbitrary header information may be
        embedded. This may lead to (user) headers being overwriten without note if
-       ``_\b$_\be_\bd_\bi_\bt_\b__\bh_\be_\ba_\bd_\be_\br_\bs (section 7.4.55  , page 98)'' is unset.
+       ``_\b$_\be_\bd_\bi_\bt_\b__\bh_\be_\ba_\bd_\be_\br_\bs (section 7.4.57  , page 100)'' is unset.
 
        If this variable is _\bs_\be_\bt, mutt-ng is strict and allows anything to be changed.
+
+       The Mutt Next Generation E-Mail Client                                      165
+
        If it's _\bu_\bn_\bs_\be_\bt, all headers given will be prefixed with ``X-Mailto-'' and the
        message including headers will be shown in the editor regardless of what
-       ``_\b$_\be_\bd_\bi_\bt_\b__\bh_\be_\ba_\bd_\be_\br_\bs (section 7.4.55  , page 98)'' is set to.
+       ``_\b$_\be_\bd_\bi_\bt_\b__\bh_\be_\ba_\bd_\be_\br_\bs (section 7.4.57  , page 100)'' is set to.
 
-       _\b7_\b._\b4_\b._\b3_\b1_\b3  _\bs_\bt_\br_\bi_\bc_\bt_\b__\bm_\bi_\bm_\be
+       _\b7_\b._\b4_\b._\b3_\b1_\b5  _\bs_\bt_\br_\bi_\bc_\bt_\b__\bm_\bi_\bm_\be
 
        Type: boolean
 
        When _\bu_\bn_\bs_\be_\bt, non MIME-compliant messages that doesn't have any charset indica-
        tion in the ``Content-Type:'' header field can be displayed (non MIME-compliant
        messages are often generated by old mailers or buggy mailers like MS Outlook
-       Express).  See also _\b$_\ba_\bs_\bs_\bu_\bm_\be_\bd_\b__\bc_\bh_\ba_\br_\bs_\be_\bt (section 7.4.11  , page 88).
+       Express).  See also _\b$_\ba_\bs_\bs_\bu_\bm_\be_\bd_\b__\bc_\bh_\ba_\br_\bs_\be_\bt (section 7.4.12  , page 89).
 
        This option also replaces linear-white-space between encoded-word and *text to
        a single space to prevent the display of MIME-encoded ``Subject:'' header field
        from being devided into multiple lines.
 
-       _\b7_\b._\b4_\b._\b3_\b1_\b4  _\bs_\bt_\br_\bi_\bc_\bt_\b__\bt_\bh_\br_\be_\ba_\bd_\bs
+       _\b7_\b._\b4_\b._\b3_\b1_\b6  _\bs_\bt_\br_\bi_\bc_\bt_\b__\bt_\bh_\br_\be_\ba_\bd_\bs
 
        Type: boolean
 
        Default: no
 
        If _\bs_\be_\bt, threading will only make use of the ``In-Reply-To:'' and ``Refer-
-       ences:'' header fields when you ``_\b$_\bs_\bo_\br_\bt (section 7.4.293  , page 156)'' by mes-
+       ences:'' header fields when you ``_\b$_\bs_\bo_\br_\bt (section 7.4.295  , page 157)'' by mes-
        sage 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.
 
-       _\b7_\b._\b4_\b._\b3_\b1_\b5  _\bs_\bt_\br_\bi_\bp_\b__\bw_\ba_\bs
-
-       The Mutt Next Generation E-Mail Client                                      165
+       _\b7_\b._\b4_\b._\b3_\b1_\b7  _\bs_\bt_\br_\bi_\bp_\b__\bw_\ba_\bs
 
        Type: boolean
 
        Default: no
 
        When _\bs_\be_\bt, mutt-ng will remove the trailing part of the ``Subject:'' line which
-       matches _\b$_\bs_\bt_\br_\bi_\bp_\b__\bw_\ba_\bs_\b__\br_\be_\bg_\be_\bx (section 7.4.316  , page 163) when replying. This is
+       matches _\b$_\bs_\bt_\br_\bi_\bp_\b__\bw_\ba_\bs_\b__\br_\be_\bg_\be_\bx (section 7.4.318  , page 165) when replying. This is
        useful to properly react on subject changes and reduce ``subject noise.'' (esp.
        in Usenet)
 
-       _\b7_\b._\b4_\b._\b3_\b1_\b6  _\bs_\bt_\br_\bi_\bp_\b__\bw_\ba_\bs_\b__\br_\be_\bg_\be_\bx
+       _\b7_\b._\b4_\b._\b3_\b1_\b8  _\bs_\bt_\br_\bi_\bp_\b__\bw_\ba_\bs_\b__\br_\be_\bg_\be_\bx
 
        Type: regular expression
 
        Default: '\([Ww][Aa][RrSs]: .*\)[ ]*$'
 
-       When non-empty and _\b$_\bs_\bt_\br_\bi_\bp_\b__\bw_\ba_\bs (section 7.4.315  , page 163) is _\bs_\be_\bt, mutt-ng
+       When non-empty and _\b$_\bs_\bt_\br_\bi_\bp_\b__\bw_\ba_\bs (section 7.4.317  , page 165) is _\bs_\be_\bt, mutt-ng
        will remove this trailing part of the ``Subject'' line when replying if it
        won't be empty afterwards.
 
-       _\b7_\b._\b4_\b._\b3_\b1_\b7  _\bs_\bt_\bu_\bf_\bf_\b__\bq_\bu_\bo_\bt_\be_\bd
+       The Mutt Next Generation E-Mail Client                                      166
+
+       _\b7_\b._\b4_\b._\b3_\b1_\b9  _\bs_\bt_\bu_\bf_\bf_\b__\bq_\bu_\bo_\bt_\be_\bd
 
        Type: boolean
 
        If _\bs_\be_\bt, attachments with flowed format will have their quoting ``stuffed'',
        i.e. a space will be inserted between the quote characters and the actual text.
 
-       _\b7_\b._\b4_\b._\b3_\b1_\b8  _\bs_\bu_\bs_\bp_\be_\bn_\bd
+       _\b7_\b._\b4_\b._\b3_\b2_\b0  _\bs_\bu_\bs_\bp_\be_\bn_\bd
 
        Type: boolean
 
        usually CTRL+Z. This is useful if you run Mutt-ng inside an xterm using a com-
        mand like ``xterm -e muttng.''
 
-       _\b7_\b._\b4_\b._\b3_\b1_\b9  _\bt_\be_\bx_\bt_\b__\bf_\bl_\bo_\bw_\be_\bd
+       _\b7_\b._\b4_\b._\b3_\b2_\b1  _\bt_\be_\bx_\bt_\b__\bf_\bl_\bo_\bw_\be_\bd
 
        Type: boolean
 
        like ordinary text.  To actually make use of this format's features, you'll
        need support in your editor.
 
-       Note that _\b$_\bi_\bn_\bd_\be_\bn_\bt_\b__\bs_\bt_\br_\bi_\bn_\bg (section 7.4.110  , page 111) is ignored when this
+       Note that _\b$_\bi_\bn_\bd_\be_\bn_\bt_\b__\bs_\bt_\br_\bi_\bn_\bg (section 7.4.112  , page 113) is ignored when this
        option is set.
 
-       _\b7_\b._\b4_\b._\b3_\b2_\b0  _\bt_\bh_\bo_\br_\bo_\bu_\bg_\bh_\b__\bs_\be_\ba_\br_\bc_\bh
-
-       The Mutt Next Generation E-Mail Client                                      166
+       _\b7_\b._\b4_\b._\b3_\b2_\b2  _\bt_\bh_\bo_\br_\bo_\bu_\bg_\bh_\b__\bs_\be_\ba_\br_\bc_\bh
 
        Type: boolean
 
        Default: no
 
        Affects the ~b and ~h search operations described in section ``_\bp_\ba_\bt_\bt_\be_\br_\bn_\bs (sec-
-       tion 7.2  , page 80)'' above.  If _\bs_\be_\bt, the headers and attachments of messages
+       tion 7.2  , page 81)'' above.  If _\bs_\be_\bt, the headers and attachments of messages
        to be searched are decoded before searching.  If _\bu_\bn_\bs_\be_\bt, messages are searched
        as they appear in the folder.
 
-       _\b7_\b._\b4_\b._\b3_\b2_\b1  _\bt_\bh_\br_\be_\ba_\bd_\b__\br_\be_\bc_\be_\bi_\bv_\be_\bd
+       _\b7_\b._\b4_\b._\b3_\b2_\b3  _\bt_\bh_\br_\be_\ba_\bd_\b__\br_\be_\bc_\be_\bi_\bv_\be_\bd
 
        Type: boolean
 
        When _\bs_\be_\bt, Mutt-ng uses the date received rather than the date sent to thread
        messages by subject.
 
-       _\b7_\b._\b4_\b._\b3_\b2_\b2  _\bt_\bi_\bl_\bd_\be
+       The Mutt Next Generation E-Mail Client                                      167
+
+       _\b7_\b._\b4_\b._\b3_\b2_\b4  _\bt_\bi_\bl_\bd_\be
 
        Type: boolean
 
        When _\bs_\be_\bt, the internal-pager will pad blank lines to the bottom of the screen
        with a tilde (~).
 
-       _\b7_\b._\b4_\b._\b3_\b2_\b3  _\bt_\bi_\bm_\be_\bo_\bu_\bt
+       _\b7_\b._\b4_\b._\b3_\b2_\b5  _\bt_\bi_\bm_\be_\bo_\bu_\bt
 
        Type: number
 
        pressed in the main menu before timing out and checking for new mail.  A value
        of zero or less will cause Mutt-ng to never time out.
 
-       _\b7_\b._\b4_\b._\b3_\b2_\b4  _\bt_\bm_\bp_\bd_\bi_\br
+       _\b7_\b._\b4_\b._\b3_\b2_\b6  _\bt_\bm_\bp_\bd_\bi_\br
 
        Type: path
 
        set, the environment variable $TMPDIR is used.  If $TMPDIR is not set then
        '/tmp' is used.
 
-       _\b7_\b._\b4_\b._\b3_\b2_\b5  _\bt_\bo_\b__\bc_\bh_\ba_\br_\bs
+       _\b7_\b._\b4_\b._\b3_\b2_\b7  _\bt_\bo_\b__\bc_\bh_\ba_\br_\bs
 
        Type: string
 
        Default: ' +TCFL'
 
-       The Mutt Next Generation E-Mail Client                                      167
-
        Controls the character used to indicate mail addressed to you.  The first char-
        acter 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
        indicate mail that was sent by _\by_\bo_\bu.  The sixth character is used to indicate
        when a mail was sent to a mailing-list you're subscribe to (default: L).
 
-       _\b7_\b._\b4_\b._\b3_\b2_\b6  _\bt_\br_\ba_\bs_\bh
+       _\b7_\b._\b4_\b._\b3_\b2_\b8  _\bt_\br_\ba_\bs_\bh
 
        Type: path
 
        If _\bs_\be_\bt, this variable specifies the path of the trash folder where the mails
        marked for deletion will be moved, instead of being irremediably purged.
 
+       The Mutt Next Generation E-Mail Client                                      168
+
        N\bNo\bot\bte\be: When you delete a message in the trash folder, it is really deleted, so
        that there is no way to recover mail.
 
-       _\b7_\b._\b4_\b._\b3_\b2_\b7  _\bt_\bu_\bn_\bn_\be_\bl
+       _\b7_\b._\b4_\b._\b3_\b2_\b9  _\bt_\bu_\bn_\bn_\be_\bl
 
        Type: string
 
        N\bNo\bot\bte\be:\b: For this example to work you must be able to log in to the remote machine
        without having to enter a password.
 
-       _\b7_\b._\b4_\b._\b3_\b2_\b8  _\bu_\bm_\ba_\bs_\bk
+       _\b7_\b._\b4_\b._\b3_\b3_\b0  _\bu_\bm_\ba_\bs_\bk
 
        Type: number
 
        This sets the umask that will be used by Mutt-ng when creating all kinds of
        files. If _\bu_\bn_\bs_\be_\bt, the default value is 077.
 
-       _\b7_\b._\b4_\b._\b3_\b2_\b9  _\bu_\bn_\bc_\bo_\bl_\bl_\ba_\bp_\bs_\be_\b__\bj_\bu_\bm_\bp
+       _\b7_\b._\b4_\b._\b3_\b3_\b1  _\bu_\bn_\bc_\bo_\bl_\bl_\ba_\bp_\bs_\be_\b__\bj_\bu_\bm_\bp
 
        Type: boolean
 
        When _\bs_\be_\bt, Mutt-ng will jump to the next unread message, if any, when the cur-
        rent thread is _\bu_\bncollapsed.
 
-       The Mutt Next Generation E-Mail Client                                      168
-
-       _\b7_\b._\b4_\b._\b3_\b3_\b0  _\bu_\bs_\be_\b__\b8_\bb_\bi_\bt_\bm_\bi_\bm_\be
+       _\b7_\b._\b4_\b._\b3_\b3_\b2  _\bu_\bs_\be_\b__\b8_\bb_\bi_\bt_\bm_\bi_\bm_\be
 
        Type: boolean
 
        with the SMTP support via libESMTP.  Otherwise you may not be able to send
        mail.
 
-       When _\bs_\be_\bt, Mutt-ng will either invoke ``_\b$_\bs_\be_\bn_\bd_\bm_\ba_\bi_\bl (section 7.4.249  , page
-       146)'' with the -B8BITMIME flag when sending 8-bit messages to enable ESMTP
+       When _\bs_\be_\bt, Mutt-ng will either invoke ``_\b$_\bs_\be_\bn_\bd_\bm_\ba_\bi_\bl (section 7.4.251  , page
+       147)'' with the -B8BITMIME flag when sending 8-bit messages to enable ESMTP
        negotiation or tell libESMTP to do so.
 
-       _\b7_\b._\b4_\b._\b3_\b3_\b1  _\bu_\bs_\be_\b__\bd_\bo_\bm_\ba_\bi_\bn
+       _\b7_\b._\b4_\b._\b3_\b3_\b3  _\bu_\bs_\be_\b__\bd_\bo_\bm_\ba_\bi_\bn
 
        Type: boolean
 
+       The Mutt Next Generation E-Mail Client                                      169
+
        Default: yes
 
        When _\bs_\be_\bt, Mutt-ng will qualify all local addresses (ones without the @host por-
-       tion) with the value of ``_\b$_\bh_\bo_\bs_\bt_\bn_\ba_\bm_\be (section 7.4.90  , page 106)''.  If _\bu_\bn_\bs_\be_\bt,
+       tion) with the value of ``_\b$_\bh_\bo_\bs_\bt_\bn_\ba_\bm_\be (section 7.4.92  , page 108)''.  If _\bu_\bn_\bs_\be_\bt,
        no addresses will be qualified.
 
-       _\b7_\b._\b4_\b._\b3_\b3_\b2  _\bu_\bs_\be_\b__\bf_\br_\bo_\bm
+       _\b7_\b._\b4_\b._\b3_\b3_\b4  _\bu_\bs_\be_\b__\bf_\br_\bo_\bm
 
        Type: boolean
 
        sages. If _\bu_\bn_\bs_\be_\bt, no ``From:'' header field will be generated unless the user
        explicitly sets one using the ``_\bm_\by_\b__\bh_\bd_\br (section 3.15  , page 35)'' command.
 
-       _\b7_\b._\b4_\b._\b3_\b3_\b3  _\bu_\bs_\be_\b__\bi_\bd_\bn
+       _\b7_\b._\b4_\b._\b3_\b3_\b5  _\bu_\bs_\be_\b__\bi_\bd_\bn
 
        Type: boolean
 
        N\bNo\bot\bte\be:\b: You can use IDNs for addresses even if this is _\bu_\bn_\bs_\be_\bt.  This variable only
        affects decoding.
 
-       _\b7_\b._\b4_\b._\b3_\b3_\b4  _\bu_\bs_\be_\b__\bi_\bp_\bv_\b6
+       _\b7_\b._\b4_\b._\b3_\b3_\b6  _\bu_\bs_\be_\b__\bi_\bp_\bv_\b6
 
        Type: boolean
 
        Default: yes
 
-       The Mutt Next Generation E-Mail Client                                      169
-
        When _\bs_\be_\bt, Mutt-ng will look for IPv6 addresses of hosts it tries to contact.
        If this option is _\bu_\bn_\bs_\be_\bt, Mutt-ng will restrict itself to IPv4 addresses.  Nor-
        mally, the default should work.
 
-       _\b7_\b._\b4_\b._\b3_\b3_\b5  _\bu_\bs_\be_\br_\b__\ba_\bg_\be_\bn_\bt
+       _\b7_\b._\b4_\b._\b3_\b3_\b7  _\bu_\bs_\be_\br_\b__\ba_\bg_\be_\bn_\bt
 
        Type: boolean
 
        When _\bs_\be_\bt, Mutt-ng will add a ``User-Agent:'' header to outgoing messages, indi-
        cating which version of Mutt-ng was used for composing them.
 
-       _\b7_\b._\b4_\b._\b3_\b3_\b6  _\bv_\bi_\bs_\bu_\ba_\bl
+       _\b7_\b._\b4_\b._\b3_\b3_\b8  _\bv_\bi_\bs_\bu_\ba_\bl
 
        Type: path
 
        Default: ''
 
+       The Mutt Next Generation E-Mail Client                                      170
+
        Specifies the visual editor to invoke when the _\b~_\bv command is given in the
        builtin editor.
 
-       _\b7_\b._\b4_\b._\b3_\b3_\b7  _\bw_\ba_\bi_\bt_\b__\bk_\be_\by
+       _\b7_\b._\b4_\b._\b3_\b3_\b9  _\bw_\ba_\bi_\bt_\b__\bk_\be_\by
 
        Type: boolean
 
        _\bm_\be_\bs_\bs_\ba_\bg_\be, _\bp_\bi_\bp_\be_\b-_\be_\bn_\bt_\br_\by, _\bp_\br_\bi_\bn_\bt_\b-_\bm_\be_\bs_\bs_\ba_\bg_\be, and _\bp_\br_\bi_\bn_\bt_\b-_\be_\bn_\bt_\br_\by commands.
 
        It is also used when viewing attachments with ``_\ba_\bu_\bt_\bo_\b__\bv_\bi_\be_\bw (section 5.4  , page
-       75)'', provided that the corresponding mailcap entry has a needsterminal flag,
+       76)'', provided that the corresponding mailcap entry has a needsterminal flag,
        and the external program is interactive.
 
        When _\bs_\be_\bt, Mutt-ng will always ask for a key. When _\bu_\bn_\bs_\be_\bt, Mutt-ng will wait for
        a key only if the external command returned a non-zero status.
 
-       _\b7_\b._\b4_\b._\b3_\b3_\b8  _\bw_\be_\be_\bd
+       _\b7_\b._\b4_\b._\b3_\b4_\b0  _\bw_\be_\be_\bd
 
        Type: boolean
 
        When _\bs_\be_\bt, Mutt-ng will weed headers when displaying, forwarding, printing, or
        replying to messages.
 
-       _\b7_\b._\b4_\b._\b3_\b3_\b9  _\bw_\br_\ba_\bp_\b__\bs_\be_\ba_\br_\bc_\bh
+       _\b7_\b._\b4_\b._\b3_\b4_\b1  _\bw_\br_\ba_\bp_\b__\bs_\be_\ba_\br_\bc_\bh
 
        Type: boolean
 
 
        Controls whether searches wrap around the end of the mailbox.
 
-       The Mutt Next Generation E-Mail Client                                      170
-
        When _\bs_\be_\bt, searches will wrap around the first (or last) message. When _\bu_\bn_\bs_\be_\bt,
        searches will not wrap.
 
-       _\b7_\b._\b4_\b._\b3_\b4_\b0  _\bw_\br_\ba_\bp_\bm_\ba_\br_\bg_\bi_\bn
+       _\b7_\b._\b4_\b._\b3_\b4_\b2  _\bw_\br_\ba_\bp_\bm_\ba_\br_\bg_\bi_\bn
 
        Type: number
 
        Controls the size of the margin remaining at the right side of the terminal
        when Mutt-ng's pager does smart wrapping.
 
-       _\b7_\b._\b4_\b._\b3_\b4_\b1  _\bw_\br_\bi_\bt_\be_\b__\bb_\bc_\bc
+       _\b7_\b._\b4_\b._\b3_\b4_\b3  _\bw_\br_\bi_\bt_\be_\b__\bb_\bc_\bc
 
        Type: boolean
 
        Default: yes
 
+       The Mutt Next Generation E-Mail Client                                      171
+
        Controls whether Mutt-ng writes out the Bcc header when preparing messages to
        be sent.  Exim users may wish to _\bu_\bn_\bs_\be_\bt this.
 
-       _\b7_\b._\b4_\b._\b3_\b4_\b2  _\bw_\br_\bi_\bt_\be_\b__\bi_\bn_\bc
+       _\b7_\b._\b4_\b._\b3_\b4_\b4  _\bw_\br_\bi_\bt_\be_\b__\bi_\bn_\bc
 
        Type: number
 
        indicate progress.  If set to 0, only a single message will be displayed before
        writing a mailbox.
 
-       Also see the ``_\b$_\br_\be_\ba_\bd_\b__\bi_\bn_\bc (section 7.4.228  , page 141)'' variable.
+       Also see the ``_\b$_\br_\be_\ba_\bd_\b__\bi_\bn_\bc (section 7.4.230  , page 142)'' variable.
 
-       _\b7_\b._\b4_\b._\b3_\b4_\b3  _\bx_\bt_\be_\br_\bm_\b__\bi_\bc_\bo_\bn
+       _\b7_\b._\b4_\b._\b3_\b4_\b5  _\bx_\bt_\be_\br_\bm_\b__\bi_\bc_\bo_\bn
 
        Type: string
 
        Default: 'M%?n?AIL&ail?'
 
        Controls the format of the X11 icon title, as long as _\b$_\bx_\bt_\be_\br_\bm_\b__\bs_\be_\bt_\b__\bt_\bi_\bt_\bl_\be_\bs (sec-
-       tion 7.4.345  , page 169) is _\bs_\be_\bt. This string is identical in formatting to the
-       one used by ``_\b$_\bs_\bt_\ba_\bt_\bu_\bs_\b__\bf_\bo_\br_\bm_\ba_\bt (section 7.4.310  , page 160)''.
+       tion 7.4.347  , page 171) is _\bs_\be_\bt. This string is identical in formatting to the
+       one used by ``_\b$_\bs_\bt_\ba_\bt_\bu_\bs_\b__\bf_\bo_\br_\bm_\ba_\bt (section 7.4.312  , page 162)''.
 
-       _\b7_\b._\b4_\b._\b3_\b4_\b4  _\bx_\bt_\be_\br_\bm_\b__\bl_\be_\ba_\bv_\be
+       _\b7_\b._\b4_\b._\b3_\b4_\b6  _\bx_\bt_\be_\br_\bm_\b__\bl_\be_\ba_\bv_\be
 
        Type: string
 
        Default: ''
 
-       If _\b$_\bx_\bt_\be_\br_\bm_\b__\bs_\be_\bt_\b__\bt_\bi_\bt_\bl_\be_\bs (section 7.4.345  , page 169) is _\bs_\be_\bt, this string will be
+       If _\b$_\bx_\bt_\be_\br_\bm_\b__\bs_\be_\bt_\b__\bt_\bi_\bt_\bl_\be_\bs (section 7.4.347  , page 171) is _\bs_\be_\bt, this string will be
        used to set the title when leaving mutt-ng. For terminal-based programs,
        there's no easy and portable way to read the current title so mutt-ng cannot
        read it upon startup and restore it when exiting.
 
-       The Mutt Next Generation E-Mail Client                                      171
-
        Based on the xterm FAQ, the following might work:
 
        set xterm_leave = '`test x$DISPLAY != x && xprop -id $WINDOWID | grep WM_NAME |
        cut -d ''' -f 2`'
 
-       _\b7_\b._\b4_\b._\b3_\b4_\b5  _\bx_\bt_\be_\br_\bm_\b__\bs_\be_\bt_\b__\bt_\bi_\bt_\bl_\be_\bs
+       _\b7_\b._\b4_\b._\b3_\b4_\b7  _\bx_\bt_\be_\br_\bm_\b__\bs_\be_\bt_\b__\bt_\bi_\bt_\bl_\be_\bs
 
        Type: boolean
 
        you're in an appropriate terminal). The default must be _\bu_\bn_\bs_\be_\bt to force in the
        validity checking.
 
-       _\b7_\b._\b4_\b._\b3_\b4_\b6  _\bx_\bt_\be_\br_\bm_\b__\bt_\bi_\bt_\bl_\be
+       _\b7_\b._\b4_\b._\b3_\b4_\b8  _\bx_\bt_\be_\br_\bm_\b__\bt_\bi_\bt_\bl_\be
 
        Type: string
 
+       The Mutt Next Generation E-Mail Client                                      172
+
        Default: 'Mutt-ng with %?m?%m messages&no messages?%?n? [%n New]?'
 
        Controls the format of the title bar of the xterm provided that
-       _\b$_\bx_\bt_\be_\br_\bm_\b__\bs_\be_\bt_\b__\bt_\bi_\bt_\bl_\be_\bs (section 7.4.345  , page 169) has been _\bs_\be_\bt. This string is
-       identical in formatting to the one used by ``_\b$_\bs_\bt_\ba_\bt_\bu_\bs_\b__\bf_\bo_\br_\bm_\ba_\bt (section 7.4.310  ,
-       page 160)''.
+       _\b$_\bx_\bt_\be_\br_\bm_\b__\bs_\be_\bt_\b__\bt_\bi_\bt_\bl_\be_\bs (section 7.4.347  , page 171) has been _\bs_\be_\bt. This string is
+       identical in formatting to the one used by ``_\b$_\bs_\bt_\ba_\bt_\bu_\bs_\b__\bf_\bo_\br_\bm_\ba_\bt (section 7.4.312  ,
+       page 162)''.
 
        _\b7_\b._\b5  _\bF_\bu_\bn_\bc_\bt_\bi_\bo_\bn_\bs
 
        tings for this menu will affect the default bindings for all menus (except as
        noted).
 
-       The Mutt Next Generation E-Mail Client                                      172
-
             bottom-page                L   move to the bottom of the page
             current-bottom     not bound   move current entry to bottom of page
             current-middle     not bound   move current entry to middle of page
             top-page                   H   move to the top of the page
             what-key           not bound   display the keycode for a key press
 
+       The Mutt Next Generation E-Mail Client                                      173
+
        _\b7_\b._\b5_\b._\b2  _\bi_\bn_\bd_\be_\bx
 
-       The Mutt Next Generation E-Mail Client                                      173
+       The Mutt Next Generation E-Mail Client                                      174
 
             bounce-message             b   remail a message to another user
             change-folder              c   open a different folder
             show-version               V   show the Mutt-ng version number and date
             show-limit             ESC l   show currently active limit pattern, if any
 
-       The Mutt Next Generation E-Mail Client                                      174
+       The Mutt Next Generation E-Mail Client                                      175
 
             sort-mailbox               o   sort messages
             sort-reverse               O   sort messages in reverse order
 
        _\b7_\b._\b5_\b._\b3  _\bp_\ba_\bg_\be_\br
 
-       The Mutt Next Generation E-Mail Client                                      175
+       The Mutt Next Generation E-Mail Client                                      176
 
             bottom             not bound   jump to the bottom of the message
             bounce-message             b   remail a message to another user
             recall-message             R   recall a postponed message
             redraw-screen             ^L   clear and redraw the screen
 
-       The Mutt Next Generation E-Mail Client                                      176
+       The Mutt Next Generation E-Mail Client                                      177
 
             reply                      r   reply to a message
             save-message               s   save message/attachment to a file
 
        _\b7_\b._\b5_\b._\b6  _\ba_\bt_\bt_\ba_\bc_\bh
 
-       The Mutt Next Generation E-Mail Client                                      177
+       The Mutt Next Generation E-Mail Client                                      178
 
             bounce-message             b   remail a message to another user
             collapse-parts             v   toggle display of subparts
 
        _\b7_\b._\b5_\b._\b7  _\bc_\bo_\bm_\bp_\bo_\bs_\be
 
-       The Mutt Next Generation E-Mail Client                                      178
+       The Mutt Next Generation E-Mail Client                                      179
 
             attach-file                a   attach a file(s) to this message
             attach-message             A   attach message(s) to this message
 
        _\b7_\b._\b5_\b._\b9  _\bb_\br_\bo_\bw_\bs_\be_\br
 
-       The Mutt Next Generation E-Mail Client                                      179
+       The Mutt Next Generation E-Mail Client                                      180
 
             change-dir                 c   change directories
             check-new                TAB   check mailboxes for new mail
 
        _\b8_\b.  _\bM_\bi_\bs_\bc_\be_\bl_\bl_\ba_\bn_\by
 
-       The Mutt Next Generation E-Mail Client                                      180
+       The Mutt Next Generation E-Mail Client                                      181
 
        _\b8_\b._\b1  _\bA_\bc_\bk_\bn_\bo_\bw_\bl_\be_\bd_\bg_\bm_\be_\bn_\bt_\bs
 
 
        Felix von Leitner (a.k.a ``Fefe'') <leitner@math.fu-berlin.de>,
 
-       The Mutt Next Generation E-Mail Client                                      181
+       The Mutt Next Generation E-Mail Client                                      182
 
        Brandon Long <blong@fiction.net>,
 
 
        Elimar Riesebieter <riesebie@lxtec.de>
 
-       The Mutt Next Generation E-Mail Client                                      182
+       The Mutt Next Generation E-Mail Client                                      183
 
        _\b8_\b._\b2  _\bA_\bb_\bo_\bu_\bt _\bt_\bh_\bi_\bs _\bd_\bo_\bc_\bu_\bm_\be_\bn_\bt
 
        This document was written in SGML, and then rendered using the sgml-tools pack-
        age.
 
-       The Mutt Next Generation E-Mail Client                                      183
+       The Mutt Next Generation E-Mail Client                                      184
 
                                           CONTENTS
 
            7.2   Patterns   ....................................................... 81
            7.3   Configuration Commands   ......................................... 83
            7.4   Configuration variables .......................................... 85
-                 7.4.1    abort_nosubject   86
-                 7.4.2    abort_unmodified   87
-                 7.4.3    alias_file   87
-                 7.4.4    alias_format   87
-                 7.4.5    allow_8bit   87
-                 7.4.6    allow_ansi   88
+                 7.4.1    abort_noattach   86
+                 7.4.2    abort_nosubject   87
+                 7.4.3    abort_unmodified   87
+                 7.4.4    alias_file   87
+                 7.4.5    alias_format   87
+                 7.4.6    allow_8bit   88
 
                                              iii
 
-                 7.4.7    arrow_cursor   88
-                 7.4.8    ascii_chars   88
-                 7.4.9    askbcc   88
-                 7.4.10   askcc   88
-                 7.4.11   assumed_charset   89
-                 7.4.12   attach_format   89
-                 7.4.13   attach_sep   90
-                 7.4.14   attach_split   90
-                 7.4.15   attribution   90
-                 7.4.16   auto_tag   90
-                 7.4.17   autoedit   91
-                 7.4.18   beep   91
-                 7.4.19   beep_new   91
-                 7.4.20   bounce   91
-                 7.4.21   bounce_delivered   91
-                 7.4.22   braille_friendly   92
-                 7.4.23   certificate_file   92
-                 7.4.24   charset   92
-                 7.4.25   check_new   92
-                 7.4.26   collapse_unread   93
-                 7.4.27   compose_format   93
-                 7.4.28   config_charset   93
-                 7.4.29   confirmappend   93
-                 7.4.30   confirmcreate   94
-                 7.4.31   connect_timeout   94
-                 7.4.32   content_type   94
-                 7.4.33   copy   94
-                 7.4.34   crypt_autoencrypt   94
-                 7.4.35   crypt_autopgp   95
-                 7.4.36   crypt_autosign   95
-                 7.4.37   crypt_autosmime   95
-                 7.4.38   crypt_replyencrypt   95
-                 7.4.39   crypt_replysign   95
-                 7.4.40   crypt_replysignencrypted   96
-                 7.4.41   crypt_timestamp   96
-                 7.4.42   crypt_use_gpgme   96
-                 7.4.43   crypt_verify_sig   96
-                 7.4.44   date_format   96
-                 7.4.45   default_hook   97
-                 7.4.46   delete   97
-                 7.4.47   delete_space   97
-                 7.4.48   delete_untag   97
-                 7.4.49   digest_collapse   98
-                 7.4.50   display_filter   98
-                 7.4.51   dotlock_program   98
-                 7.4.52   dsn_notify   98
-                 7.4.53   dsn_return   99
-                 7.4.54   duplicate_threads   99
-                 7.4.55   edit_headers   99
-                 7.4.56   editor   99
-                 7.4.57   encode_from   99
-                 7.4.58   entropy_file   100
-                 7.4.59   envelope_from   100
+                 7.4.7    allow_ansi   88
+                 7.4.8    arrow_cursor   88
+                 7.4.9    ascii_chars   88
+                 7.4.10   askbcc   89
+                 7.4.11   askcc   89
+                 7.4.12   assumed_charset   89
+                 7.4.13   attach_format   89
+                 7.4.14   attach_remind_regexp   90
+                 7.4.15   attach_sep   90
+                 7.4.16   attach_split   91
+                 7.4.17   attribution   91
+                 7.4.18   auto_tag   91
+                 7.4.19   autoedit   91
+                 7.4.20   beep   92
+                 7.4.21   beep_new   92
+                 7.4.22   bounce   92
+                 7.4.23   bounce_delivered   92
+                 7.4.24   braille_friendly   92
+                 7.4.25   certificate_file   92
+                 7.4.26   charset   93
+                 7.4.27   check_new   93
+                 7.4.28   collapse_unread   93
+                 7.4.29   compose_format   93
+                 7.4.30   config_charset   94
+                 7.4.31   confirmappend   94
+                 7.4.32   confirmcreate   94
+                 7.4.33   connect_timeout   94
+                 7.4.34   content_type   95
+                 7.4.35   copy   95
+                 7.4.36   crypt_autoencrypt   95
+                 7.4.37   crypt_autopgp   95
+                 7.4.38   crypt_autosign   95
+                 7.4.39   crypt_autosmime   96
+                 7.4.40   crypt_replyencrypt   96
+                 7.4.41   crypt_replysign   96
+                 7.4.42   crypt_replysignencrypted   96
+                 7.4.43   crypt_timestamp   96
+                 7.4.44   crypt_use_gpgme   97
+                 7.4.45   crypt_verify_sig   97
+                 7.4.46   date_format   97
+                 7.4.47   default_hook   97
+                 7.4.48   delete   98
+                 7.4.49   delete_space   98
+                 7.4.50   delete_untag   98
+                 7.4.51   digest_collapse   98
+                 7.4.52   display_filter   98
+                 7.4.53   dotlock_program   99
+                 7.4.54   dsn_notify   99
+                 7.4.55   dsn_return   99
+                 7.4.56   duplicate_threads   99
+                 7.4.57   edit_headers   100
+                 7.4.58   editor   100
+                 7.4.59   encode_from   100
 
                                               iv
 
-                 7.4.60   escape   100
-                 7.4.61   fast_reply   100
-                 7.4.62   fcc_attach   100
-                 7.4.63   fcc_clear   101
-                 7.4.64   file_charset   101
-                 7.4.65   folder   101
-                 7.4.66   folder_format   101
-                 7.4.67   followup_to   102
-                 7.4.68   force_buffy_check   103
-                 7.4.69   force_name   103
-                 7.4.70   forward_decode   103
-                 7.4.71   forward_decrypt   103
-                 7.4.72   forward_edit   103
-                 7.4.73   forward_format   104
-                 7.4.74   forward_quote   104
-                 7.4.75   from   104
-                 7.4.76   gecos_mask   104
-                 7.4.77   hdrs   105
-                 7.4.78   header   105
-                 7.4.79   header_cache   105
-                 7.4.80   header_cache_compress   105
-                 7.4.81   help   105
-                 7.4.82   hidden_host   106
-                 7.4.83   hide_limited   106
-                 7.4.84   hide_missing   106
-                 7.4.85   hide_thread_subject   106
-                 7.4.86   hide_top_limited   106
-                 7.4.87   hide_top_missing   107
-                 7.4.88   history   107
-                 7.4.89   honor_followup_to   107
-                 7.4.90   hostname   107
-                 7.4.91   ignore_list_reply_to   107
-                 7.4.92   imap_authenticators   108
-                 7.4.93   imap_check_subscribed   108
-                 7.4.94   imap_delim_chars   108
-                 7.4.95   imap_headers   108
-                 7.4.96   imap_home_namespace   109
-                 7.4.97   imap_keepalive   109
-                 7.4.98   imap_list_subscribed   109
-                 7.4.99   imap_login   110
-                 7.4.100  imap_mail_check   110
-                 7.4.101  imap_pass   110
-                 7.4.102  imap_passive   110
-                 7.4.103  imap_peek   110
-                 7.4.104  imap_reconnect   111
-                 7.4.105  imap_servernoise   111
-                 7.4.106  imap_user   111
-                 7.4.107  implicit_autoview   111
-                 7.4.108  include   112
-                 7.4.109  include_onlyfirst   112
-                 7.4.110  indent_string   112
-                 7.4.111  index_format   112
-                 7.4.112  ispell   115
+                 7.4.60   entropy_file   100
+                 7.4.61   envelope_from   101
+                 7.4.62   escape   101
+                 7.4.63   fast_reply   101
+                 7.4.64   fcc_attach   101
+                 7.4.65   fcc_clear   101
+                 7.4.66   file_charset   101
+                 7.4.67   folder   102
+                 7.4.68   folder_format   102
+                 7.4.69   followup_to   103
+                 7.4.70   force_buffy_check   103
+                 7.4.71   force_name   103
+                 7.4.72   forward_decode   104
+                 7.4.73   forward_decrypt   104
+                 7.4.74   forward_edit   104
+                 7.4.75   forward_format   104
+                 7.4.76   forward_quote   104
+                 7.4.77   from   105
+                 7.4.78   gecos_mask   105
+                 7.4.79   hdrs   105
+                 7.4.80   header   105
+                 7.4.81   header_cache   106
+                 7.4.82   header_cache_compress   106
+                 7.4.83   help   106
+                 7.4.84   hidden_host   106
+                 7.4.85   hide_limited   107
+                 7.4.86   hide_missing   107
+                 7.4.87   hide_thread_subject   107
+                 7.4.88   hide_top_limited   107
+                 7.4.89   hide_top_missing   107
+                 7.4.90   history   107
+                 7.4.91   honor_followup_to   108
+                 7.4.92   hostname   108
+                 7.4.93   ignore_list_reply_to   108
+                 7.4.94   imap_authenticators   108
+                 7.4.95   imap_check_subscribed   109
+                 7.4.96   imap_delim_chars   109
+                 7.4.97   imap_headers   109
+                 7.4.98   imap_home_namespace   109
+                 7.4.99   imap_keepalive   110
+                 7.4.100  imap_list_subscribed   110
+                 7.4.101  imap_login   110
+                 7.4.102  imap_mail_check   110
+                 7.4.103  imap_pass   111
+                 7.4.104  imap_passive   111
+                 7.4.105  imap_peek   111
+                 7.4.106  imap_reconnect   111
+                 7.4.107  imap_servernoise   112
+                 7.4.108  imap_user   112
+                 7.4.109  implicit_autoview   112
+                 7.4.110  include   112
+                 7.4.111  include_onlyfirst   112
+                 7.4.112  indent_string   113
 
                                               v
 
-                 7.4.113  keep_flagged   115
-                 7.4.114  list_reply   115
-                 7.4.115  locale   115
-                 7.4.116  mail_check   116
-                 7.4.117  mailcap_path   116
-                 7.4.118  mailcap_sanitize   116
-                 7.4.119  maildir_header_cache_verify   116
-                 7.4.120  maildir_trash   116
-                 7.4.121  mark_old   117
-                 7.4.122  markers   117
-                 7.4.123  mask   117
-                 7.4.124  max_display_recips   117
-                 7.4.125  max_line_length   117
-                 7.4.126  mbox   118
-                 7.4.127  mbox_type   118
-                 7.4.128  menu_context   118
-                 7.4.129  menu_move_off   118
-                 7.4.130  menu_scroll   118
-                 7.4.131  message_format   119
-                 7.4.132  meta_key   119
-                 7.4.133  metoo   119
-                 7.4.134  mh_purge   119
-                 7.4.135  mh_seq_flagged   119
-                 7.4.136  mh_seq_replied   119
-                 7.4.137  mh_seq_unseen   120
-                 7.4.138  mime_forward   120
-                 7.4.139  mime_forward_decode   120
-                 7.4.140  mime_forward_rest   120
-                 7.4.141  mix_entry_format   120
-                 7.4.142  mixmaster   121
-                 7.4.143  move   121
-                 7.4.144  msgid_format   121
-                 7.4.145  narrow_tree   122
-                 7.4.146  nntp_ask_followup_to   122
-                 7.4.147  nntp_ask_x_comment_to   123
-                 7.4.148  nntp_cache_dir   123
-                 7.4.149  nntp_catchup   123
-                 7.4.150  nntp_context   123
-                 7.4.151  nntp_followup_to_poster   124
-                 7.4.152  nntp_group_index_format   124
-                 7.4.153  nntp_host   124
-                 7.4.154  nntp_inews   125
-                 7.4.155  nntp_load_description   125
-                 7.4.156  nntp_mail_check   125
-                 7.4.157  nntp_mime_subject   125
-                 7.4.158  nntp_newsrc   126
-                 7.4.159  nntp_pass   126
-                 7.4.160  nntp_post_moderated   126
-                 7.4.161  nntp_reconnect   127
-                 7.4.162  nntp_save_unsubscribed   127
-                 7.4.163  nntp_show_new_news   127
-                 7.4.164  nntp_show_only_unread   127
-                 7.4.165  nntp_user   127
+                 7.4.113  index_format   113
+                 7.4.114  ispell   115
+                 7.4.115  keep_flagged   116
+                 7.4.116  list_reply   116
+                 7.4.117  locale   116
+                 7.4.118  mail_check   116
+                 7.4.119  mailcap_path   116
+                 7.4.120  mailcap_sanitize   117
+                 7.4.121  maildir_header_cache_verify   117
+                 7.4.122  maildir_trash   117
+                 7.4.123  mark_old   117
+                 7.4.124  markers   118
+                 7.4.125  mask   118
+                 7.4.126  max_display_recips   118
+                 7.4.127  max_line_length   118
+                 7.4.128  mbox   118
+                 7.4.129  mbox_type   118
+                 7.4.130  menu_context   119
+                 7.4.131  menu_move_off   119
+                 7.4.132  menu_scroll   119
+                 7.4.133  message_format   119
+                 7.4.134  meta_key   119
+                 7.4.135  metoo   120
+                 7.4.136  mh_purge   120
+                 7.4.137  mh_seq_flagged   120
+                 7.4.138  mh_seq_replied   120
+                 7.4.139  mh_seq_unseen   120
+                 7.4.140  mime_forward   120
+                 7.4.141  mime_forward_decode   121
+                 7.4.142  mime_forward_rest   121
+                 7.4.143  mix_entry_format   121
+                 7.4.144  mixmaster   122
+                 7.4.145  move   122
+                 7.4.146  msgid_format   122
+                 7.4.147  narrow_tree   123
+                 7.4.148  nntp_ask_followup_to   123
+                 7.4.149  nntp_ask_x_comment_to   123
+                 7.4.150  nntp_cache_dir   124
+                 7.4.151  nntp_catchup   124
+                 7.4.152  nntp_context   124
+                 7.4.153  nntp_followup_to_poster   124
+                 7.4.154  nntp_group_index_format   125
+                 7.4.155  nntp_host   125
+                 7.4.156  nntp_inews   125
+                 7.4.157  nntp_load_description   126
+                 7.4.158  nntp_mail_check   126
+                 7.4.159  nntp_mime_subject   126
+                 7.4.160  nntp_newsrc   126
+                 7.4.161  nntp_pass   127
+                 7.4.162  nntp_post_moderated   127
+                 7.4.163  nntp_reconnect   127
+                 7.4.164  nntp_save_unsubscribed   127
+                 7.4.165  nntp_show_new_news   128
 
                                               vi
 
-                 7.4.166  nntp_x_comment_to   128
-                 7.4.167  operating_system   128
-                 7.4.168  pager   128
-                 7.4.169  pager_context   128
-                 7.4.170  pager_format   129
-                 7.4.171  pager_index_lines   129
-                 7.4.172  pager_stop   129
-                 7.4.173  pgp_auto_decode   129
-                 7.4.174  pgp_autoinline   129
-                 7.4.175  pgp_check_exit   130
-                 7.4.176  pgp_clearsign_command   130
-                 7.4.177  pgp_decode_command   130
-                 7.4.178  pgp_decrypt_command   131
-                 7.4.179  pgp_encrypt_only_command   131
-                 7.4.180  pgp_encrypt_sign_command   131
-                 7.4.181  pgp_entry_format   131
-                 7.4.182  pgp_export_command   132
-                 7.4.183  pgp_getkeys_command   132
-                 7.4.184  pgp_good_sign   132
-                 7.4.185  pgp_ignore_subkeys   132
-                 7.4.186  pgp_import_command   133
-                 7.4.187  pgp_list_pubring_command   133
-                 7.4.188  pgp_list_secring_command   133
-                 7.4.189  pgp_long_ids   133
-                 7.4.190  pgp_mime_auto   133
-                 7.4.191  pgp_replyinline   134
-                 7.4.192  pgp_retainable_sigs   134
-                 7.4.193  pgp_show_unusable   134
-                 7.4.194  pgp_sign_as   134
-                 7.4.195  pgp_sign_command   135
-                 7.4.196  pgp_sort_keys   135
-                 7.4.197  pgp_strict_enc   135
-                 7.4.198  pgp_timeout   135
-                 7.4.199  pgp_use_gpg_agent   136
-                 7.4.200  pgp_verify_command   136
-                 7.4.201  pgp_verify_key_command   136
-                 7.4.202  pipe_decode   136
-                 7.4.203  pipe_sep   136
-                 7.4.204  pipe_split   136
-                 7.4.205  pop_auth_try_all   137
-                 7.4.206  pop_authenticators   137
-                 7.4.207  pop_delete   137
-                 7.4.208  pop_host   137
-                 7.4.209  pop_last   138
-                 7.4.210  pop_mail_check   138
-                 7.4.211  pop_pass   138
-                 7.4.212  pop_reconnect   138
-                 7.4.213  pop_user   139
-                 7.4.214  post_indent_string   139
-                 7.4.215  postpone   139
-                 7.4.216  postponed   139
-                 7.4.217  preconnect   139
-                 7.4.218  print   140
+                 7.4.166  nntp_show_only_unread   128
+                 7.4.167  nntp_user   128
+                 7.4.168  nntp_x_comment_to   128
+                 7.4.169  operating_system   128
+                 7.4.170  pager   129
+                 7.4.171  pager_context   129
+                 7.4.172  pager_format   129
+                 7.4.173  pager_index_lines   129
+                 7.4.174  pager_stop   130
+                 7.4.175  pgp_auto_decode   130
+                 7.4.176  pgp_autoinline   130
+                 7.4.177  pgp_check_exit   130
+                 7.4.178  pgp_clearsign_command   131
+                 7.4.179  pgp_decode_command   131
+                 7.4.180  pgp_decrypt_command   131
+                 7.4.181  pgp_encrypt_only_command   132
+                 7.4.182  pgp_encrypt_sign_command   132
+                 7.4.183  pgp_entry_format   132
+                 7.4.184  pgp_export_command   133
+                 7.4.185  pgp_getkeys_command   133
+                 7.4.186  pgp_good_sign   133
+                 7.4.187  pgp_ignore_subkeys   133
+                 7.4.188  pgp_import_command   133
+                 7.4.189  pgp_list_pubring_command   133
+                 7.4.190  pgp_list_secring_command   134
+                 7.4.191  pgp_long_ids   134
+                 7.4.192  pgp_mime_auto   134
+                 7.4.193  pgp_replyinline   134
+                 7.4.194  pgp_retainable_sigs   135
+                 7.4.195  pgp_show_unusable   135
+                 7.4.196  pgp_sign_as   135
+                 7.4.197  pgp_sign_command   135
+                 7.4.198  pgp_sort_keys   135
+                 7.4.199  pgp_strict_enc   136
+                 7.4.200  pgp_timeout   136
+                 7.4.201  pgp_use_gpg_agent   136
+                 7.4.202  pgp_verify_command   136
+                 7.4.203  pgp_verify_key_command   137
+                 7.4.204  pipe_decode   137
+                 7.4.205  pipe_sep   137
+                 7.4.206  pipe_split   137
+                 7.4.207  pop_auth_try_all   137
+                 7.4.208  pop_authenticators   138
+                 7.4.209  pop_delete   138
+                 7.4.210  pop_host   138
+                 7.4.211  pop_last   138
+                 7.4.212  pop_mail_check   139
+                 7.4.213  pop_pass   139
+                 7.4.214  pop_reconnect   139
+                 7.4.215  pop_user   139
+                 7.4.216  post_indent_string   139
+                 7.4.217  postpone   140
+                 7.4.218  postponed   140
 
                                              vii
 
-                 7.4.219  print_command   140
-                 7.4.220  print_decode   140
-                 7.4.221  print_split   140
-                 7.4.222  prompt_after   141
-                 7.4.223  query_command   141
-                 7.4.224  quit   141
-                 7.4.225  quote_empty   141
-                 7.4.226  quote_quoted   141
-                 7.4.227  quote_regexp   142
-                 7.4.228  read_inc   142
-                 7.4.229  read_only   142
-                 7.4.230  realname   142
-                 7.4.231  recall   142
-                 7.4.232  record   143
-                 7.4.233  reply_regexp   143
-                 7.4.234  reply_self   143
-                 7.4.235  reply_to   143
-                 7.4.236  resolve   144
-                 7.4.237  reverse_alias   144
-                 7.4.238  reverse_name   144
-                 7.4.239  reverse_realname   144
-                 7.4.240  rfc2047_parameters   145
-                 7.4.241  save_address   145
-                 7.4.242  save_empty   145
-                 7.4.243  save_name   145
-                 7.4.244  score   146
-                 7.4.245  score_threshold_delete   146
-                 7.4.246  score_threshold_flag   146
-                 7.4.247  score_threshold_read   146
-                 7.4.248  send_charset   146
-                 7.4.249  sendmail   147
-                 7.4.250  sendmail_wait   147
-                 7.4.251  shell   147
-                 7.4.252  sidebar_boundary   148
-                 7.4.253  sidebar_delim   148
-                 7.4.254  sidebar_newmail_only   148
-                 7.4.255  sidebar_number_format   148
-                 7.4.256  sidebar_shorten_hierarchy   149
-                 7.4.257  sidebar_visible   149
-                 7.4.258  sidebar_width   149
-                 7.4.259  sig_dashes   149
-                 7.4.260  sig_on_top   150
-                 7.4.261  signature   150
-                 7.4.262  signoff_string   150
-                 7.4.263  simple_search   150
-                 7.4.264  sleep_time   151
-                 7.4.265  smart_wrap   151
-                 7.4.266  smileys   151
-                 7.4.267  smime_ask_cert_label   151
-                 7.4.268  smime_ca_location   151
-                 7.4.269  smime_certificates   151
-                 7.4.270  smime_decrypt_command   152
-                 7.4.271  smime_decrypt_use_default_key   152
+                 7.4.219  preconnect   140
+                 7.4.220  print   140
+                 7.4.221  print_command   141
+                 7.4.222  print_decode   141
+                 7.4.223  print_split   141
+                 7.4.224  prompt_after   141
+                 7.4.225  query_command   141
+                 7.4.226  quit   142
+                 7.4.227  quote_empty   142
+                 7.4.228  quote_quoted   142
+                 7.4.229  quote_regexp   142
+                 7.4.230  read_inc   142
+                 7.4.231  read_only   143
+                 7.4.232  realname   143
+                 7.4.233  recall   143
+                 7.4.234  record   143
+                 7.4.235  reply_regexp   144
+                 7.4.236  reply_self   144
+                 7.4.237  reply_to   144
+                 7.4.238  resolve   144
+                 7.4.239  reverse_alias   144
+                 7.4.240  reverse_name   145
+                 7.4.241  reverse_realname   145
+                 7.4.242  rfc2047_parameters   145
+                 7.4.243  save_address   146
+                 7.4.244  save_empty   146
+                 7.4.245  save_name   146
+                 7.4.246  score   146
+                 7.4.247  score_threshold_delete   147
+                 7.4.248  score_threshold_flag   147
+                 7.4.249  score_threshold_read   147
+                 7.4.250  send_charset   147
+                 7.4.251  sendmail   147
+                 7.4.252  sendmail_wait   148
+                 7.4.253  shell   148
+                 7.4.254  sidebar_boundary   148
+                 7.4.255  sidebar_delim   148
+                 7.4.256  sidebar_newmail_only   149
+                 7.4.257  sidebar_number_format   149
+                 7.4.258  sidebar_shorten_hierarchy   149
+                 7.4.259  sidebar_visible   150
+                 7.4.260  sidebar_width   150
+                 7.4.261  sig_dashes   150
+                 7.4.262  sig_on_top   150
+                 7.4.263  signature   150
+                 7.4.264  signoff_string   151
+                 7.4.265  simple_search   151
+                 7.4.266  sleep_time   151
+                 7.4.267  smart_wrap   151
+                 7.4.268  smileys   152
+                 7.4.269  smime_ask_cert_label   152
+                 7.4.270  smime_ca_location   152
+                 7.4.271  smime_certificates   152
 
                                              viii
 
-                 7.4.272  smime_default_key   153
-                 7.4.273  smime_encrypt_command   153
-                 7.4.274  smime_encrypt_with   153
-                 7.4.275  smime_get_cert_command   153
-                 7.4.276  smime_get_cert_email_command   153
-                 7.4.277  smime_get_signer_cert_command   153
-                 7.4.278  smime_import_cert_command   154
-                 7.4.279  smime_is_default   154
-                 7.4.280  smime_keys   154
-                 7.4.281  smime_pk7out_command   154
-                 7.4.282  smime_sign_command   155
-                 7.4.283  smime_sign_opaque_command   155
-                 7.4.284  smime_timeout   155
-                 7.4.285  smime_verify_command   155
-                 7.4.286  smime_verify_opaque_command   155
-                 7.4.287  smtp_envelope   155
-                 7.4.288  smtp_host   156
-                 7.4.289  smtp_pass   156
-                 7.4.290  smtp_port   156
-                 7.4.291  smtp_use_tls   156
-                 7.4.292  smtp_user   157
-                 7.4.293  sort   157
-                 7.4.294  sort_alias   157
-                 7.4.295  sort_aux   158
-                 7.4.296  sort_browser   158
-                 7.4.297  sort_re   158
-                 7.4.298  spam_separator   159
-                 7.4.299  spoolfile   159
-                 7.4.300  ssl_ca_certificates_file   159
-                 7.4.301  ssl_client_cert   159
-                 7.4.302  ssl_force_tls   160
-                 7.4.303  ssl_min_dh_prime_bits   160
-                 7.4.304  ssl_starttls   160
-                 7.4.305  ssl_use_sslv2   160
-                 7.4.306  ssl_use_sslv3   160
-                 7.4.307  ssl_use_tlsv1   161
-                 7.4.308  ssl_usesystemcerts   161
-                 7.4.309  status_chars   161
-                 7.4.310  status_format   161
-                 7.4.311  status_on_top   164
-                 7.4.312  strict_mailto   164
-                 7.4.313  strict_mime   164
-                 7.4.314  strict_threads   164
-                 7.4.315  strip_was   164
-                 7.4.316  strip_was_regex   165
-                 7.4.317  stuff_quoted   165
-                 7.4.318  suspend   165
-                 7.4.319  text_flowed   165
-                 7.4.320  thorough_search   165
-                 7.4.321  thread_received   166
-                 7.4.322  tilde   166
-                 7.4.323  timeout   166
-                 7.4.324  tmpdir   166
+                 7.4.272  smime_decrypt_command   152
+                 7.4.273  smime_decrypt_use_default_key   153
+                 7.4.274  smime_default_key   153
+                 7.4.275  smime_encrypt_command   153
+                 7.4.276  smime_encrypt_with   154
+                 7.4.277  smime_get_cert_command   154
+                 7.4.278  smime_get_cert_email_command   154
+                 7.4.279  smime_get_signer_cert_command   154
+                 7.4.280  smime_import_cert_command   154
+                 7.4.281  smime_is_default   154
+                 7.4.282  smime_keys   155
+                 7.4.283  smime_pk7out_command   155
+                 7.4.284  smime_sign_command   155
+                 7.4.285  smime_sign_opaque_command   155
+                 7.4.286  smime_timeout   156
+                 7.4.287  smime_verify_command   156
+                 7.4.288  smime_verify_opaque_command   156
+                 7.4.289  smtp_envelope   156
+                 7.4.290  smtp_host   156
+                 7.4.291  smtp_pass   157
+                 7.4.292  smtp_port   157
+                 7.4.293  smtp_use_tls   157
+                 7.4.294  smtp_user   157
+                 7.4.295  sort   158
+                 7.4.296  sort_alias   158
+                 7.4.297  sort_aux   158
+                 7.4.298  sort_browser   159
+                 7.4.299  sort_re   159
+                 7.4.300  spam_separator   159
+                 7.4.301  spoolfile   160
+                 7.4.302  ssl_ca_certificates_file   160
+                 7.4.303  ssl_client_cert   160
+                 7.4.304  ssl_force_tls   160
+                 7.4.305  ssl_min_dh_prime_bits   160
+                 7.4.306  ssl_starttls   161
+                 7.4.307  ssl_use_sslv2   161
+                 7.4.308  ssl_use_sslv3   161
+                 7.4.309  ssl_use_tlsv1   161
+                 7.4.310  ssl_usesystemcerts   161
+                 7.4.311  status_chars   162
+                 7.4.312  status_format   162
+                 7.4.313  status_on_top   164
+                 7.4.314  strict_mailto   164
+                 7.4.315  strict_mime   165
+                 7.4.316  strict_threads   165
+                 7.4.317  strip_was   165
+                 7.4.318  strip_was_regex   165
+                 7.4.319  stuff_quoted   166
+                 7.4.320  suspend   166
+                 7.4.321  text_flowed   166
+                 7.4.322  thorough_search   166
+                 7.4.323  thread_received   166
+                 7.4.324  tilde   167
 
                                               ix
 
-                 7.4.325  to_chars   166
-                 7.4.326  trash   167
-                 7.4.327  tunnel   167
-                 7.4.328  umask   167
-                 7.4.329  uncollapse_jump   167
-                 7.4.330  use_8bitmime   168
-                 7.4.331  use_domain   168
-                 7.4.332  use_from   168
-                 7.4.333  use_idn   168
-                 7.4.334  use_ipv6   168
-                 7.4.335  user_agent   169
-                 7.4.336  visual   169
-                 7.4.337  wait_key   169
-                 7.4.338  weed   169
-                 7.4.339  wrap_search   169
-                 7.4.340  wrapmargin   170
-                 7.4.341  write_bcc   170
-                 7.4.342  write_inc   170
-                 7.4.343  xterm_icon   170
-                 7.4.344  xterm_leave   170
-                 7.4.345  xterm_set_titles   171
-                 7.4.346  xterm_title   171
-           7.5   Functions ....................................................... 171
-                 7.5.1    generic   171
-                 7.5.2    index   172
-                 7.5.3    pager   174
-                 7.5.4    alias   176
-                 7.5.5    query   176
-                 7.5.6    attach   176
-                 7.5.7    compose   177
-                 7.5.8    postpone   178
-                 7.5.9    browser   178
-                 7.5.10   pgp   179
-                 7.5.11   editor   179
-
-       8.  Miscellany ............................................................ 179
-           8.1   Acknowledgments ................................................. 180
-           8.2   About this document ............................................. 182
+                 7.4.325  timeout   167
+                 7.4.326  tmpdir   167
+                 7.4.327  to_chars   167
+                 7.4.328  trash   167
+                 7.4.329  tunnel   168
+                 7.4.330  umask   168
+                 7.4.331  uncollapse_jump   168
+                 7.4.332  use_8bitmime   168
+                 7.4.333  use_domain   168
+                 7.4.334  use_from   169
+                 7.4.335  use_idn   169
+                 7.4.336  use_ipv6   169
+                 7.4.337  user_agent   169
+                 7.4.338  visual   169
+                 7.4.339  wait_key   170
+                 7.4.340  weed   170
+                 7.4.341  wrap_search   170
+                 7.4.342  wrapmargin   170
+                 7.4.343  write_bcc   170
+                 7.4.344  write_inc   171
+                 7.4.345  xterm_icon   171
+                 7.4.346  xterm_leave   171
+                 7.4.347  xterm_set_titles   171
+                 7.4.348  xterm_title   171
+           7.5   Functions ....................................................... 172
+                 7.5.1    generic   172
+                 7.5.2    index   173
+                 7.5.3    pager   175
+                 7.5.4    alias   177
+                 7.5.5    query   177
+                 7.5.6    attach   177
+                 7.5.7    compose   178
+                 7.5.8    postpone   179
+                 7.5.9    browser   179
+                 7.5.10   pgp   180
+                 7.5.11   editor   180
+
+       8.  Miscellany ............................................................ 180
+           8.1   Acknowledgments ................................................. 181
+           8.2   About this document ............................................. 183
 
                                               x
 
index f6894b3..3b26aa9 100644 (file)
--- a/globals.h
+++ b/globals.h
@@ -83,6 +83,7 @@ WHERE char *MhUnseen;
 WHERE char *MsgFmt;
 WHERE char *MsgIdFormat;
 
+WHERE rx_t AttachRemindRegexp;
 WHERE rx_t Mask;
 WHERE rx_t QuoteRegexp;
 WHERE rx_t ReplyRegexp;
diff --git a/init.c b/init.c
index 1f5d365..523a10d 100644 (file)
--- a/init.c
+++ b/init.c
 #include <errno.h>
 #include <sys/wait.h>
 
+/*
+ * prototypes
+ */
+static int mutt_option_index (char*);
+static const struct mapping_t* get_sortmap (int idx);
+
 /* for synonym warning reports: synonym found during parsing */
 typedef struct {
   char* f;      /* file */
@@ -68,6 +74,7 @@ static int CurRCLine = 0;
 static int check_dsn_return (const char*);
 static int check_dsn_notify (const char*);
 
+/* variable <-> sanity check function mappings */
 static struct {
   const char* name;
   int (*check) (const char*);
@@ -81,6 +88,138 @@ static struct {
   { NULL,         NULL }
 };
 
+/* protos for config type handles */
+static void bool_to_string  (char* dst, size_t dstlen, int idx);
+static void num_to_string   (char* dst, size_t dstlen, int idx);
+static void str_to_string   (char* dst, size_t dstlen, int idx);
+static void quad_to_string  (char* dst, size_t dstlen, int idx);
+static void sort_to_string  (char* dst, size_t dstlen, int idx);
+static void rx_to_string    (char* dst, size_t dstlen, int idx);
+static void magic_to_string (char* dst, size_t dstlen, int idx);
+static void syn_to_string   (char* dst, size_t dstlen, int idx);
+static void addr_to_string  (char* dst, size_t dstlen, int idx);
+
+static struct {
+  unsigned short type;
+  void (*opt_to_string) (char* dst, size_t dstlen, int idx);
+} FuncTable[] = {
+  { 0,          NULL            }, /* there's no DT_ type with 0 */
+  { DT_BOOL,    bool_to_string  },
+  { DT_NUM,     num_to_string   },
+  { DT_STR,     str_to_string   },
+  { DT_PATH,    str_to_string   },
+  { DT_QUAD,    quad_to_string  },
+  { DT_SORT,    sort_to_string  },
+  { DT_RX,      rx_to_string    },
+  { DT_MAGIC,   magic_to_string },
+  { DT_SYN,     syn_to_string   },
+  { DT_ADDR,    addr_to_string  }
+};
+
+static void bool_to_string (char* dst, size_t dstlen, int idx) {
+  snprintf (dst, dstlen, "%s=%s", MuttVars[idx].option,
+            MuttVars[idx].data ? "yes" : "no");
+}
+
+static void num_to_string (char* dst, size_t dstlen, int idx) {
+  /* XXX puke */
+  const char* fmt = (idx == mutt_option_index ("umask")) ? "%s=%04o" : "%s=%d";
+  snprintf (dst, dstlen, fmt, MuttVars[idx].option,
+            *((short*) MuttVars[idx].data));
+}
+
+static void str_to_string (char* dst, size_t dstlen, int idx) {
+  snprintf (dst, dstlen, "%s=\"%s\"", MuttVars[idx].option,
+            NONULL (*((char**) MuttVars[idx].data)));
+}
+
+static void quad_to_string (char* dst, size_t dstlen, int idx) {
+  char *vals[] = { "no", "yes", "ask-no", "ask-yes" };
+  snprintf (dst, dstlen, "%s=%s", MuttVars[idx].option,
+            vals[quadoption (MuttVars[idx].data)]);
+}
+
+static void sort_to_string (char* dst, size_t dstlen, int idx) {
+  const struct mapping_t *map = get_sortmap (idx);
+  char* p = NULL;
+
+  if (!map) {
+    snprintf (dst, sizeof (dst), "%s=unknown", MuttVars[idx].option);
+    return;
+  }
+
+  p = mutt_getnamebyvalue (*((short *) MuttVars[idx].data) & SORT_MASK,
+                           map);
+
+  snprintf (dst, dstlen, "%s=%s%s%s", MuttVars[idx].option,
+            (*((short *) MuttVars[idx].data) & SORT_REVERSE) ?
+            "reverse-" : "",
+            (*((short *) MuttVars[idx].data) & SORT_LAST) ? "last-" :
+            "", NONULL (p));
+}
+
+static void rx_to_string (char* dst, size_t dstlen, int idx) {
+  rx_t* p = (rx_t*) MuttVars[idx].data;
+  snprintf (dst, dstlen, "%s=\"%s\"", MuttVars[idx].option,
+            NONULL (p->pattern));
+}
+
+static void magic_to_string (char* dst, size_t dstlen, int idx) {
+  const char* s = NULL;
+  switch (MuttVars[idx].data) {
+    case M_MBOX:    s = "mbox"; break;
+    case M_MMDF:    s = "MMDF"; break;
+    case M_MH:      s = "MH"; break;
+    case M_MAILDIR: s = "Maildir"; break;
+    default:        s = "unknown"; break;
+  }
+  snprintf (dst, dstlen, "%s=%s", MuttVars[idx].option, s);
+}
+
+static void syn_to_string (char* dst, size_t dstlen, int idx) {
+  int i = mutt_option_index ((char*) MuttVars[idx].data);
+  FuncTable[MuttVars[i].type].opt_to_string (dst, dstlen, i);
+}
+
+static void addr_to_string (char* dst, size_t dstlen, int idx) {
+  char s[STRING];
+  s[0] = '\0';
+  rfc822_write_address (s, sizeof (s), *((ADDRESS**) MuttVars[idx].data), 0);
+  snprintf (dst, dstlen, "%s=\"%s\"", MuttVars[idx].option, NONULL (s));
+}
+
+int mutt_option_value (const char* val, char* dst, size_t dstlen) {
+  int i = mutt_option_index ((char*) val);
+  char* tmp = NULL, *t = NULL;
+  size_t l = 0;
+
+  if (i < 0) {
+    debug_print (1, ("var '%s' not found, i = %d\n", val, i));
+    *dst = '\0';
+    return (0);
+  }
+  tmp = mem_malloc (dstlen+1);
+  FuncTable[DTYPE (MuttVars[i].type)].opt_to_string (tmp, dstlen, i);
+
+  /* as we get things of type $var=value and don't want to bloat the
+   * above "just" for expansion, we do the stripping here */
+  debug_print (1, ("orig == '%s'\n", tmp));
+  t = strchr (tmp, '=');
+  t++;
+  l = str_len (t);
+  if (l >= 2) {
+    if (t[l-1] == '"' && *t == '"') {
+      t[l-1] = '\0';
+      t++;
+    }
+  }
+  memcpy (dst, t, l+1);
+  mem_free (&tmp);
+  debug_print (1, ("stripped == '%s'\n", dst));
+
+  return (1);
+}
+
 /* for synonym warning reports: adds synonym to end of list */
 static void syn_add (int n, int o) {
   syn_t* tmp = mem_malloc (sizeof (syn_t));
@@ -142,7 +281,7 @@ int query_quadoption (int opt, const char *prompt)
 
 /* given the variable ``s'', return the index into the rc_vars array which
    matches, or -1 if the variable is not found.  */
-int mutt_option_index (char *s)
+static int mutt_option_index (char *s)
 {
   int i;
 
@@ -1038,6 +1177,30 @@ static int check_special (const char* name, const char* val) {
   return (1);
 }
 
+static const struct mapping_t* get_sortmap (int idx) {
+  const struct mapping_t* map = NULL;
+
+  switch (MuttVars[idx].type & DT_SUBTYPE_MASK) {
+  case DT_SORT_ALIAS:
+    map = SortAliasMethods;
+    break;
+  case DT_SORT_BROWSER:
+    map = SortBrowserMethods;
+    break;
+  case DT_SORT_KEYS:
+    if ((WithCrypto & APPLICATION_PGP))
+      map = SortKeyMethods;
+    break;
+  case DT_SORT_AUX:
+    map = SortAuxMethods;
+    break;
+  default:
+    map = SortMethods;
+    break;
+  }
+  return (map);
+}
+
 static int parse_set (BUFFER * tmp, BUFFER * s, unsigned long data,
                       BUFFER * err)
 {
@@ -1117,8 +1280,7 @@ static int parse_set (BUFFER * tmp, BUFFER * s, unsigned long data,
       }
 
       if (query) {
-        snprintf (err->data, err->dsize, option (MuttVars[idx].data)
-                  ? _("%s is set") : _("%s is unset"), tmp->data);
+        bool_to_string (err->data, err->dsize, idx);
         return 0;
       }
 
@@ -1139,21 +1301,7 @@ static int parse_set (BUFFER * tmp, BUFFER * s, unsigned long data,
           mem_free ((void *) MuttVars[idx].data);
       }
       else if (query || *s->dptr != '=') {
-        char _tmp[STRING];
-        char *val = NULL;
-
-        if (DTYPE (MuttVars[idx].type) == DT_ADDR) {
-          _tmp[0] = '\0';
-          rfc822_write_address (_tmp, sizeof (_tmp),
-                                *((ADDRESS **) MuttVars[idx].data), 0);
-          val = _tmp;
-        }
-        else
-          val = *((char **) MuttVars[idx].data);
-
-        /* user requested the value of this variable */
-        snprintf (err->data, err->dsize, "%s=\"%s\"", MuttVars[idx].option,
-                  NONULL (val));
+        FuncTable[DTYPE (MuttVars[idx].type)].opt_to_string (err->data, err->dsize, idx);
         break;
       }
       else {
@@ -1196,9 +1344,7 @@ static int parse_set (BUFFER * tmp, BUFFER * s, unsigned long data,
       int e, flags = 0;
 
       if (query || *s->dptr != '=') {
-        /* user requested the value of this variable */
-        snprintf (err->data, err->dsize, "%s=\"%s\"", MuttVars[idx].option,
-                  NONULL (ptr->pattern));
+        rx_to_string (err->data, err->dsize, idx);
         break;
       }
 
@@ -1270,25 +1416,9 @@ static int parse_set (BUFFER * tmp, BUFFER * s, unsigned long data,
       }
     }
     else if (DTYPE (MuttVars[idx].type) == DT_MAGIC) {
+
       if (query || *s->dptr != '=') {
-        switch (DefaultMagic) {
-        case M_MBOX:
-          p = "mbox";
-          break;
-        case M_MMDF:
-          p = "MMDF";
-          break;
-        case M_MH:
-          p = "MH";
-          break;
-        case M_MAILDIR:
-          p = "Maildir";
-          break;
-        default:
-          p = "unknown";
-          break;
-        }
-        snprintf (err->data, err->dsize, "%s=%s", MuttVars[idx].option, p);
+        magic_to_string (err->data, err->dsize, idx);
         break;
       }
 
@@ -1309,8 +1439,7 @@ static int parse_set (BUFFER * tmp, BUFFER * s, unsigned long data,
       char *t;
 
       if (query || *s->dptr != '=') {
-        /* user requested the value of this variable */
-        snprintf (err->data, err->dsize, "%s=%d", MuttVars[idx].option, *ptr);
+        num_to_string (err->data, err->dsize, idx);
         break;
       }
 
@@ -1339,11 +1468,9 @@ static int parse_set (BUFFER * tmp, BUFFER * s, unsigned long data,
       }
     }
     else if (DTYPE (MuttVars[idx].type) == DT_QUAD) {
-      if (query) {
-        char *vals[] = { "no", "yes", "ask-no", "ask-yes" };
 
-        snprintf (err->data, err->dsize, "%s=%s", MuttVars[idx].option,
-                  vals[quadoption (MuttVars[idx].data)]);
+      if (query) {
+        quad_to_string (err->data, err->dsize, idx);
         break;
       }
 
@@ -1376,44 +1503,19 @@ static int parse_set (BUFFER * tmp, BUFFER * s, unsigned long data,
     else if (DTYPE (MuttVars[idx].type) == DT_SORT) {
       const struct mapping_t *map = NULL;
 
-      switch (MuttVars[idx].type & DT_SUBTYPE_MASK) {
-      case DT_SORT_ALIAS:
-        map = SortAliasMethods;
-        break;
-      case DT_SORT_BROWSER:
-        map = SortBrowserMethods;
-        break;
-      case DT_SORT_KEYS:
-        if ((WithCrypto & APPLICATION_PGP))
-          map = SortKeyMethods;
-        break;
-      case DT_SORT_AUX:
-        map = SortAuxMethods;
-        break;
-      default:
-        map = SortMethods;
-        break;
+      if (query || *s->dptr != '=') {
+        sort_to_string (err->data, err->dsize, idx);
+        return 0;
       }
 
-      if (!map) {
+      /* do this here so we don't ordinarily do it twice for queries */
+      if (!(map = get_sortmap (idx))) {
         snprintf (err->data, err->dsize, _("%s: Unknown type."),
                   MuttVars[idx].option);
         r = -1;
         break;
       }
 
-      if (query || *s->dptr != '=') {
-        p =
-          mutt_getnamebyvalue (*((short *) MuttVars[idx].data) & SORT_MASK,
-                               map);
-
-        snprintf (err->data, err->dsize, "%s=%s%s%s", MuttVars[idx].option,
-                  (*((short *) MuttVars[idx].data) & SORT_REVERSE) ?
-                  "reverse-" : "",
-                  (*((short *) MuttVars[idx].data) & SORT_LAST) ? "last-" :
-                  "", p);
-        return 0;
-      }
       s->dptr++;
       mutt_extract_token (tmp, s, 0);
 
@@ -2260,20 +2362,10 @@ static int opt_cmp (const void* a, const void* b) {
 
 /* dump out the value of all the variables we have */
 int mutt_dump_variables (void) {
-  int i;
-
-  char errbuff[STRING];
-  char command[STRING];
+  int i = 0, idx = 0;
+  char outbuf[STRING];
   list2_t* tmp = NULL;
 
-  BUFFER err, token;
-
-  memset (&err, 0, sizeof (err));
-  memset (&token, 0, sizeof (token));
-
-  err.data = errbuff;
-  err.dsize = sizeof (errbuff);
-
   /* get all non-synonyms into list... */
   for (i = 0; MuttVars[i].option; i++) {
     if (MuttVars[i].type == DT_SYN)
@@ -2284,18 +2376,11 @@ int mutt_dump_variables (void) {
     /* ...and dump list sorted */
     qsort (tmp->data, tmp->length, sizeof (void*), opt_cmp);
     for (i = 0; i < tmp->length; i++) {
-      snprintf (command, sizeof (command), "set ?%s\n",
-                ((struct option_t*) tmp->data[i])->option);
-      if (mutt_parse_rc_line (command, &token, &err) == -1) {
-        printf ("%s\n", err.data);
-        mem_free (&token.data);
-        list_del (&tmp, NULL);
-        return 1;
-      }
-      printf("%s\n", err.data);
+      idx = mutt_option_index (((struct option_t*) tmp->data[i])->option);
+      FuncTable[DTYPE (MuttVars[idx].type)].opt_to_string (outbuf, sizeof (outbuf), idx);
+      printf ("%s\n", outbuf);
     }
   }
-  mem_free (&token.data);
   list_del (&tmp, NULL);
   return 0;
 }
diff --git a/init.h b/init.h
index 40c7772..1dcd56c 100644 (file)
--- a/init.h
+++ b/init.h
@@ -124,6 +124,24 @@ struct feature_t {
 
 struct option_t MuttVars[] = {
   /*++*/
+  {"abort_noattach", DT_QUAD, R_NONE, OPT_ATTACH, M_NO},
+  /*
+   ** .pp
+   ** This variable specifies whether to abort sending if no attachment
+   ** was made but the content references them, i.e. the content
+   ** matches the regular expression given in
+   ** $$$attach_remind_regexp. If a match was found and this
+   ** variable is set to \fIyes\fP, message sending will be aborted
+   ** but the mail will be send nevertheless if set to \fIno\fP.
+   **
+   ** .pp
+   ** This variable and $$$attach_remind_regexp are intended to
+   ** remind the user to attach files if the message's text
+   ** references them.
+   **
+   ** .pp
+   ** See also the $$$attach_remind_regexp variable.
+   */
   {"abort_nosubject", DT_QUAD, R_NONE, OPT_SUBJECT, M_ASKYES},
   /*
    ** .pp
@@ -271,6 +289,16 @@ struct option_t MuttVars[] = {
    ** .dt %|X .dd pad to the end of the line with character "X"
    ** .de
    */
+  {"attach_remind_regexp", DT_RX, R_NONE, UL &AttachRemindRegexp, UL "attach"},
+  /*
+   ** .pp
+   ** If this variable is non-empty, muttng will scan a message's contents
+   ** before sending for this regular expression. If it is found, it will
+   ** ask for what to do depending on the setting of $$$abort_noattach.
+   ** .pp
+   ** This variable and $$$abort_noattach are intended to remind the user
+   ** to attach files if the message's text references them.
+   */
   {"attach_sep", DT_STR, R_NONE, UL &AttachSep, UL "\n"},
   /*
    ** .pp
diff --git a/mutt.h b/mutt.h
index 2566e24..68272c3 100644 (file)
--- a/mutt.h
+++ b/mutt.h
@@ -233,6 +233,7 @@ enum {
 /* quad-option vars */
 enum {
   OPT_ABORT,
+  OPT_ATTACH,
   OPT_BOUNCE,
   OPT_COPY,
   OPT_DELETE,
index 112ea54..27f829c 100644 (file)
--- a/protos.h
+++ b/protos.h
@@ -44,13 +44,14 @@ void mutt_generate_boundary (PARAMETER **);
 void mutt_delete_parameter (const char *attribute, PARAMETER ** p);
 void mutt_set_parameter (const char *, const char *, PARAMETER **);
 
-
 FILE *mutt_open_read (const char *, pid_t *);
 
 void set_quadoption (int, int);
 int query_quadoption (int, const char *);
 int quadoption (int);
 
+int mutt_option_value (const char* val, char* dst, size_t dstlen);
+
 ADDRESS *mutt_default_from (void);
 ADDRESS *mutt_remove_duplicates (ADDRESS *);
 ADDRESS *mutt_parse_adrlist (ADDRESS *, const char *);
diff --git a/send.c b/send.c
index 5dad490..876ffff 100644 (file)
--- a/send.c
+++ b/send.c
@@ -1582,6 +1582,20 @@ int ci_send_message (int flags, /* send mode */
   if (msg->content->next)
     msg->content = mutt_make_multipart (msg->content);
 
+  if (mutt_attach_check (msg) &&
+      !msg->content->next &&
+      query_quadoption (OPT_ATTACH,
+                        _("No attachments made but indicator found in text. "
+                          "Cancel sending?")) == M_YES) {
+    if (quadoption (OPT_ATTACH) == M_YES) {
+      mutt_message _("No attachments made but indicator found in text. "
+                     "Abort sending.");
+      sleep (2);
+    }
+    mutt_message (_("Mail not sent."));
+    goto main_loop;
+  }
+
   /* 
    * Ok, we need to do it this way instead of handling all fcc stuff in
    * one place in order to avoid going to main_loop with encoded "env"