Rocco Rutte:
authorpdmef <pdmef@e385b8ad-14ed-0310-8656-cc95a2468c6d>
Wed, 7 Sep 2005 17:13:05 +0000 (17:13 +0000)
committerpdmef <pdmef@e385b8ad-14ed-0310-8656-cc95a2468c6d>
Wed, 7 Sep 2005 17:13:05 +0000 (17:13 +0000)
- merge in latest mutt changes

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

26 files changed:
ChangeLog.mutt
UPGRADING
VERSION.svn
buffer.c
curs_lib.c
curs_main.c
doc/manual.txt
doc/manual.xml.head
globals.h
imap/command.c
imap/imap.c
imap/imap.h
imap/imap_private.h
imap/message.c
imap/utf7.c
init.c
init.h
mutt.h
mutt_curses.h
mutt_sasl.c
mutt_sasl.h
mx.c
pager.c
parse.c
pgp.c
protos.h

index a1f9878..00abd47 100644 (file)
@@ -1,4 +1,75 @@
-2005-09-04 18:01:57  Zardoz@users.sourceforge.net  (brendan)
+2005-09-07 08:01:59  Brendan Cully  <brendan@kublai.com>  (brendan)
+
+       * curs_lib.c: Ensure progress bar rounds to $net_inc.
+
+       * curs_lib.c, globals.h, imap/imap.c, imap/imap_private.h,
+       imap/message.c, init.h, mutt_curses.h: Display progress meter when
+       uploading/fetching IMAP data. Closes: #1772.
+
+       * pager.c: Adjust gross hack to return to the same line in the
+       pager after an index operation so that it doesn't shoot past the
+       end of the file if there are fewer lines on return (eg when weed
+       is set).
+
+       * mx.c, pgp.c: Silence some GCC warnings about uninitialized
+       variables.
+
+       * build-release, configure.in, mutt.h: Remove international
+       vs. U.S. distribution distinction. build-release expects the
+       previous version to be x.y.zi and should be updated again for
+       1.5.12.
+
+2005-09-06 16:46:44  Brendan Cully  <brendan@kublai.com>  (brendan)
+
+       * doc/manual.xml.head: More documentation cosmetics (newlines
+       between Usage: lines).
+
+       * pager.c: Gross hack to return to the same line in the pager
+       after executing an index function. Closes: #1210.
+
+       * doc/manual.xml.head, imap/command.c, imap/imap.c, imap/imap.h,
+       init.c, mutt.h, pattern.c: Extend pattern language to do simple
+       string matches as well as regular expressions when the pattern is
+       invoked with = instead of ~. And, when possible, perform full body
+       searches on the IMAP server instead of locally, for an enormous
+       speed boost.
+
+       * imap/utf7.c, init.c, main.c, protos.h: Fix a memory leak in
+       imap_utf7_decode and do a little cleanup on shutdown.  Get a
+       high five from valgrind.
+
+       * curs_main.c, main.c: Move SASL and IMAP shutdown hooks into main
+       where they belong.
+
+       * init.c: Release pwent after extracting data from it.
+
+       * mutt_sasl.h, curs_main.c, mutt_sasl.c: Release global SASL state
+       when quitting.
+
+2005-09-05 04:22:45  Brendan Cully  <brendan@kublai.com>  (brendan)
+
+       * doc/manual.xml.head: Documentation cosmetics (add some line
+       breaks).
+
+       * init.h: Point $hide_top_limited to $hide_limited instead of
+       $hide_missing. Likewise for $hide_top_missing. Closes: #2039.
+
+       * init.h: Mention $sort_re in $strict_threads
+       documentation. Closes: #2052.
+
+       * doc/manual.xml.head: Add a push example. Closes: #1591.
+
+2005-09-04 19:46:26  Rupert Levene  <rupert@levene.dyndns.org>  (brendan)
+
+       * doc/manual.xml.head: Mention $include when describing how mutt
+       prepares message replies. Closes: #1471.                                 
+
+2005-09-04 19:28:19  Dale Woolridge  (brendan)
+
+       * pattern.c, protos.h, parse.c: Unfold message headers before
+       performing ~h search. Closes: #1865.
+
+2005-09-04 18:01:57  <Zardoz@users.sourceforge.net>  (brendan)
 
        * keymap.c: Teach keymap.c about KEY_NEXT. Closes: #1588.
 
 
        * keymap.c: Teach keymap.c about KEY_NEXT. Closes: #1588.
 
index 1fa8969..faeb179 100644 (file)
--- a/UPGRADING
+++ b/UPGRADING
@@ -10,6 +10,13 @@ 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.
 
 the necessary keywords to look them up in the manual, ChangeLog or other
 sources of information.
 
+2005-09-07:
+
+  All patterns may be prefixed with = instead of ~ to enable
+  string search instead of regular expression match.
+
+  The $net_inc variables has been added.
+
 2005-09-03:
 
   The ~u pattern has been added.
 2005-09-03:
 
   The ~u pattern has been added.
index ff5670f..b283aee 100644 (file)
@@ -1 +1 @@
-481
+482
index 68c1374..8ca84c3 100644 (file)
--- a/buffer.c
+++ b/buffer.c
@@ -115,7 +115,7 @@ int mutt_extract_token (BUFFER * dest, BUFFER * tok, int flags)
           (ch == '#' && !(flags & M_TOKEN_COMMENT)) ||
           (ch == '=' && (flags & M_TOKEN_EQUAL)) ||
           (ch == ';' && !(flags & M_TOKEN_SEMICOLON)) ||
           (ch == '#' && !(flags & M_TOKEN_COMMENT)) ||
           (ch == '=' && (flags & M_TOKEN_EQUAL)) ||
           (ch == ';' && !(flags & M_TOKEN_SEMICOLON)) ||
-          ((flags & M_TOKEN_PATTERN) && strchr ("~!|", ch)))
+          ((flags & M_TOKEN_PATTERN) && strchr ("~=!|", ch)))
         break;
     }
 
         break;
     }
 
index 13539e2..3e03810 100644 (file)
@@ -310,6 +310,30 @@ void mutt_curses_error (const char *fmt, ...)
   set_option (OPTMSGERR);
 }
 
   set_option (OPTMSGERR);
 }
 
+void mutt_progress_bar (progress_t* progress, long pos) {
+  char posstr[SHORT_STRING];
+
+  if (!pos) {
+    if (!NetInc)
+      mutt_message (progress->msg);
+    else {
+      mutt_pretty_size (progress->sizestr, sizeof (progress->sizestr),
+                        progress->size);
+      progress->pos = 0;
+    }
+  }
+
+  if (!NetInc)
+    return;
+
+  if (pos > progress->pos + (NetInc << 10)) {
+    progress->pos = pos;
+    pos = pos / (NetInc << 10) * (NetInc << 10);
+    mutt_pretty_size (posstr, sizeof (posstr), pos);
+    mutt_message ("%s %s/%s", progress->msg, posstr, progress->sizestr);
+  }
+}
+
 void mutt_curses_message (const char *fmt, ...)
 {
   char TmpErrorbuf[STRING];
 void mutt_curses_message (const char *fmt, ...)
 {
   char TmpErrorbuf[STRING];
index 39973fa..0222a91 100644 (file)
 #include "nntp.h"
 #endif
 
 #include "nntp.h"
 #endif
 
+#ifdef USE_SASL
+#include "mutt_sasl.h"
+#endif
+
 #include "lib/mem.h"
 #include "lib/intl.h"
 #include "lib/str.h"
 #include "lib/mem.h"
 #include "lib/intl.h"
 #include "lib/str.h"
@@ -2342,16 +2346,19 @@ int mutt_index_menu (void)
       break;
   }
 
       break;
   }
 
+  if (!attach_msg) {
 #ifdef USE_IMAP
   /* Close all open IMAP connections */
 #ifdef USE_IMAP
   /* Close all open IMAP connections */
-  if (!attach_msg)
     imap_logout_all ();
 #endif
 #ifdef USE_NNTP
   /* Close all open NNTP connections */
     imap_logout_all ();
 #endif
 #ifdef USE_NNTP
   /* Close all open NNTP connections */
-  if (!attach_msg)
     nntp_logout_all ();
 #endif
     nntp_logout_all ();
 #endif
+#if defined (USE_SASL) || defined (USE_SASL2)
+    mutt_sasl_done ();
+#endif
+  }
 
   mutt_menuDestroy (&menu);
   return (close);
 
   mutt_menuDestroy (&menu);
   return (close);
index dd1efa1..f4fbead 100644 (file)
@@ -1976,7 +1976,8 @@ Chapter 3. Configuration
 
 4. Defining/Using aliases
 
 
 4. Defining/Using aliases
 
-   Usage: alias key address [ , address, ... ]
+   Usage: alias key address[ ,  address, ... ]
+
 
    It's usually very cumbersome to remember or type out the address of
    someone you are communicating with. Mutt-ng allows you to create
 
    It's usually very cumbersome to remember or type out the address of
    someone you are communicating with. Mutt-ng allows you to create
@@ -2029,6 +2030,7 @@ Chapter 3. Configuration
 
    Usage: bind map key function
 
 
    Usage: bind map key function
 
+
    This command allows you to change the default key bindings (operation
    invoked when pressing a key).
 
    This command allows you to change the default key bindings (operation
    invoked when pressing a key).
 
@@ -2160,7 +2162,9 @@ Chapter 3. Configuration
 
 6. Defining aliases for character sets
 
 
 6. Defining aliases for character sets
 
-   Usage: charset-hook alias charset Usage: iconv-hook charset local-charset
+   Usage: charset-hook alias  charset
+   Usage: iconv-hook charset  local-charset
+
 
    The charset-hook command defines an alias for a character set. This is
    useful to properly display messages which are tagged with a character set
 
    The charset-hook command defines an alias for a character set. This is
    useful to properly display messages which are tagged with a character set
@@ -2174,6 +2178,7 @@ Chapter 3. Configuration
 
    Usage: folder-hook [!]regexp command
 
 
    Usage: folder-hook [!]regexp command
 
+
    It is often desirable to change settings based on which mailbox you are
    reading. The folder-hook command provides a method by which you can
    execute any configuration command. regexp is a regular expression
    It is often desirable to change settings based on which mailbox you are
    reading. The folder-hook command provides a method by which you can
    execute any configuration command. regexp is a regular expression
@@ -2199,7 +2204,8 @@ Chapter 3. Configuration
 
 8. Keyboard macros
 
 
 8. Keyboard macros
 
-   Usage: macro menu key sequence [ description ]
+   Usage: macro menu key sequence [  description ]
+
 
    Macros are useful when you would like a single key to perform a series of
    actions. When you press key in menu menu ,Mutt-ng will behave as if you
 
    Macros are useful when you would like a single key to perform a series of
    actions. When you press key in menu menu ,Mutt-ng will behave as if you
@@ -2232,8 +2238,10 @@ Chapter 3. Configuration
 
 9. Using color and mono video attributes
 
 
 9. Using color and mono video attributes
 
-   Usage: color object foreground background [ regexp ] Usage: color index
-   foreground background pattern Usage: uncolor index pattern [ pattern ... ]
+   Usage: color object foregroundbackground [  regexp]
+   Usage: color index foreground backgroundpattern
+   Usage: uncolor index pattern[ pattern ...  ]
+
 
    If your terminal supports color, you can spice up Mutt-ng by creating your
    own color scheme. To define the color of an object (type of information),
 
    If your terminal supports color, you can spice up Mutt-ng by creating your
    own color scheme. To define the color of an object (type of information),
@@ -2332,8 +2340,9 @@ Chapter 3. Configuration
    If your terminal does not support color, it is still possible change the
    video attributes through the use of the ``mono'' command:
 
    If your terminal does not support color, it is still possible change the
    video attributes through the use of the ``mono'' command:
 
-   Usage: mono <object> <attribute> [ regexp ] Usage: mono index attribute
-   pattern Usage: unmono index pattern [ pattern ... ]
+   Usage: mono <object> <attribute>[ regexp ]
+   Usage: mono index attribute pattern
+   Usage: unmono index pattern[ pattern ... ]
 
    where attribute is one of the following:
 
 
    where attribute is one of the following:
 
@@ -2349,7 +2358,8 @@ Chapter 3. Configuration
 
 10. Ignoring (weeding) unwanted message headers
 
 
 10. Ignoring (weeding) unwanted message headers
 
-   Usage: [un]ignore pattern [ pattern ... ]
+   Usage: [un]ignore pattern [  pattern... ]
+
 
    Messages often have many header fields added by automatic processing
    systems, or which may not seem useful to display on the screen. This
 
    Messages often have many header fields added by automatic processing
    systems, or which may not seem useful to display on the screen. This
@@ -2502,8 +2512,9 @@ Chapter 3. Configuration
 
 13. Mailing lists
 
 
 13. Mailing lists
 
-   Usage: [un]lists regexp [ regexp ... ] Usage: [un]subscribe regexp [
-   regexp ... ]
+   Usage: [un]lists regexp [  regexp... ]
+   Usage: [un]subscribe regexp [  regexp... ]
+
 
    Mutt-ng has a few nice features for using-lists .In order to take
    advantage of them, you must specify which addresses belong to mailing
 
    Mutt-ng has a few nice features for using-lists .In order to take
    advantage of them, you must specify which addresses belong to mailing
@@ -2548,6 +2559,7 @@ Chapter 3. Configuration
 
    Usage: mbox-hook [!]pattern mailbox
 
 
    Usage: mbox-hook [!]pattern mailbox
 
+
    This command is used to move read messages from a specified mailbox to
    adifferent mailbox automatically when you quit or change folders. pattern
    is a regular expression specifying the mailbox to treat as a ``spool''
    This command is used to move read messages from a specified mailbox to
    adifferent mailbox automatically when you quit or change folders. pattern
    is a regular expression specifying the mailbox to treat as a ``spool''
@@ -2558,7 +2570,8 @@ Chapter 3. Configuration
 
 15. Defining mailboxes which receive mail
 
 
 15. Defining mailboxes which receive mail
 
-   Usage: [un]mailboxes [!]filename [ filename ... ]
+   Usage: [un]mailboxes [!]filename[ filename ... ]
+
 
    This command specifies folders which can receive mail and which will be
    checked for new messages. By default, the main menu status bar displays
 
    This command specifies folders which can receive mail and which will be
    checked for new messages. By default, the main menu status bar displays
@@ -2588,7 +2601,9 @@ Chapter 3. Configuration
 
 16. User defined headers
 
 
 16. User defined headers
 
-   Usage: my_hdr string unmy_hdr field [ field ... ]
+   Usage: my_hdr string
+   Usage: unmy_hdr field [ field... ]
+
 
    The ``my_hdr'' command allows you to create your own header fields which
    will be added to every message you send.
 
    The ``my_hdr'' command allows you to create your own header fields which
    will be added to every message you send.
@@ -2618,7 +2633,8 @@ Chapter 3. Configuration
 
 17. Defining the order of headers when viewing messages
 
 
 17. Defining the order of headers when viewing messages
 
-   Usage: hdr_order header1 header2 header3
+   Usage: hdr_order header1header2 header3
+
 
    With this command, you can specify an order in which mutt will attempt to
    present headers to you when viewing messages.
 
    With this command, you can specify an order in which mutt will attempt to
    present headers to you when viewing messages.
@@ -2633,6 +2649,7 @@ Chapter 3. Configuration
 
    Usage: save-hook [!]pattern filename
 
 
    Usage: save-hook [!]pattern filename
 
+
    This command is used to override the default filename used when saving
    messages. filename will be used as the default filename if the message is
    From: an address matching regexp or if you are the author and the message
    This command is used to override the default filename used when saving
    messages. filename will be used as the default filename if the message is
    From: an address matching regexp or if you are the author and the message
@@ -2651,6 +2668,7 @@ Chapter 3. Configuration
 
    Usage: fcc-hook [!]pattern mailbox
 
 
    Usage: fcc-hook [!]pattern mailbox
 
+
    This command is used to save outgoing mail in a mailbox other than record.
    Mutt-ng searches the initial list of message recipients for the first
    matching regexp and uses mailbox as the default Fcc: mailbox. If no match
    This command is used to save outgoing mail in a mailbox other than record.
    Mutt-ng searches the initial list of message recipients for the first
    matching regexp and uses mailbox as the default Fcc: mailbox. If no match
@@ -2667,14 +2685,19 @@ Chapter 3. Configuration
 
    Usage: fcc-save-hook [!]pattern mailbox
 
 
    Usage: fcc-save-hook [!]pattern mailbox
 
+
    This command is a shortcut, equivalent to doing both a fcc-hook and a
    save-hook with its arguments.
 
 21. Change settings based upon message recipients
 
    This command is a shortcut, equivalent to doing both a fcc-hook and a
    save-hook with its arguments.
 
 21. Change settings based upon message recipients
 
-   Usage: reply-hook [!]pattern command Usage: send-hook [!]pattern command
+   Usage: reply-hook [!]pattern command
+   Usage: send-hook [!]pattern command
    Usage: send2-hook [!]pattern command
 
    Usage: send2-hook [!]pattern command
 
+
+   v
+
    These commands can be used to execute arbitrary configuration commands
    based upon recipients of the message. pattern is a regular expression
    matching the desired address. command is executed when regexp matches
    These commands can be used to execute arbitrary configuration commands
    based upon recipients of the message. pattern is a regular expression
    matching the desired address. command is executed when regexp matches
@@ -2713,6 +2736,7 @@ Chapter 3. Configuration
 
    Usage: message-hook [!]pattern command
 
 
    Usage: message-hook [!]pattern command
 
+
    This command can be used to execute arbitrary configuration commands
    before viewing or formatting a message based upon information about the
    message. command is executed if the pattern matches the message to be
    This command can be used to execute arbitrary configuration commands
    before viewing or formatting a message based upon information about the
    message. command is executed if the pattern matches the message to be
@@ -2730,6 +2754,7 @@ Chapter 3. Configuration
 
    Usage: crypt-hook pattern keyid
 
 
    Usage: crypt-hook pattern keyid
 
+
    When encrypting messages with PGP or OpenSSL, you may want to associate a
    certain key with a given e-mail address automatically, either because the
    recipient's public key can't be deduced from the destination address, or
    When encrypting messages with PGP or OpenSSL, you may want to associate a
    certain key with a given e-mail address automatically, either because the
    recipient's public key can't be deduced from the destination address, or
@@ -2746,21 +2771,30 @@ Chapter 3. Configuration
 
    Usage: push string
 
 
    Usage: push string
 
+
    This command adds the named string to the keyboard buffer. The string may
    contain control characters, key names and function names like the sequence
    string in the macro command. You may use it to automatically run a
    This command adds the named string to the keyboard buffer. The string may
    contain control characters, key names and function names like the sequence
    string in the macro command. You may use it to automatically run a
-   sequence of commands at startup, or when entering certain folders.
+   sequence of commands at startup, or when entering certain folders. For
+   example, the following command will automatically collapse all threads
+   when entering a folder:
+
+ folder-hook . 'push <collapse-all>'
+
 
 25. Executing functions
 
 
 25. Executing functions
 
-   Usage: exec function [ function ... ]
+   Usage: exec function [  function ... ]
+
 
    This command can be used to execute any function. Functions are listed in
    the functions. ``exec function'' is equivalent to ``push <function>''.
 
 26. Message Scoring
 
 
    This command can be used to execute any function. Functions are listed in
    the functions. ``exec function'' is equivalent to ``push <function>''.
 
 26. Message Scoring
 
-   Usage: score pattern value Usage: unscore pattern [ pattern ... ]
+   Usage: score pattern value
+   Usage: unscore pattern [  pattern... ]
+
 
    In situations where you have to cope with a lot of emails, e.g. when you
    read many different mailing lists, and take part in discussions, it is
 
    In situations where you have to cope with a lot of emails, e.g. when you
    read many different mailing lists, and take part in discussions, it is
@@ -2818,7 +2852,9 @@ Chapter 3. Configuration
 
 27. Spam detection
 
 
 27. Spam detection
 
-   Usage: spam pattern format Usage: nospam pattern
+   Usage: spam pattern format
+   Usage: nospam pattern
+
 
    Mutt-ng has generalized support for external spam-scoring filters. By
    defining your spam patterns with the spam and nospam commands, you can
 
    Mutt-ng has generalized support for external spam-scoring filters. By
    defining your spam patterns with the spam and nospam commands, you can
@@ -2908,9 +2944,11 @@ Chapter 3. Configuration
 
 28. Setting variables
 
 
 28. Setting variables
 
-   Usage: set [no|inv]variable [=value] [ variable ... ] Usage: toggle
-   variable [variable ... ] Usage: unset variable [variable ... ] Usage:
-   reset variable [variable ... ]
+   Usage: set [no|inv]variable[=value] [  variable ... ]
+   Usage: toggle variable [variable... ]
+   Usage: unset variable [variable... ]
+   Usage: reset variable [variable... ]
+
 
    This command is used to set (and unset) variables .There are four basic
    types of variables: boolean, number, string and quadoption. boolean
 
    This command is used to set (and unset) variables .There are four basic
    types of variables: boolean, number, string and quadoption. boolean
@@ -2961,7 +2999,8 @@ Chapter 3. Configuration
 
 29. Reading initialization commands from another file
 
 
 29. Reading initialization commands from another file
 
-   Usage: source filename [ filename ... ]
+   Usage: source filename [  filename... ]
+
 
    This command allows the inclusion of initialization commands from other
    files. For example, I place all of my aliases in Ëœ/.mail_aliases so that
 
    This command allows the inclusion of initialization commands from other
    files. For example, I place all of my aliases in Ëœ/.mail_aliases so that
@@ -2976,7 +3015,8 @@ Chapter 3. Configuration
 
 30. Removing hooks
 
 
 30. Removing hooks
 
-   Usage: unhook [ * | hook-type ]
+   Usage: unhook [ * |  hook-type ]
+
 
    This command permits you to flush hooks you have previously defined. You
    can either remove all hooks by giving the ``*'' character as an argument,
 
    This command permits you to flush hooks you have previously defined. You
    can either remove all hooks by giving the ``*'' character as an argument,
@@ -4239,7 +4279,7 @@ Chapter 4. Advanced Usage
 
   19.2. Write a compressed mailbox
 
 
   19.2. Write a compressed mailbox
 
-   Usage: close-hook regexp "command"
+   Usage: close-hook regexp"command"
 
    This is used to close the folder that was open with the open-hook command
    after some changes were made to it.
 
    This is used to close the folder that was open with the open-hook command
    after some changes were made to it.
@@ -4264,7 +4304,7 @@ Chapter 4. Advanced Usage
 
   19.3. Append a message to a compressed mailbox
 
 
   19.3. Append a message to a compressed mailbox
 
-   Usage: append-hook regexp "command"
+   Usage: append-hook regexp"command"
 
    This command is used for saving to an existing compressed folder. The
    command is the command that can be used for appending to the folders whose
 
    This command is used for saving to an existing compressed folder. The
    command is the command that can be used for appending to the folders whose
@@ -7602,7 +7642,7 @@ Chapter 7. Reference
 
    Type: system property
 
 
    Type: system property
 
-   Value: 480
+   Value: 481
 
    This is a read-only system property and specifies muttng's subversion
    revision string.
 
    This is a read-only system property and specifies muttng's subversion
    revision string.
@@ -7633,7 +7673,19 @@ Chapter 7. Reference
    This variable, when set, makes the thread tree narrower, allowing deeper
    threads to fit on the screen.
 
    This variable, when set, makes the thread tree narrower, allowing deeper
    threads to fit on the screen.
 
-160. nntp_ask_followup_to
+160. net_inc
+
+   Type: number
+
+   Default: 10
+
+   Operations that expect to transfer a large amount of data over the network
+   will update their progress every net_inc kilobytes. If set to 0, no
+   progress messages will be displayed.
+
+   See also ``$read_inc'' and ``$write_inc''.
+
+161. nntp_ask_followup_to
 
    Type: boolean
 
 
    Type: boolean
 
@@ -7644,7 +7696,7 @@ Chapter 7. Reference
    If set, Mutt-ng will prompt you for the Followup-To: header field before
    editing the body of an outgoing news article.
 
    If set, Mutt-ng will prompt you for the Followup-To: header field before
    editing the body of an outgoing news article.
 
-161. nntp_ask_x_comment_to
+162. nntp_ask_x_comment_to
 
    Type: boolean
 
 
    Type: boolean
 
@@ -7655,7 +7707,7 @@ Chapter 7. Reference
    If set, Mutt-ng will prompt you for the X-Comment-To: header field before
    editing the body of an outgoing news article.
 
    If set, Mutt-ng will prompt you for the X-Comment-To: header field before
    editing the body of an outgoing news article.
 
-162. nntp_cache_dir
+163. nntp_cache_dir
 
    Type: path
 
 
    Type: path
 
@@ -7670,7 +7722,7 @@ Chapter 7. Reference
    As for the header caching in connection with IMAP and/or Maildir, this
    drastically increases speed and lowers traffic.
 
    As for the header caching in connection with IMAP and/or Maildir, this
    drastically increases speed and lowers traffic.
 
-163. nntp_catchup
+164. nntp_catchup
 
    Type: quadoption
 
 
    Type: quadoption
 
@@ -7681,7 +7733,7 @@ Chapter 7. Reference
    If this variable is set, Mutt-ng will mark all articles in a newsgroup as
    read when you leaving it.
 
    If this variable is set, Mutt-ng will mark all articles in a newsgroup as
    read when you leaving it.
 
-164. nntp_context
+165. nntp_context
 
    Type: number
 
 
    Type: number
 
@@ -7696,7 +7748,7 @@ Chapter 7. Reference
    If there're more articles than defined with $nntp_context, all older ones
    will be removed/not shown in the index.
 
    If there're more articles than defined with $nntp_context, all older ones
    will be removed/not shown in the index.
 
-165. nntp_followup_to_poster
+166. nntp_followup_to_poster
 
    Type: quadoption
 
 
    Type: quadoption
 
@@ -7708,7 +7760,7 @@ Chapter 7. Reference
    Followup-To: header field, a follow-up to the newsgroup is not permitted.
    The message will be mailed to the submitter of the message via mail.
 
    Followup-To: header field, a follow-up to the newsgroup is not permitted.
    The message will be mailed to the submitter of the message via mail.
 
-166. nntp_group_index_format
+167. nntp_group_index_format
 
    Type: string
 
 
    Type: string
 
@@ -7731,7 +7783,7 @@ Chapter 7. Reference
  %|X     pad to the end of the line with character "X"
 
 
  %|X     pad to the end of the line with character "X"
 
 
-167. nntp_host
+168. nntp_host
 
    Type: string
 
 
    Type: string
 
@@ -7754,7 +7806,7 @@ Chapter 7. Reference
    presents a security risk since the superuser of your machine may read it
    regardless of the file's permissions.
 
    presents a security risk since the superuser of your machine may read it
    regardless of the file's permissions.
 
-168. nntp_inews
+169. nntp_inews
 
    Type: path
 
 
    Type: path
 
@@ -7771,7 +7823,7 @@ Chapter 7. Reference
 
    Example: set inews="/usr/local/bin/inews -hS"
 
 
    Example: set inews="/usr/local/bin/inews -hS"
 
-169. nntp_load_description
+170. nntp_load_description
 
    Type: boolean
 
 
    Type: boolean
 
@@ -7782,7 +7834,7 @@ Chapter 7. Reference
    This variable controls whether or not descriptions for newsgroups are to
    be loaded when subscribing to a newsgroup.
 
    This variable controls whether or not descriptions for newsgroups are to
    be loaded when subscribing to a newsgroup.
 
-170. nntp_mail_check
+171. nntp_mail_check
 
    Type: number
 
 
    Type: number
 
@@ -7794,7 +7846,7 @@ Chapter 7. Reference
    new 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.).
 
    new 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.).
 
-171. nntp_mime_subject
+172. nntp_mime_subject
 
    Type: boolean
 
 
    Type: boolean
 
@@ -7807,7 +7859,7 @@ Chapter 7. Reference
 
    Note: Only change this setting if you know what you are doing.
 
 
    Note: Only change this setting if you know what you are doing.
 
-172. nntp_newsrc
+173. nntp_newsrc
 
    Type: path
 
 
    Type: path
 
@@ -7824,7 +7876,7 @@ Chapter 7. Reference
  %s      newsserver name
 
 
  %s      newsserver name
 
 
-173. nntp_pass
+174. nntp_pass
 
    Type: string
 
 
    Type: string
 
@@ -7838,7 +7890,7 @@ Chapter 7. Reference
    since the superuser of your machine may read it regardless of the file's
    permissions.
 
    since the superuser of your machine may read it regardless of the file's
    permissions.
 
-174. nntp_post_moderated
+175. nntp_post_moderated
 
    Type: quadoption
 
 
    Type: quadoption
 
@@ -7852,7 +7904,7 @@ Chapter 7. Reference
    Note: if the newsserver does not support posting to that newsgroup or a
    group is totally read-only, that posting will not have any effect.
 
    Note: if the newsserver does not support posting to that newsgroup or a
    group is totally read-only, that posting will not have any effect.
 
-175. nntp_reconnect
+176. nntp_reconnect
 
    Type: quadoption
 
 
    Type: quadoption
 
@@ -7863,7 +7915,7 @@ Chapter 7. Reference
    Controls whether or not Mutt-ng will try to reconnect to a newsserver when
    the was connection lost.
 
    Controls whether or not Mutt-ng will try to reconnect to a newsserver when
    the was connection lost.
 
-176. nntp_save_unsubscribed
+177. nntp_save_unsubscribed
 
    Type: boolean
 
 
    Type: boolean
 
@@ -7874,7 +7926,7 @@ Chapter 7. Reference
    When set, info about unsubscribed newsgroups will be saved into the
    ``newsrc'' file and into the news cache.
 
    When set, info about unsubscribed newsgroups will be saved into the
    ``newsrc'' file and into the news cache.
 
-177. nntp_show_new_news
+178. nntp_show_new_news
 
    Type: boolean
 
 
    Type: boolean
 
@@ -7887,7 +7939,7 @@ Chapter 7. Reference
    controls whether or not the number of new articles of subscribed
    newsgroups will be checked.
 
    controls whether or not the number of new articles of subscribed
    newsgroups will be checked.
 
-178. nntp_show_only_unread
+179. nntp_show_only_unread
 
    Type: boolean
 
 
    Type: boolean
 
@@ -7898,7 +7950,7 @@ Chapter 7. Reference
    If set, only subscribed newsgroups that contain unread articles will be
    displayed in the newsgroup browser.
 
    If set, only subscribed newsgroups that contain unread articles will be
    displayed in the newsgroup browser.
 
-179. nntp_user
+180. nntp_user
 
    Type: string
 
 
    Type: string
 
@@ -7909,7 +7961,7 @@ Chapter 7. Reference
    Your login name on the NNTP server. If unset and the server requires
    authentification, Mutt-ng will prompt you for your account name.
 
    Your login name on the NNTP server. If unset and the server requires
    authentification, Mutt-ng will prompt you for your account name.
 
-180. nntp_x_comment_to
+181. nntp_x_comment_to
 
    Type: boolean
 
 
    Type: boolean
 
@@ -7921,7 +7973,7 @@ Chapter 7. Reference
    full name of the original article author) to articles that you followup
    to.
 
    full name of the original article author) to articles that you followup
    to.
 
-181. operating_system
+182. operating_system
 
    Type: string
 
 
    Type: string
 
@@ -7933,7 +7985,7 @@ Chapter 7. Reference
 
    It may, for example, look as: ``mutt-ng 1.5.9i (Linux)''.
 
 
    It may, for example, look as: ``mutt-ng 1.5.9i (Linux)''.
 
-182. pager
+183. pager
 
    Type: path
 
 
    Type: path
 
@@ -7949,7 +8001,7 @@ Chapter 7. Reference
    pager, and screen resizes cause lines longer than the screen width to be
    badly formatted in the help menu.
 
    pager, and screen resizes cause lines longer than the screen width to be
    badly formatted in the help menu.
 
-183. pager_context
+184. pager_context
 
    Type: number
 
 
    Type: number
 
@@ -7960,7 +8012,7 @@ Chapter 7. Reference
    Mutt-ng will display the line after the last one on the screen at the top
    of the next page (0 lines of context).
 
    Mutt-ng will display the line after the last one on the screen at the top
    of the next page (0 lines of context).
 
-184. pager_format
+185. pager_format
 
    Type: string
 
 
    Type: string
 
@@ -7970,7 +8022,7 @@ Chapter 7. Reference
    displayed before each message in either the internal or an external pager.
    The valid sequences are listed in the ``$index_format'' section.
 
    displayed before each message in either the internal or an external pager.
    The valid sequences are listed in the ``$index_format'' section.
 
-185. pager_index_lines
+186. pager_index_lines
 
    Type: number
 
 
    Type: number
 
@@ -7987,7 +8039,7 @@ Chapter 7. Reference
    of messages in the current folder is less than pager_index_lines, then the
    index will only use as many lines as it needs.
 
    of messages in the current folder is less than pager_index_lines, then the
    index will only use as many lines as it needs.
 
-186. pager_stop
+187. pager_stop
 
    Type: boolean
 
 
    Type: boolean
 
@@ -7996,7 +8048,7 @@ Chapter 7. Reference
    When set, the internal-pager will not move to the next message when you
    are at the end of a message and invoke the next-page function.
 
    When set, the internal-pager will not move to the next message when you
    are at the end of a message and invoke the next-page function.
 
-187. pgp_auto_decode
+188. pgp_auto_decode
 
    Type: boolean
 
 
    Type: boolean
 
@@ -8009,7 +8061,7 @@ Chapter 7. Reference
    checked with the check-traditional-pgp function, Mutt-ng will
    automatically check the message for traditional pgp.
 
    checked with the check-traditional-pgp function, Mutt-ng will
    automatically check the message for traditional pgp.
 
-188. pgp_autoinline
+189. pgp_autoinline
 
    Type: boolean
 
 
    Type: boolean
 
@@ -8028,7 +8080,7 @@ Chapter 7. Reference
    Also note that using the old-style PGP message format is strongly
    deprecated. (PGP only)
 
    Also note that using the old-style PGP message format is strongly
    deprecated. (PGP only)
 
-189. pgp_check_exit
+190. pgp_check_exit
 
    Type: boolean
 
 
    Type: boolean
 
@@ -8038,7 +8090,7 @@ Chapter 7. Reference
    signing or encrypting. A non-zero exit code means that the subprocess
    failed. (PGP only)
 
    signing or encrypting. A non-zero exit code means that the subprocess
    failed. (PGP only)
 
-190. pgp_clearsign_command
+191. pgp_clearsign_command
 
    Type: string
 
 
    Type: string
 
@@ -8048,7 +8100,7 @@ Chapter 7. Reference
 
    Note that the use of this format is strongly deprecated. (PGP only)
 
 
    Note that the use of this format is strongly deprecated. (PGP only)
 
-191. pgp_decode_command
+192. pgp_decode_command
 
    Type: string
 
 
    Type: string
 
@@ -8086,7 +8138,7 @@ Chapter 7. Reference
    samples/ subdirectory which has been installed on your system alongside
    the documentation. (PGP only)
 
    samples/ subdirectory which has been installed on your system alongside
    the documentation. (PGP only)
 
-192. pgp_decrypt_command
+193. pgp_decrypt_command
 
    Type: string
 
 
    Type: string
 
@@ -8094,7 +8146,7 @@ Chapter 7. Reference
 
    This command is used to decrypt a PGP encrypted message. (PGP only)
 
 
    This command is used to decrypt a PGP encrypted message. (PGP only)
 
-193. pgp_encrypt_only_command
+194. pgp_encrypt_only_command
 
    Type: string
 
 
    Type: string
 
@@ -8102,7 +8154,7 @@ Chapter 7. Reference
 
    This command is used to encrypt a body part without signing it. (PGP only)
 
 
    This command is used to encrypt a body part without signing it. (PGP only)
 
-194. pgp_encrypt_sign_command
+195. pgp_encrypt_sign_command
 
    Type: string
 
 
    Type: string
 
@@ -8110,7 +8162,7 @@ Chapter 7. Reference
 
    This command is used to both sign and encrypt a body part. (PGP only)
 
 
    This command is used to both sign and encrypt a body part. (PGP only)
 
-195. pgp_entry_format
+196. pgp_entry_format
 
    Type: string
 
 
    Type: string
 
@@ -8158,7 +8210,7 @@ Chapter 7. Reference
 
    (PGP only)
 
 
    (PGP only)
 
-196. pgp_export_command
+197. pgp_export_command
 
    Type: string
 
 
    Type: string
 
@@ -8167,7 +8219,7 @@ Chapter 7. Reference
    This command is used to export a public key from the user's key ring. (PGP
    only)
 
    This command is used to export a public key from the user's key ring. (PGP
    only)
 
-197. pgp_getkeys_command
+198. pgp_getkeys_command
 
    Type: string
 
 
    Type: string
 
@@ -8176,7 +8228,7 @@ Chapter 7. Reference
    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)
 
    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)
 
-198. pgp_good_sign
+199. pgp_good_sign
 
    Type: regular expression
 
 
    Type: regular expression
 
@@ -8187,7 +8239,7 @@ Chapter 7. Reference
    text. Use this variable if the exit code from the command is 0 even for
    bad signatures. (PGP only)
 
    text. Use this variable if the exit code from the command is 0 even for
    bad signatures. (PGP only)
 
-199. pgp_ignore_subkeys
+200. pgp_ignore_subkeys
 
    Type: boolean
 
 
    Type: boolean
 
@@ -8197,7 +8249,7 @@ Chapter 7. Reference
    Instead, the principal key will inherit the subkeys' capabilities. Unset
    this if you want to play interesting key selection games. (PGP only)
 
    Instead, the principal key will inherit the subkeys' capabilities. Unset
    this if you want to play interesting key selection games. (PGP only)
 
-200. pgp_import_command
+201. pgp_import_command
 
    Type: string
 
 
    Type: string
 
@@ -8206,7 +8258,7 @@ Chapter 7. Reference
    This command is used to import a key from a message into the user's public
    key ring. (PGP only)
 
    This command is used to import a key from a message into the user's public
    key ring. (PGP only)
 
-201. pgp_list_pubring_command
+202. pgp_list_pubring_command
 
    Type: string
 
 
    Type: string
 
@@ -8218,7 +8270,7 @@ Chapter 7. Reference
    This format is also generated by the pgpring utility which comes with
    Mutt-ng. (PGP only)
 
    This format is also generated by the pgpring utility which comes with
    Mutt-ng. (PGP only)
 
-202. pgp_list_secring_command
+203. pgp_list_secring_command
 
    Type: string
 
 
    Type: string
 
@@ -8230,7 +8282,7 @@ Chapter 7. Reference
    This format is also generated by the pgpring utility which comes with
    Mutt-ng. (PGP only)
 
    This format is also generated by the pgpring utility which comes with
    Mutt-ng. (PGP only)
 
-203. pgp_long_ids
+204. pgp_long_ids
 
    Type: boolean
 
 
    Type: boolean
 
@@ -8239,7 +8291,7 @@ Chapter 7. Reference
    If set, use 64 bit PGP key IDs. Unset uses the normal 32 bit Key IDs. (PGP
    only)
 
    If set, use 64 bit PGP key IDs. Unset uses the normal 32 bit Key IDs. (PGP
    only)
 
-204. pgp_mime_auto
+205. pgp_mime_auto
 
    Type: quadoption
 
 
    Type: quadoption
 
@@ -8252,7 +8304,7 @@ Chapter 7. Reference
    Also note that using the old-style PGP message format is strongly
    deprecated. (PGP only)
 
    Also note that using the old-style PGP message format is strongly
    deprecated. (PGP only)
 
-205. pgp_replyinline
+206. pgp_replyinline
 
    Type: boolean
 
 
    Type: boolean
 
@@ -8273,7 +8325,7 @@ Chapter 7. Reference
    Also note that using the old-style PGP message format is strongly
    deprecated. (PGP only)
 
    Also note that using the old-style PGP message format is strongly
    deprecated. (PGP only)
 
-206. pgp_retainable_sigs
+207. pgp_retainable_sigs
 
    Type: boolean
 
 
    Type: boolean
 
@@ -8286,7 +8338,7 @@ Chapter 7. Reference
    where the outer layer (multipart/encrypted) can be easily removed, while
    the inner multipart/signed part is retained. (PGP only)
 
    where the outer layer (multipart/encrypted) can be easily removed, while
    the inner multipart/signed part is retained. (PGP only)
 
-207. pgp_show_unusable
+208. pgp_show_unusable
 
    Type: boolean
 
 
    Type: boolean
 
@@ -8296,7 +8348,7 @@ Chapter 7. Reference
    menu. This includes keys which have been revoked, have expired, or have
    been marked as ``disabled'' by the user. (PGP only)
 
    menu. This includes keys which have been revoked, have expired, or have
    been marked as ``disabled'' by the user. (PGP only)
 
-208. pgp_sign_as
+209. pgp_sign_as
 
    Type: string
 
 
    Type: string
 
@@ -8306,7 +8358,7 @@ Chapter 7. Reference
    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)
 
    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)
 
-209. pgp_sign_command
+210. pgp_sign_command
 
    Type: string
 
 
    Type: string
 
@@ -8315,7 +8367,7 @@ Chapter 7. Reference
    This command is used to create the detached PGP signature for a
    multipart/signed PGP/MIME body part. (PGP only)
 
    This command is used to create the detached PGP signature for a
    multipart/signed PGP/MIME body part. (PGP only)
 
-210. pgp_sort_keys
+211. pgp_sort_keys
 
    Type: sort order
 
 
    Type: sort order
 
@@ -8343,7 +8395,7 @@ Chapter 7. Reference
    If you prefer reverse order of the above values, prefix it with
    ``reverse-''. (PGP only)
 
    If you prefer reverse order of the above values, prefix it with
    ``reverse-''. (PGP only)
 
-211. pgp_strict_enc
+212. pgp_strict_enc
 
    Type: boolean
 
 
    Type: boolean
 
@@ -8354,7 +8406,7 @@ Chapter 7. Reference
    problems with non-verifyable PGP signatures, so only change this if you
    know what you are doing. (PGP only)
 
    problems with non-verifyable PGP signatures, so only change this if you
    know what you are doing. (PGP only)
 
-212. pgp_timeout
+213. pgp_timeout
 
    Type: number
 
 
    Type: number
 
@@ -8363,7 +8415,7 @@ Chapter 7. Reference
    The number of seconds after which a cached passphrase will expire if not
    used. Default: 300. (PGP only)
 
    The number of seconds after which a cached passphrase will expire if not
    used. Default: 300. (PGP only)
 
-213. pgp_use_gpg_agent
+214. pgp_use_gpg_agent
 
    Type: boolean
 
 
    Type: boolean
 
@@ -8371,7 +8423,7 @@ Chapter 7. Reference
 
    If set, Mutt-ng will use a possibly-running gpg-agent process. (PGP only)
 
 
    If set, Mutt-ng will use a possibly-running gpg-agent process. (PGP only)
 
-214. pgp_verify_command
+215. pgp_verify_command
 
    Type: string
 
 
    Type: string
 
@@ -8379,7 +8431,7 @@ Chapter 7. Reference
 
    This command is used to verify PGP signatures. (PGP only)
 
 
    This command is used to verify PGP signatures. (PGP only)
 
-215. pgp_verify_key_command
+216. pgp_verify_key_command
 
    Type: string
 
 
    Type: string
 
@@ -8388,7 +8440,7 @@ Chapter 7. Reference
    This command is used to verify key information from the key selection
    menu. (PGP only)
 
    This command is used to verify key information from the key selection
    menu. (PGP only)
 
-216. pipe_decode
+217. pipe_decode
 
    Type: boolean
 
 
    Type: boolean
 
@@ -8398,7 +8450,7 @@ Chapter 7. Reference
    pipe the messages without any preprocessing. When set, Mutt-ng will weed
    headers and will attempt to PGP/MIME decode the messages first.
 
    pipe the messages without any preprocessing. When set, Mutt-ng will weed
    headers and will attempt to PGP/MIME decode the messages first.
 
-217. pipe_sep
+218. pipe_sep
 
    Type: string
 
 
    Type: string
 
@@ -8407,7 +8459,7 @@ Chapter 7. Reference
    The separator to add between messages when piping a list of tagged
    messages to an external Unix command.
 
    The separator to add between messages when piping a list of tagged
    messages to an external Unix command.
 
-218. pipe_split
+219. pipe_split
 
    Type: boolean
 
 
    Type: boolean
 
@@ -8420,7 +8472,7 @@ Chapter 7. Reference
    by one. In both cases the messages are piped in the current sorted order,
    and the ``$pipe_sep'' separator is added after each message.
 
    by one. In both cases the messages are piped in the current sorted order,
    and the ``$pipe_sep'' separator is added after each message.
 
-219. pop_auth_try_all
+220. pop_auth_try_all
 
    Type: boolean
 
 
    Type: boolean
 
@@ -8433,7 +8485,7 @@ Chapter 7. Reference
    unavailable. If a method is available but authentication fails, Mutt-ng
    will not connect to the POP server.
 
    unavailable. If a method is available but authentication fails, Mutt-ng
    will not connect to the POP server.
 
-220. pop_authenticators
+221. pop_authenticators
 
    Type: string
 
 
    Type: string
 
@@ -8452,7 +8504,7 @@ Chapter 7. Reference
 
    Example: set pop_authenticators="digest-md5:apop:user"
 
 
    Example: set pop_authenticators="digest-md5:apop:user"
 
-221. pop_delete
+222. pop_delete
 
    Type: quadoption
 
 
    Type: quadoption
 
@@ -8464,7 +8516,7 @@ Chapter 7. Reference
    server when using the ``fetch-mail'' function. When unset, Mutt-ng will
    download messages but also leave them on the POP server.
 
    server when using the ``fetch-mail'' function. When unset, Mutt-ng will
    download messages but also leave them on the POP server.
 
-222. pop_host
+223. pop_host
 
    Type: string
 
 
    Type: string
 
@@ -8481,7 +8533,7 @@ Chapter 7. Reference
    since the superuser of your machine may read it regardless of the file's
    permissions.
 
    since the superuser of your machine may read it regardless of the file's
    permissions.
 
-223. pop_last
+224. pop_last
 
    Type: boolean
 
 
    Type: boolean
 
@@ -8493,7 +8545,7 @@ Chapter 7. Reference
    for retrieving only unread messages from the POP server when using the
    ``fetch-mail'' function.
 
    for retrieving only unread messages from the POP server when using the
    ``fetch-mail'' function.
 
-224. pop_mail_check
+225. pop_mail_check
 
    Type: number
 
 
    Type: number
 
@@ -8504,7 +8556,7 @@ Chapter 7. Reference
    This variable configures how often (in seconds) POP should look for new
    mail.
 
    This variable configures how often (in seconds) POP should look for new
    mail.
 
-225. pop_pass
+226. pop_pass
 
    Type: string
 
 
    Type: string
 
@@ -8519,7 +8571,7 @@ Chapter 7. Reference
    since the superuser of your machine may read it regardless of the file's
    permissions.
 
    since the superuser of your machine may read it regardless of the file's
    permissions.
 
-226. pop_reconnect
+227. pop_reconnect
 
    Type: quadoption
 
 
    Type: quadoption
 
@@ -8530,7 +8582,7 @@ Chapter 7. Reference
    Controls whether or not Mutt-ng will try to reconnect to a POP server when
    the connection is lost.
 
    Controls whether or not Mutt-ng will try to reconnect to a POP server when
    the connection is lost.
 
-227. pop_user
+228. pop_user
 
    Type: string
 
 
    Type: string
 
@@ -8542,7 +8594,7 @@ Chapter 7. Reference
 
    This variable defaults to your user name on the local machine.
 
 
    This variable defaults to your user name on the local machine.
 
-228. post_indent_string
+229. post_indent_string
 
    Type: string
 
 
    Type: string
 
@@ -8551,7 +8603,7 @@ Chapter 7. Reference
    Similar to the ``$attribution'' variable, Mutt-ng will append this string
    after the inclusion of a message which is being replied to.
 
    Similar to the ``$attribution'' variable, Mutt-ng will append this string
    after the inclusion of a message which is being replied to.
 
-229. postpone
+230. postpone
 
    Type: quadoption
 
 
    Type: quadoption
 
@@ -8560,7 +8612,7 @@ Chapter 7. Reference
    Controls whether or not messages are saved in the ``$postponed'' mailbox
    when you elect not to send immediately.
 
    Controls whether or not messages are saved in the ``$postponed'' mailbox
    when you elect not to send immediately.
 
-230. postponed
+231. postponed
 
    Type: path
 
 
    Type: path
 
@@ -8571,7 +8623,7 @@ Chapter 7. Reference
    in the mailbox specified by this variable. Also see the ``$postpone''
    variable.
 
    in the mailbox specified by this variable. Also see the ``$postpone''
    variable.
 
-231. preconnect
+232. preconnect
 
    Type: string
 
 
    Type: string
 
@@ -8591,7 +8643,7 @@ Chapter 7. Reference
    Note: For this example to work, you must be able to log in to the remote
    machine without having to enter a password.
 
    Note: For this example to work, you must be able to log in to the remote
    machine without having to enter a password.
 
-232. print
+233. print
 
    Type: quadoption
 
 
    Type: quadoption
 
@@ -8600,7 +8652,7 @@ Chapter 7. Reference
    Controls whether or not Mutt-ng really prints messages. This is set to
    ask-no by default, because some people accidentally hit ``p'' often.
 
    Controls whether or not Mutt-ng really prints messages. This is set to
    ask-no by default, because some people accidentally hit ``p'' often.
 
-233. print_command
+234. print_command
 
    Type: path
 
 
    Type: path
 
@@ -8608,7 +8660,7 @@ Chapter 7. Reference
 
    This specifies the command pipe that should be used to print messages.
 
 
    This specifies the command pipe that should be used to print messages.
 
-234. print_decode
+235. print_decode
 
    Type: boolean
 
 
    Type: boolean
 
@@ -8621,7 +8673,7 @@ Chapter 7. Reference
    useful if you are using some advanced printer filter which is able to
    properly format e-mail messages for printing.
 
    useful if you are using some advanced printer filter which is able to
    properly format e-mail messages for printing.
 
-235. print_split
+236. print_split
 
    Type: boolean
 
 
    Type: boolean
 
@@ -8636,7 +8688,7 @@ Chapter 7. Reference
    Those who use the enscript(1) program's mail-printing mode will most
    likely want to set this option.
 
    Those who use the enscript(1) program's mail-printing mode will most
    likely want to set this option.
 
-236. prompt_after
+237. prompt_after
 
    Type: boolean
 
 
    Type: boolean
 
@@ -8647,7 +8699,7 @@ Chapter 7. Reference
    returning to the index menu. If unset, Mutt-ng will return to the index
    menu when the external pager exits.
 
    returning to the index menu. If unset, Mutt-ng will return to the index
    menu when the external pager exits.
 
-237. query_command
+238. query_command
 
    Type: path
 
 
    Type: path
 
@@ -8657,7 +8709,7 @@ Chapter 7. Reference
    queries. The string should contain a %s, which will be substituted with
    the query string the user types. See ``query'' for more information.
 
    queries. The string should contain a %s, which will be substituted with
    the query string the user types. See ``query'' for more information.
 
-238. quit
+239. quit
 
    Type: quadoption
 
 
    Type: quadoption
 
@@ -8668,7 +8720,7 @@ Chapter 7. Reference
    effect, and if it is set to ask-yes or ask-no, you are prompted for
    confirmation when you try to quit.
 
    effect, and if it is set to ask-yes or ask-no, you are prompted for
    confirmation when you try to quit.
 
-239. quote_empty
+240. quote_empty
 
    Type: boolean
 
 
    Type: boolean
 
@@ -8677,7 +8729,7 @@ Chapter 7. Reference
    Controls whether or not empty lines will be quoted using
    ``indent_string''.
 
    Controls whether or not empty lines will be quoted using
    ``indent_string''.
 
-240. quote_quoted
+241. quote_quoted
 
    Type: boolean
 
 
    Type: boolean
 
@@ -8687,7 +8739,7 @@ Chapter 7. Reference
    be added to the end of existing prefix. Otherwise, quoted lines will be
    prepended by ``indent_string''.
 
    be added to the end of existing prefix. Otherwise, quoted lines will be
    prepended by ``indent_string''.
 
-241. quote_regexp
+242. quote_regexp
 
    Type: regular expression
 
 
    Type: regular expression
 
@@ -8700,7 +8752,7 @@ Chapter 7. Reference
    to set this to a regular expression that matches exactly the quote
    characters at the beginning of quoted lines.
 
    to set this to a regular expression that matches exactly the quote
    characters at the beginning of quoted lines.
 
-242. read_inc
+243. read_inc
 
    Type: number
 
 
    Type: number
 
@@ -8716,7 +8768,7 @@ Chapter 7. Reference
 
    Also see the ``$write_inc'' variable.
 
 
    Also see the ``$write_inc'' variable.
 
-243. read_only
+244. read_only
 
    Type: boolean
 
 
    Type: boolean
 
@@ -8724,7 +8776,7 @@ Chapter 7. Reference
 
    If set, all folders are opened in read-only mode.
 
 
    If set, all folders are opened in read-only mode.
 
-244. realname
+245. realname
 
    Type: string
 
 
    Type: string
 
@@ -8738,7 +8790,7 @@ Chapter 7. Reference
    Note: This variable will not be used when the user has set a real name in
    the $from variable.
 
    Note: This variable will not be used when the user has set a real name in
    the $from variable.
 
-245. recall
+246. recall
 
    Type: quadoption
 
 
    Type: quadoption
 
@@ -8750,7 +8802,7 @@ Chapter 7. Reference
    Setting this variable to yes is not generally useful, and thus not
    recommended.
 
    Setting this variable to yes is not generally useful, and thus not
    recommended.
 
-246. record
+247. record
 
    Type: path
 
 
    Type: path
 
@@ -8764,7 +8816,7 @@ Chapter 7. Reference
    The value of $record is overridden by the ``$force_name'' and
    ``$save_name'' variables, and the ``fcc-hook'' command.
 
    The value of $record is overridden by the ``$force_name'' and
    ``$save_name'' variables, and the ``fcc-hook'' command.
 
-247. reply_regexp
+248. reply_regexp
 
    Type: regular expression
 
 
    Type: regular expression
 
@@ -8774,7 +8826,7 @@ Chapter 7. Reference
    replying. The default value corresponds to the English ``Re:'' and the
    German ``Aw:''.
 
    replying. The default value corresponds to the English ``Re:'' and the
    German ``Aw:''.
 
-248. reply_self
+249. reply_self
 
    Type: boolean
 
 
    Type: boolean
 
@@ -8784,7 +8836,7 @@ Chapter 7. Reference
    assume that you want to reply to the recipients of that message rather
    than to yourself.
 
    assume that you want to reply to the recipients of that message rather
    than to yourself.
 
-249. reply_to
+250. reply_to
 
    Type: quadoption
 
 
    Type: quadoption
 
@@ -8798,7 +8850,7 @@ Chapter 7. Reference
    ``Reply-To:'' header field to the list address and you want to send a
    private message to the author of a message.
 
    ``Reply-To:'' header field to the list address and you want to send a
    private message to the author of a message.
 
-250. resolve
+251. resolve
 
    Type: boolean
 
 
    Type: boolean
 
@@ -8808,7 +8860,7 @@ Chapter 7. Reference
    undeleted) message whenever a command that modifies the current message is
    executed.
 
    undeleted) message whenever a command that modifies the current message is
    executed.
 
-251. reverse_alias
+252. reverse_alias
 
    Type: boolean
 
 
    Type: boolean
 
@@ -8829,7 +8881,7 @@ Chapter 7. Reference
    ``abd30425@somewhere.net.'' This is useful when the person's e-mail
    address is not human friendly (like CompuServe addresses).
 
    ``abd30425@somewhere.net.'' This is useful when the person's e-mail
    address is not human friendly (like CompuServe addresses).
 
-252. reverse_name
+253. reverse_name
 
    Type: boolean
 
 
    Type: boolean
 
@@ -8843,7 +8895,7 @@ Chapter 7. Reference
    is unset, or the address that would be used doesn't match your alternates,
    the From: line will use your address on the current machine.
 
    is unset, or the address that would be used doesn't match your alternates,
    the From: line will use your address on the current machine.
 
-253. reverse_realname
+254. reverse_realname
 
    Type: boolean
 
 
    Type: boolean
 
@@ -8854,7 +8906,7 @@ Chapter 7. Reference
    possibly including eventual real names. When it is unset, Mutt-ng will
    override any such real names with the setting of the realname variable.
 
    possibly including eventual real names. When it is unset, Mutt-ng will
    override any such real names with the setting of the realname variable.
 
-254. rfc2047_parameters
+255. rfc2047_parameters
 
    Type: boolean
 
 
    Type: boolean
 
@@ -8876,7 +8928,7 @@ Chapter 7. Reference
    Mutt-ng generates this kind of encoding. Instead, Mutt-ng will
    unconditionally use the encoding specified in RFC 2231.
 
    Mutt-ng generates this kind of encoding. Instead, Mutt-ng will
    unconditionally use the encoding specified in RFC 2231.
 
-255. save_address
+256. save_address
 
    Type: boolean
 
 
    Type: boolean
 
@@ -8886,7 +8938,7 @@ Chapter 7. Reference
    default folder for saving a mail. If ``$save_name'' or ``$force_name'' is
    set too, the selection of the fcc folder will be changed as well.
 
    default folder for saving a mail. If ``$save_name'' or ``$force_name'' is
    set too, the selection of the fcc folder will be changed as well.
 
-256. save_empty
+257. save_empty
 
    Type: boolean
 
 
    Type: boolean
 
@@ -8899,7 +8951,7 @@ Chapter 7. Reference
    Note: This only applies to mbox and MMDF folders, Mutt-ng does not delete
    MH and Maildir directories.
 
    Note: This only applies to mbox and MMDF folders, Mutt-ng does not delete
    MH and Maildir directories.
 
-257. save_name
+258. save_name
 
    Type: boolean
 
 
    Type: boolean
 
@@ -8914,7 +8966,7 @@ Chapter 7. Reference
 
    Also see the ``$force_name'' variable.
 
 
    Also see the ``$force_name'' variable.
 
-258. score
+259. score
 
    Type: boolean
 
 
    Type: boolean
 
@@ -8924,7 +8976,7 @@ Chapter 7. Reference
    selectively disable scoring for certain folders when the
    ``$score_threshold_delete'' variable and friends are used.
 
    selectively disable scoring for certain folders when the
    ``$score_threshold_delete'' variable and friends are used.
 
-259. score_threshold_delete
+260. score_threshold_delete
 
    Type: number
 
 
    Type: number
 
@@ -8935,7 +8987,7 @@ Chapter 7. Reference
    Mutt-ng scores are always greater than or equal to zero, the default
    setting of this variable will never mark a message for deletion.
 
    Mutt-ng scores are always greater than or equal to zero, the default
    setting of this variable will never mark a message for deletion.
 
-260. score_threshold_flag
+261. score_threshold_flag
 
    Type: number
 
 
    Type: number
 
@@ -8944,7 +8996,7 @@ Chapter 7. Reference
    Messages which have been assigned a score greater than or equal to this
    variable's value are automatically marked ``flagged''.
 
    Messages which have been assigned a score greater than or equal to this
    variable's value are automatically marked ``flagged''.
 
-261. score_threshold_read
+262. score_threshold_read
 
    Type: number
 
 
    Type: number
 
@@ -8955,7 +9007,7 @@ Chapter 7. Reference
    Mutt-ng scores are always greater than or equal to zero, the default
    setting of this variable will never mark a message read.
 
    Mutt-ng scores are always greater than or equal to zero, the default
    setting of this variable will never mark a message read.
 
-262. send_charset
+263. send_charset
 
    Type: string
 
 
    Type: string
 
@@ -8968,7 +9020,7 @@ Chapter 7. Reference
    character set (such as iso-8859-2, koi8-r or iso-2022-jp) either instead
    of or after iso-8859-1.
 
    character set (such as iso-8859-2, koi8-r or iso-2022-jp) either instead
    of or after iso-8859-1.
 
-263. sendmail
+264. sendmail
 
    Type: path
 
 
    Type: path
 
@@ -8978,7 +9030,7 @@ Chapter 7. Reference
    Mutt-ng expects that the specified program interprets additional arguments
    as recipient addresses.
 
    Mutt-ng expects that the specified program interprets additional arguments
    as recipient addresses.
 
-264. sendmail_wait
+265. sendmail_wait
 
    Type: number
 
 
    Type: number
 
@@ -9005,7 +9057,7 @@ Chapter 7. Reference
    process will be put in a temporary file. If there is some error, you will
    be informed as to where to find the output.
 
    process will be put in a temporary file. If there is some error, you will
    be informed as to where to find the output.
 
-265. shell
+266. shell
 
    Type: path
 
 
    Type: path
 
@@ -9014,7 +9066,7 @@ Chapter 7. Reference
    Command to use when spawning a subshell. By default, the user's login
    shell from /etc/passwd is used.
 
    Command to use when spawning a subshell. By default, the user's login
    shell from /etc/passwd is used.
 
-266. sidebar_boundary
+267. sidebar_boundary
 
    Type: string
 
 
    Type: string
 
@@ -9024,7 +9076,7 @@ Chapter 7. Reference
    variable specifies the characters at which to split a folder name into
    ``hierarchy items.''
 
    variable specifies the characters at which to split a folder name into
    ``hierarchy items.''
 
-267. sidebar_delim
+268. sidebar_delim
 
    Type: string
 
 
    Type: string
 
@@ -9033,7 +9085,7 @@ Chapter 7. Reference
    This specifies the delimiter between the sidebar (if visible) and other
    screens.
 
    This specifies the delimiter between the sidebar (if visible) and other
    screens.
 
-268. sidebar_newmail_only
+269. sidebar_newmail_only
 
    Type: boolean
 
 
    Type: boolean
 
@@ -9041,7 +9093,7 @@ Chapter 7. Reference
 
    If set, only folders with new mail will be shown in the sidebar.
 
 
    If set, only folders with new mail will be shown in the sidebar.
 
-269. sidebar_number_format
+270. sidebar_number_format
 
    Type: string
 
 
    Type: string
 
@@ -9082,7 +9134,7 @@ Chapter 7. Reference
    1) These expandos only have a non-zero value for the current mailbox and
    will always be zero otherwise.
 
    1) These expandos only have a non-zero value for the current mailbox and
    will always be zero otherwise.
 
-270. sidebar_shorten_hierarchy
+271. sidebar_shorten_hierarchy
 
    Type: boolean
 
 
    Type: boolean
 
@@ -9098,7 +9150,7 @@ Chapter 7. Reference
    At which characters this compression is done is controled via the
    $sidebar_boundary variable.
 
    At which characters this compression is done is controled via the
    $sidebar_boundary variable.
 
-271. sidebar_visible
+272. sidebar_visible
 
    Type: boolean
 
 
    Type: boolean
 
@@ -9107,7 +9159,7 @@ Chapter 7. Reference
    This specifies whether or not to show the sidebar (a list of folders
    specified with the ``mailboxes'' command).
 
    This specifies whether or not to show the sidebar (a list of folders
    specified with the ``mailboxes'' command).
 
-272. sidebar_width
+273. sidebar_width
 
    Type: number
 
 
    Type: number
 
@@ -9115,7 +9167,7 @@ Chapter 7. Reference
 
    The width of the sidebar.
 
 
    The width of the sidebar.
 
-273. sig_dashes
+274. sig_dashes
 
    Type: boolean
 
 
    Type: boolean
 
@@ -9130,7 +9182,7 @@ Chapter 7. Reference
    For example, Mutt-ng has the ability to highlight the signature in a
    different color in the builtin pager.
 
    For example, Mutt-ng has the ability to highlight the signature in a
    different color in the builtin pager.
 
-274. sig_on_top
+275. sig_on_top
 
    Type: boolean
 
 
    Type: boolean
 
@@ -9141,7 +9193,7 @@ Chapter 7. Reference
    you really know what you are doing, and are prepared to take some heat
    from netiquette guardians.
 
    you really know what you are doing, and are prepared to take some heat
    from netiquette guardians.
 
-275. signature
+276. signature
 
    Type: path
 
 
    Type: path
 
@@ -9151,7 +9203,7 @@ Chapter 7. Reference
    outgoing messages. If the filename ends with a pipe (``|''), it is assumed
    that filename is a shell command and input should be read from its stdout.
 
    outgoing messages. If the filename ends with a pipe (``|''), it is assumed
    that filename is a shell command and input should be read from its stdout.
 
-276. signoff_string
+277. signoff_string
 
    Type: string
 
 
    Type: string
 
@@ -9164,7 +9216,7 @@ Chapter 7. Reference
    or witty quotes into your mails, better use a signature file instead of
    the signoff string.
 
    or witty quotes into your mails, better use a signature file instead of
    the signoff string.
 
-277. simple_search
+278. simple_search
 
    Type: string
 
 
    Type: string
 
@@ -9180,7 +9232,7 @@ Chapter 7. Reference
 
    Ëœf joe | Ëœs joe
 
 
    Ëœf joe | Ëœs joe
 
-278. sleep_time
+279. sleep_time
 
    Type: number
 
 
    Type: number
 
@@ -9191,7 +9243,7 @@ Chapter 7. Reference
    expunging messages from the current folder. The default is to pause one
    second, so a value of zero for this option suppresses the pause.
 
    expunging messages from the current folder. The default is to pause one
    second, so a value of zero for this option suppresses the pause.
 
-279. smart_wrap
+280. smart_wrap
 
    Type: boolean
 
 
    Type: boolean
 
@@ -9201,7 +9253,7 @@ Chapter 7. Reference
    pager. If set, long lines are wrapped at a word boundary. If unset, lines
    are simply wrapped at the screen edge. Also see the ``$markers'' variable.
 
    pager. If set, long lines are wrapped at a word boundary. If unset, lines
    are simply wrapped at the screen edge. Also see the ``$markers'' variable.
 
-280. smileys
+281. smileys
 
    Type: regular expression
 
 
    Type: regular expression
 
@@ -9210,7 +9262,7 @@ Chapter 7. Reference
    The pager uses this variable to catch some common false positives of
    ``$quote_regexp'', most notably smileys in the beginning of a line
 
    The pager uses this variable to catch some common false positives of
    ``$quote_regexp'', most notably smileys in the beginning of a line
 
-281. smime_ask_cert_label
+282. smime_ask_cert_label
 
    Type: boolean
 
 
    Type: boolean
 
@@ -9220,7 +9272,7 @@ Chapter 7. Reference
    certificate about to be added to the database or not. It is set by
    default. (S/MIME only)
 
    certificate about to be added to the database or not. It is set by
    default. (S/MIME only)
 
-282. smime_ca_location
+283. smime_ca_location
 
    Type: path
 
 
    Type: path
 
@@ -9229,7 +9281,7 @@ Chapter 7. Reference
    This variable contains the name of either a directory, or a file which
    contains trusted certificates for use with OpenSSL. (S/MIME only)
 
    This variable contains the name of either a directory, or a file which
    contains trusted certificates for use with OpenSSL. (S/MIME only)
 
-283. smime_certificates
+284. smime_certificates
 
    Type: path
 
 
    Type: path
 
@@ -9242,7 +9294,7 @@ Chapter 7. Reference
    contains mailbox-address keyid pairs, and which can be manually edited.
    This one points to the location of the certificates. (S/MIME only)
 
    contains mailbox-address keyid pairs, and which can be manually edited.
    This one points to the location of the certificates. (S/MIME only)
 
-284. smime_decrypt_command
+285. smime_decrypt_command
 
    Type: string
 
 
    Type: string
 
@@ -9285,7 +9337,7 @@ Chapter 7. Reference
    samples/ subdirectory which has been installed on your system alongside
    the documentation. (S/MIME only)
 
    samples/ subdirectory which has been installed on your system alongside
    the documentation. (S/MIME only)
 
-285. smime_decrypt_use_default_key
+286. smime_decrypt_use_default_key
 
    Type: boolean
 
 
    Type: boolean
 
@@ -9296,7 +9348,7 @@ Chapter 7. Reference
    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)
 
    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)
 
-286. smime_default_key
+287. smime_default_key
 
    Type: string
 
 
    Type: string
 
@@ -9306,7 +9358,7 @@ Chapter 7. Reference
    keyid (the hash-value that OpenSSL generates) to work properly (S/MIME
    only)
 
    keyid (the hash-value that OpenSSL generates) to work properly (S/MIME
    only)
 
-287. smime_encrypt_command
+288. smime_encrypt_command
 
    Type: string
 
 
    Type: string
 
@@ -9314,7 +9366,7 @@ Chapter 7. Reference
 
    This command is used to create encrypted S/MIME messages. (S/MIME only)
 
 
    This command is used to create encrypted S/MIME messages. (S/MIME only)
 
-288. smime_encrypt_with
+289. smime_encrypt_with
 
    Type: string
 
 
    Type: string
 
@@ -9325,7 +9377,7 @@ Chapter 7. Reference
 
    If unset ``3des'' (TripleDES) is used. (S/MIME only)
 
 
    If unset ``3des'' (TripleDES) is used. (S/MIME only)
 
-289. smime_get_cert_command
+290. smime_get_cert_command
 
    Type: string
 
 
    Type: string
 
@@ -9334,7 +9386,7 @@ Chapter 7. Reference
    This command is used to extract X509 certificates from a PKCS7 structure.
    (S/MIME only)
 
    This command is used to extract X509 certificates from a PKCS7 structure.
    (S/MIME only)
 
-290. smime_get_cert_email_command
+291. smime_get_cert_email_command
 
    Type: string
 
 
    Type: string
 
@@ -9344,7 +9396,7 @@ Chapter 7. Reference
    certificates, and for verification purposes (to check whether the
    certificate was issued for the sender's mailbox). (S/MIME only)
 
    certificates, and for verification purposes (to check whether the
    certificate was issued for the sender's mailbox). (S/MIME only)
 
-291. smime_get_signer_cert_command
+292. smime_get_signer_cert_command
 
    Type: string
 
 
    Type: string
 
@@ -9354,7 +9406,7 @@ Chapter 7. Reference
    S/MIME signature, so that the certificate's owner may get compared to the
    email's ``From:'' header field. (S/MIME only)
 
    S/MIME signature, so that the certificate's owner may get compared to the
    email's ``From:'' header field. (S/MIME only)
 
-292. smime_import_cert_command
+293. smime_import_cert_command
 
    Type: string
 
 
    Type: string
 
@@ -9363,7 +9415,7 @@ Chapter 7. Reference
    This command is used to import a certificate via smime_keysng. (S/MIME
    only)
 
    This command is used to import a certificate via smime_keysng. (S/MIME
    only)
 
-293. smime_is_default
+294. smime_is_default
 
    Type: boolean
 
 
    Type: boolean
 
@@ -9379,7 +9431,7 @@ Chapter 7. Reference
    (Note that this variable can be overridden by unsetting $crypt_autosmime.)
    (S/MIME only)
 
    (Note that this variable can be overridden by unsetting $crypt_autosmime.)
    (S/MIME only)
 
-294. smime_keys
+295. smime_keys
 
    Type: path
 
 
    Type: path
 
@@ -9392,7 +9444,7 @@ Chapter 7. Reference
    which contains mailbox-address keyid pair, and which can be manually
    edited. This one points to the location of the private keys. (S/MIME only)
 
    which contains mailbox-address keyid pair, and which can be manually
    edited. This one points to the location of the private keys. (S/MIME only)
 
-295. smime_pk7out_command
+296. smime_pk7out_command
 
    Type: string
 
 
    Type: string
 
@@ -9401,7 +9453,7 @@ Chapter 7. Reference
    This command is used to extract PKCS7 structures of S/MIME signatures, in
    order to extract the public X509 certificate(s). (S/MIME only)
 
    This command is used to extract PKCS7 structures of S/MIME signatures, in
    order to extract the public X509 certificate(s). (S/MIME only)
 
-296. smime_sign_command
+297. smime_sign_command
 
    Type: string
 
 
    Type: string
 
@@ -9410,7 +9462,7 @@ Chapter 7. Reference
    This command is used to created S/MIME signatures of type
    multipart/signed, which can be read by all mail clients. (S/MIME only)
 
    This command is used to created S/MIME signatures of type
    multipart/signed, which can be read by all mail clients. (S/MIME only)
 
-297. smime_sign_opaque_command
+298. smime_sign_opaque_command
 
    Type: string
 
 
    Type: string
 
@@ -9420,7 +9472,7 @@ Chapter 7. Reference
    application/x-pkcs7-signature, which can only be handled by mail clients
    supporting the S/MIME extension. (S/MIME only)
 
    application/x-pkcs7-signature, which can only be handled by mail clients
    supporting the S/MIME extension. (S/MIME only)
 
-298. smime_timeout
+299. smime_timeout
 
    Type: number
 
 
    Type: number
 
@@ -9429,7 +9481,7 @@ Chapter 7. Reference
    The number of seconds after which a cached passphrase will expire if not
    used. (S/MIME only)
 
    The number of seconds after which a cached passphrase will expire if not
    used. (S/MIME only)
 
-299. smime_verify_command
+300. smime_verify_command
 
    Type: string
 
 
    Type: string
 
@@ -9438,7 +9490,7 @@ Chapter 7. Reference
    This command is used to verify S/MIME signatures of type multipart/signed.
    (S/MIME only)
 
    This command is used to verify S/MIME signatures of type multipart/signed.
    (S/MIME only)
 
-300. smime_verify_opaque_command
+301. smime_verify_opaque_command
 
    Type: string
 
 
    Type: string
 
@@ -9447,7 +9499,7 @@ Chapter 7. Reference
    This command is used to verify S/MIME signatures of type
    application/x-pkcs7-mime. (S/MIME only)
 
    This command is used to verify S/MIME signatures of type
    application/x-pkcs7-mime. (S/MIME only)
 
-301. smtp_envelope
+302. smtp_envelope
 
    Type: string
 
 
    Type: string
 
@@ -9463,7 +9515,7 @@ Chapter 7. Reference
    as the envelope sender but only a particular one which may not be the same
    as the user's desired From: header.
 
    as the envelope sender but only a particular one which may not be the same
    as the user's desired From: header.
 
-302. smtp_host
+303. smtp_host
 
    Type: string
 
 
    Type: string
 
@@ -9475,7 +9527,7 @@ Chapter 7. Reference
    invoking the sendmail binary. Setting this variable overrides the value of
    ``$sendmail'', and any associated variables.
 
    invoking the sendmail binary. Setting this variable overrides the value of
    ``$sendmail'', and any associated variables.
 
-303. smtp_pass
+304. smtp_pass
 
    Type: string
 
 
    Type: string
 
@@ -9490,7 +9542,7 @@ Chapter 7. Reference
    since the superuser of your machine may read it regardless of the file's
    permissions.
 
    since the superuser of your machine may read it regardless of the file's
    permissions.
 
-304. smtp_port
+305. smtp_port
 
    Type: number
 
 
    Type: number
 
@@ -9504,7 +9556,7 @@ Chapter 7. Reference
    Defaults to 25, the standard SMTP port, but RFC 2476-compliant SMTP
    servers will probably desire 587, the mail submission port.
 
    Defaults to 25, the standard SMTP port, but RFC 2476-compliant SMTP
    servers will probably desire 587, the mail submission port.
 
-305. smtp_use_tls
+306. smtp_use_tls
 
    Type: string
 
 
    Type: string
 
@@ -9518,7 +9570,7 @@ Chapter 7. Reference
    to start TLS and continue without TLS in case of an error. Muttng still
    needs to have SSL support enabled in order to use it.
 
    to start TLS and continue without TLS in case of an error. Muttng still
    needs to have SSL support enabled in order to use it.
 
-306. smtp_user
+307. smtp_user
 
    Type: string
 
 
    Type: string
 
@@ -9529,7 +9581,7 @@ Chapter 7. Reference
    Defines the username to use with SMTP AUTH. Setting this variable will
    cause Mutt-ng to attempt to use SMTP AUTH when sending.
 
    Defines the username to use with SMTP AUTH. Setting this variable will
    cause Mutt-ng to attempt to use SMTP AUTH when sending.
 
-307. sort
+308. sort
 
    Type: sort order
 
 
    Type: sort order
 
@@ -9552,7 +9604,7 @@ Chapter 7. Reference
    You may optionally use the ``reverse-'' prefix to specify reverse sorting
    order (example: set sort=reverse-date-sent).
 
    You may optionally use the ``reverse-'' prefix to specify reverse sorting
    order (example: set sort=reverse-date-sent).
 
-308. sort_alias
+309. sort_alias
 
    Type: sort order
 
 
    Type: sort order
 
@@ -9566,7 +9618,7 @@ Chapter 7. Reference
     unsorted (leave in order specified in .muttrc)
 
 
     unsorted (leave in order specified in .muttrc)
 
 
-309. sort_aux
+310. sort_aux
 
    Type: sort order
 
 
    Type: sort order
 
@@ -9589,7 +9641,7 @@ Chapter 7. Reference
    not the right thing to do, but kept to not break any existing
    configuration setting).
 
    not the right thing to do, but kept to not break any existing
    configuration setting).
 
-310. sort_browser
+311. sort_browser
 
    Type: sort order
 
 
    Type: sort order
 
@@ -9607,7 +9659,7 @@ Chapter 7. Reference
    You may optionally use the ``reverse-'' prefix to specify reverse sorting
    order (example: set sort_browser=reverse-date).
 
    You may optionally use the ``reverse-'' prefix to specify reverse sorting
    order (example: set sort_browser=reverse-date).
 
-311. sort_re
+312. sort_re
 
    Type: boolean
 
 
    Type: boolean
 
@@ -9622,7 +9674,7 @@ Chapter 7. Reference
    whether or not this is the case, as long as the non-``$reply_regexp''
    parts of both messages are identical.
 
    whether or not this is the case, as long as the non-``$reply_regexp''
    parts of both messages are identical.
 
-312. spam_separator
+313. spam_separator
 
    Type: string
 
 
    Type: string
 
@@ -9633,7 +9685,7 @@ Chapter 7. Reference
    matches value for the spam label. If set, each successive match will
    append to the previous, using ``spam_separator'' as a separator.
 
    matches value for the spam label. If set, each successive match will
    append to the previous, using ``spam_separator'' as a separator.
 
-313. spoolfile
+314. spoolfile
 
    Type: path
 
 
    Type: path
 
@@ -9644,7 +9696,7 @@ Chapter 7. Reference
    automatically set this variable to the value of the environment variable
    $MAIL if it is not set.
 
    automatically set this variable to the value of the environment variable
    $MAIL if it is not set.
 
-314. ssl_ca_certificates_file
+315. ssl_ca_certificates_file
 
    Type: path
 
 
    Type: path
 
@@ -9656,7 +9708,7 @@ Chapter 7. Reference
 
    Example: set ssl_ca_certificates_file=/etc/ssl/certs/ca-certificates.crt
 
 
    Example: set ssl_ca_certificates_file=/etc/ssl/certs/ca-certificates.crt
 
-315. ssl_client_cert
+316. ssl_client_cert
 
    Type: path
 
 
    Type: path
 
@@ -9666,7 +9718,7 @@ Chapter 7. Reference
 
    The file containing a client certificate and its associated private key.
 
 
    The file containing a client certificate and its associated private key.
 
-316. ssl_force_tls
+317. ssl_force_tls
 
    Type: boolean
 
 
    Type: boolean
 
@@ -9678,7 +9730,7 @@ Chapter 7. Reference
    otherwise have to abort the connection anyway. This option supersedes
    ``$ssl_starttls''.
 
    otherwise have to abort the connection anyway. This option supersedes
    ``$ssl_starttls''.
 
-317. ssl_min_dh_prime_bits
+318. ssl_min_dh_prime_bits
 
    Type: number
 
 
    Type: number
 
@@ -9690,7 +9742,7 @@ Chapter 7. Reference
    use in any Diffie-Hellman key exchange. A value of 0 will use the default
    from the GNUTLS library.
 
    use in any Diffie-Hellman key exchange. A value of 0 will use the default
    from the GNUTLS library.
 
-318. ssl_starttls
+319. ssl_starttls
 
    Type: quadoption
 
 
    Type: quadoption
 
@@ -9702,7 +9754,7 @@ Chapter 7. Reference
    advertising the capability. When unset, Mutt-ng will not attempt to use
    STARTTLS regardless of the server's capabilities.
 
    advertising the capability. When unset, Mutt-ng will not attempt to use
    STARTTLS regardless of the server's capabilities.
 
-319. ssl_use_sslv2
+320. ssl_use_sslv2
 
    Type: boolean
 
 
    Type: boolean
 
@@ -9713,7 +9765,7 @@ Chapter 7. Reference
    This variables specifies whether to attempt to use SSLv2 in the SSL
    authentication process.
 
    This variables specifies whether to attempt to use SSLv2 in the SSL
    authentication process.
 
-320. ssl_use_sslv3
+321. ssl_use_sslv3
 
    Type: boolean
 
 
    Type: boolean
 
@@ -9724,7 +9776,7 @@ Chapter 7. Reference
    This variables specifies whether to attempt to use SSLv3 in the SSL
    authentication process.
 
    This variables specifies whether to attempt to use SSLv3 in the SSL
    authentication process.
 
-321. ssl_use_tlsv1
+322. ssl_use_tlsv1
 
    Type: boolean
 
 
    Type: boolean
 
@@ -9735,7 +9787,7 @@ Chapter 7. Reference
    This variables specifies whether to attempt to use TLSv1 in the SSL
    authentication process.
 
    This variables specifies whether to attempt to use TLSv1 in the SSL
    authentication process.
 
-322. ssl_usesystemcerts
+323. ssl_usesystemcerts
 
    Type: boolean
 
 
    Type: boolean
 
@@ -9747,7 +9799,7 @@ Chapter 7. Reference
    certificate store when checking if server certificate is signed by a
    trusted CA.
 
    certificate store when checking if server certificate is signed by a
    trusted CA.
 
-323. status_chars
+324. status_chars
 
    Type: string
 
 
    Type: string
 
@@ -9764,7 +9816,7 @@ Chapter 7. Reference
    (Certain operations like composing a new mail, replying, forwarding, etc.
    are not permitted in this mode).
 
    (Certain operations like composing a new mail, replying, forwarding, etc.
    are not permitted in this mode).
 
-324. status_format
+325. status_format
 
    Type: string
 
 
    Type: string
 
@@ -9908,7 +9960,7 @@ Chapter 7. Reference
    will replace any dots in the expansion by underscores. This might be
    helpful with IMAP folders that don't like dots in folder names.
 
    will replace any dots in the expansion by underscores. This might be
    helpful with IMAP folders that don't like dots in folder names.
 
-325. status_on_top
+326. status_on_top
 
    Type: boolean
 
 
    Type: boolean
 
@@ -9917,7 +9969,7 @@ Chapter 7. Reference
    Setting this variable causes the ``status bar'' to be displayed on the
    first line of the screen rather than near the bottom.
 
    Setting this variable causes the ``status bar'' to be displayed on the
    first line of the screen rather than near the bottom.
 
-326. strict_mailto
+327. strict_mailto
 
    Type: boolean
 
 
    Type: boolean
 
@@ -9932,7 +9984,7 @@ Chapter 7. Reference
    ``X-Mailto-'' and the message including headers will be shown in the
    editor regardless of what ``$edit_headers'' is set to.
 
    ``X-Mailto-'' and the message including headers will be shown in the
    editor regardless of what ``$edit_headers'' is set to.
 
-327. strict_mime
+328. strict_mime
 
    Type: boolean
 
 
    Type: boolean
 
@@ -9947,7 +9999,7 @@ Chapter 7. Reference
    *text to a single space to prevent the display of MIME-encoded
    ``Subject:'' header field from being devided into multiple lines.
 
    *text to a single space to prevent the display of MIME-encoded
    ``Subject:'' header field from being devided into multiple lines.
 
-328. strict_threads
+329. strict_threads
 
    Type: boolean
 
 
    Type: boolean
 
@@ -9958,9 +10010,10 @@ Chapter 7. Reference
    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''
    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.
+   which will get grouped together. See also ``$sort_re'' for a less drastic
+   way of controlling this behaviour.
 
 
-329. strip_was
+330. strip_was
 
    Type: boolean
 
 
    Type: boolean
 
@@ -9970,7 +10023,7 @@ Chapter 7. Reference
    which matches $strip_was_regex when replying. This is useful to properly
    react on subject changes and reduce ``subject noise.'' (esp. in Usenet)
 
    which matches $strip_was_regex when replying. This is useful to properly
    react on subject changes and reduce ``subject noise.'' (esp. in Usenet)
 
-330. strip_was_regex
+331. strip_was_regex
 
    Type: regular expression
 
 
    Type: regular expression
 
@@ -9980,7 +10033,7 @@ Chapter 7. Reference
    part of the ``Subject'' line when replying if it won't be empty
    afterwards.
 
    part of the ``Subject'' line when replying if it won't be empty
    afterwards.
 
-331. stuff_quoted
+332. stuff_quoted
 
    Type: boolean
 
 
    Type: boolean
 
@@ -9990,7 +10043,7 @@ Chapter 7. Reference
    ``stuffed'', i.e. a space will be inserted between the quote characters
    and the actual text.
 
    ``stuffed'', i.e. a space will be inserted between the quote characters
    and the actual text.
 
-332. suspend
+333. suspend
 
    Type: boolean
 
 
    Type: boolean
 
@@ -10000,7 +10053,7 @@ Chapter 7. Reference
    key, usually CTRL+Z. This is useful if you run Mutt-ng inside an xterm
    using a command like ``xterm -e muttng.''
 
    key, usually CTRL+Z. This is useful if you run Mutt-ng inside an xterm
    using a command like ``xterm -e muttng.''
 
-333. text_flowed
+334. text_flowed
 
    Type: boolean
 
 
    Type: boolean
 
@@ -10013,7 +10066,7 @@ Chapter 7. Reference
 
    Note that $indent_string is ignored when this option is set.
 
 
    Note that $indent_string is ignored when this option is set.
 
-334. thorough_search
+335. thorough_search
 
    Type: boolean
 
 
    Type: boolean
 
@@ -10024,7 +10077,7 @@ Chapter 7. Reference
    searched are decoded before searching. If unset, messages are searched as
    they appear in the folder.
 
    searched are decoded before searching. If unset, messages are searched as
    they appear in the folder.
 
-335. thread_received
+336. thread_received
 
    Type: boolean
 
 
    Type: boolean
 
@@ -10033,7 +10086,7 @@ Chapter 7. Reference
    When set, Mutt-ng uses the date received rather than the date sent to
    thread messages by subject.
 
    When set, Mutt-ng uses the date received rather than the date sent to
    thread messages by subject.
 
-336. tilde
+337. tilde
 
    Type: boolean
 
 
    Type: boolean
 
@@ -10042,7 +10095,7 @@ Chapter 7. Reference
    When set, the internal-pager will pad blank lines to the bottom of the
    screen with a tilde (Ëœ).
 
    When set, the internal-pager will pad blank lines to the bottom of the
    screen with a tilde (Ëœ).
 
-337. timeout
+338. timeout
 
    Type: number
 
 
    Type: number
 
@@ -10052,7 +10105,7 @@ Chapter 7. Reference
    to be 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.
 
    to be 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.
 
-338. tmpdir
+339. tmpdir
 
    Type: path
 
 
    Type: path
 
@@ -10063,7 +10116,7 @@ Chapter 7. Reference
    not set, the environment variable $TMPDIR is used. If $TMPDIR is not set
    then "/tmp" is used.
 
    not set, the environment variable $TMPDIR is used. If $TMPDIR is not set
    then "/tmp" is used.
 
-339. to_chars
+340. to_chars
 
    Type: string
 
 
    Type: string
 
@@ -10080,7 +10133,7 @@ Chapter 7. Reference
    character is used to indicate when a mail was sent to a mailing-list
    you're subscribe to (default: L).
 
    character is used to indicate when a mail was sent to a mailing-list
    you're subscribe to (default: L).
 
-340. trash
+341. trash
 
    Type: path
 
 
    Type: path
 
@@ -10093,7 +10146,7 @@ Chapter 7. Reference
    Note: When you delete a message in the trash folder, it is really deleted,
    so that there is no way to recover mail.
 
    Note: When you delete a message in the trash folder, it is really deleted,
    so that there is no way to recover mail.
 
-341. tunnel
+342. tunnel
 
    Type: string
 
 
    Type: string
 
@@ -10108,7 +10161,7 @@ Chapter 7. Reference
    Note: For this example to work you must be able to log in to the remote
    machine without having to enter a password.
 
    Note: For this example to work you must be able to log in to the remote
    machine without having to enter a password.
 
-342. umask
+343. umask
 
    Type: number
 
 
    Type: number
 
@@ -10117,7 +10170,7 @@ Chapter 7. Reference
    This sets the umask that will be used by Mutt-ng when creating all kinds
    of files. If unset, the default value is 077.
 
    This sets the umask that will be used by Mutt-ng when creating all kinds
    of files. If unset, the default value is 077.
 
-343. uncollapse_jump
+344. uncollapse_jump
 
    Type: boolean
 
 
    Type: boolean
 
@@ -10126,7 +10179,7 @@ Chapter 7. Reference
    When set, Mutt-ng will jump to the next unread message, if any, when the
    current thread is uncollapsed.
 
    When set, Mutt-ng will jump to the next unread message, if any, when the
    current thread is uncollapsed.
 
-344. use_8bitmime
+345. use_8bitmime
 
    Type: boolean
 
 
    Type: boolean
 
@@ -10141,7 +10194,7 @@ Chapter 7. Reference
    flag when sending 8-bit messages to enable ESMTP negotiation or tell
    libESMTP to do so.
 
    flag when sending 8-bit messages to enable ESMTP negotiation or tell
    libESMTP to do so.
 
-345. use_domain
+346. use_domain
 
    Type: boolean
 
 
    Type: boolean
 
@@ -10151,7 +10204,7 @@ Chapter 7. Reference
    portion) with the value of ``$hostname''. If unset, no addresses will be
    qualified.
 
    portion) with the value of ``$hostname''. If unset, no addresses will be
    qualified.
 
-346. use_from
+347. use_from
 
    Type: boolean
 
 
    Type: boolean
 
@@ -10161,7 +10214,7 @@ Chapter 7. Reference
    messages. If unset, no ``From:'' header field will be generated unless the
    user explicitly sets one using the ``my_hdr'' command.
 
    messages. If unset, no ``From:'' header field will be generated unless the
    user explicitly sets one using the ``my_hdr'' command.
 
-347. use_idn
+348. use_idn
 
    Type: boolean
 
 
    Type: boolean
 
@@ -10174,7 +10227,7 @@ Chapter 7. Reference
    Note: You can use IDNs for addresses even if this is unset. This variable
    only affects decoding.
 
    Note: You can use IDNs for addresses even if this is unset. This variable
    only affects decoding.
 
-348. use_ipv6
+349. use_ipv6
 
    Type: boolean
 
 
    Type: boolean
 
@@ -10184,7 +10237,7 @@ Chapter 7. Reference
    contact. If this option is unset, Mutt-ng will restrict itself to IPv4
    addresses. Normally, the default should work.
 
    contact. If this option is unset, Mutt-ng will restrict itself to IPv4
    addresses. Normally, the default should work.
 
-349. visual
+350. visual
 
    Type: path
 
 
    Type: path
 
@@ -10193,7 +10246,7 @@ Chapter 7. Reference
    Specifies the visual editor to invoke when the Ëœv command is given in the
    builtin editor.
 
    Specifies the visual editor to invoke when the Ëœv command is given in the
    builtin editor.
 
-350. wait_key
+351. wait_key
 
    Type: boolean
 
 
    Type: boolean
 
@@ -10209,7 +10262,7 @@ Chapter 7. Reference
    When set, Mutt-ng will always ask for a key. When unset, Mutt-ng will wait
    for a key only if the external command returned a non-zero status.
 
    When set, Mutt-ng will always ask for a key. When unset, Mutt-ng will wait
    for a key only if the external command returned a non-zero status.
 
-351. weed
+352. weed
 
    Type: boolean
 
 
    Type: boolean
 
@@ -10218,7 +10271,7 @@ Chapter 7. Reference
    When set, Mutt-ng will weed headers when displaying, forwarding, printing,
    or replying to messages.
 
    When set, Mutt-ng will weed headers when displaying, forwarding, printing,
    or replying to messages.
 
-352. wrap_search
+353. wrap_search
 
    Type: boolean
 
 
    Type: boolean
 
@@ -10229,7 +10282,7 @@ Chapter 7. Reference
    When set, searches will wrap around the first (or last) message. When
    unset, searches will not wrap.
 
    When set, searches will wrap around the first (or last) message. When
    unset, searches will not wrap.
 
-353. wrapmargin
+354. wrapmargin
 
    Type: number
 
 
    Type: number
 
@@ -10238,7 +10291,7 @@ Chapter 7. Reference
    Controls the size of the margin remaining at the right side of the
    terminal when Mutt-ng's pager does smart wrapping.
 
    Controls the size of the margin remaining at the right side of the
    terminal when Mutt-ng's pager does smart wrapping.
 
-354. write_bcc
+355. write_bcc
 
    Type: boolean
 
 
    Type: boolean
 
@@ -10247,7 +10300,7 @@ Chapter 7. Reference
    Controls whether Mutt-ng writes out the Bcc header when preparing messages
    to be sent. Exim users may wish to unset this.
 
    Controls whether Mutt-ng writes out the Bcc header when preparing messages
    to be sent. Exim users may wish to unset this.
 
-355. write_inc
+356. write_inc
 
    Type: number
 
 
    Type: number
 
@@ -10259,7 +10312,7 @@ Chapter 7. Reference
 
    Also see the ``$read_inc'' variable.
 
 
    Also see the ``$read_inc'' variable.
 
-356. xterm_icon
+357. xterm_icon
 
    Type: string
 
 
    Type: string
 
@@ -10269,7 +10322,7 @@ Chapter 7. Reference
    set. This string is identical in formatting to the one used by
    ``$status_format''.
 
    set. This string is identical in formatting to the one used by
    ``$status_format''.
 
-357. xterm_leave
+358. xterm_leave
 
    Type: string
 
 
    Type: string
 
@@ -10285,7 +10338,7 @@ Chapter 7. Reference
    set xterm_leave = "`test x$DISPLAY != x && xprop -id $WINDOWID | grep
    WM_NAME | cut -d '"' -f 2`"
 
    set xterm_leave = "`test x$DISPLAY != x && xprop -id $WINDOWID | grep
    WM_NAME | cut -d '"' -f 2`"
 
-358. xterm_set_titles
+359. xterm_set_titles
 
    Type: boolean
 
 
    Type: boolean
 
@@ -10295,7 +10348,7 @@ Chapter 7. Reference
    as you're in an appropriate terminal). The default must be unset to force
    in the validity checking.
 
    as you're in an appropriate terminal). The default must be unset to force
    in the validity checking.
 
-359. xterm_title
+360. xterm_title
 
    Type: string
 
 
    Type: string
 
index 9b11500..cb72e03 100644 (file)
@@ -2899,10 +2899,9 @@ set folder = $user_magic_number</screen>
       <title>Defining/Using aliases  </title>
       
       <para>
       <title>Defining/Using aliases  </title>
       
       <para>
-        Usage: <literal>alias</literal> <emphasis>key</emphasis> <emphasis>
-          address
-        </emphasis>
-        &lsqb; , <emphasis>address</emphasis>, ... &rsqb;
+        <literallayout>
+Usage: <literal>alias</literal> <emphasis>key</emphasis> <emphasis>address</emphasis>&lsqb; , <emphasis>address</emphasis>, ... &rsqb;
+        </literallayout>
       </para>
       
       <para>
       </para>
       
       <para>
@@ -3021,9 +3020,9 @@ set alias_file=~/.mail_aliases</screen>
       <title>Changing the default key bindings  </title>
       
       <para>
       <title>Changing the default key bindings  </title>
       
       <para>
-        Usage: <literal>bind</literal> <emphasis>map</emphasis> <emphasis>key</emphasis> <emphasis>
-          function
-        </emphasis>
+        <literallayout>
+Usage: <literal>bind</literal> <emphasis>map</emphasis> <emphasis>key</emphasis> <emphasis>function</emphasis>
+        </literallayout>
       </para>
       
       <para>
       </para>
       
       <para>
@@ -3240,13 +3239,10 @@ set alias_file=~/.mail_aliases</screen>
       <title>Defining aliases for character sets   </title>
       
       <para>
       <title>Defining aliases for character sets   </title>
       
       <para>
-        Usage: <literal>charset-hook</literal> <emphasis>alias</emphasis> <emphasis>
-          charset
-        </emphasis>
-        
-        Usage: <literal>iconv-hook</literal> <emphasis>charset</emphasis> <emphasis>
-          local-charset
-        </emphasis>
+        <literallayout>
+Usage: <literal>charset-hook</literal> <emphasis>alias</emphasis> <emphasis> charset</emphasis>
+Usage: <literal>iconv-hook</literal> <emphasis>charset</emphasis> <emphasis> local-charset </emphasis>
+        </literallayout>
       </para>
       
       <para>
       </para>
       
       <para>
@@ -3274,9 +3270,10 @@ set alias_file=~/.mail_aliases</screen>
       <title>Setting variables based upon mailbox  </title>
       
       <para>
       <title>Setting variables based upon mailbox  </title>
       
       <para>
-        Usage: <literal>folder-hook</literal> &lsqb;!&rsqb;<emphasis>regexp</emphasis> <emphasis>
-          command
-        </emphasis>
+        <literallayout>
+Usage: <literal>folder-hook</literal> &lsqb;!&rsqb;<emphasis>regexp</emphasis> <emphasis>command</emphasis>
+        </literallayout>
+
       </para>
       
       <para>
       </para>
       
       <para>
@@ -3338,10 +3335,9 @@ folder-hook . set sort=date-sent</screen>
       <title>Keyboard macros  </title>
       
       <para>
       <title>Keyboard macros  </title>
       
       <para>
-        Usage: <literal>macro</literal> <emphasis>menu</emphasis> <emphasis>key</emphasis> <emphasis>
-          sequence
-        </emphasis>
-        &lsqb; <emphasis>description</emphasis> &rsqb;
+        <literallayout>
+Usage: <literal>macro</literal> <emphasis>menu</emphasis> <emphasis>key</emphasis> <emphasis>sequence</emphasis> &lsqb; <emphasis>description</emphasis> &rsqb;
+        </literallayout>
       </para>
       
       <para>
       </para>
       
       <para>
@@ -3415,20 +3411,11 @@ folder-hook . set sort=date-sent</screen>
       <title>Using color and mono video attributes  </title>
       
       <para>
       <title>Using color and mono video attributes  </title>
       
       <para>
-        Usage: <literal>color</literal> <emphasis>object</emphasis> <emphasis>
-          foreground
-        </emphasis>
-        <emphasis>background</emphasis> &lsqb; <emphasis>regexp</emphasis>
-        &rsqb;
-        
-        Usage: <literal>color</literal> index <emphasis>foreground</emphasis> <emphasis>
-          background
-        </emphasis>
-        <emphasis>pattern</emphasis>
-        
-        Usage: <literal>uncolor</literal> index <emphasis>pattern</emphasis>
-        &lsqb; <emphasis>pattern</emphasis> ...  &rsqb;
-        
+        <literallayout>
+Usage: <literal>color</literal> <emphasis>object</emphasis> <emphasis>foreground</emphasis><emphasis>background</emphasis> &lsqb; <emphasis>regexp</emphasis>&rsqb;
+Usage: <literal>color</literal> index <emphasis>foreground</emphasis> <emphasis>background</emphasis><emphasis>pattern</emphasis>
+Usage: <literal>uncolor</literal> index <emphasis>pattern</emphasis>&lsqb; <emphasis>pattern</emphasis> ...  &rsqb;
+      </literallayout>
       </para>
       
       <para>
       </para>
       
       <para>
@@ -3711,18 +3698,11 @@ export COLORFGBG</screen>
       </para>
       
       <para>
       </para>
       
       <para>
-        Usage: <literal>mono</literal> <emphasis>&lt;object&gt;
-          &lt;attribute&gt;
-        </emphasis>
-        &lsqb; <emphasis>regexp</emphasis> &rsqb;
-        
-        Usage: <literal>mono</literal> index <emphasis>attribute</emphasis> <emphasis>
-          pattern
-        </emphasis>
-        
-        Usage: <literal>unmono</literal> index <emphasis>pattern</emphasis>
-        &lsqb; <emphasis>pattern</emphasis> ...  &rsqb;
-        
+        <literallayout>
+Usage: <literal>mono</literal> <emphasis>&lt;object&gt; &lt;attribute&gt;</emphasis>&lsqb; <emphasis>regexp</emphasis> &rsqb;
+Usage: <literal>mono</literal> index <emphasis>attribute</emphasis> <emphasis>pattern</emphasis>
+Usage: <literal>unmono</literal> index <emphasis>pattern</emphasis>&lsqb; <emphasis>pattern</emphasis> ...  &rsqb;
+        </literallayout>
       </para>
       
       <para>
       </para>
       
       <para>
@@ -3777,10 +3757,9 @@ export COLORFGBG</screen>
       <title>Ignoring (weeding) unwanted message headers  </title>
       
       <para>
       <title>Ignoring (weeding) unwanted message headers  </title>
       
       <para>
-        Usage: <literal>&lsqb;un&rsqb;ignore</literal> <emphasis>pattern</emphasis> &lsqb; <emphasis>
-          pattern
-        </emphasis>
-        ... &rsqb;
+        <literallayout>
+Usage: <literal>&lsqb;un&rsqb;ignore</literal> <emphasis>pattern</emphasis> &lsqb; <emphasis>pattern</emphasis>... &rsqb;
+        </literallayout>
       </para>
       
       <para>
       </para>
       
       <para>
@@ -4117,15 +4096,10 @@ set text_flowed</screen>
       <title>Mailing lists  </title>
       
       <para>
       <title>Mailing lists  </title>
       
       <para>
-        Usage: <literal>&lsqb;un&rsqb;lists</literal> <emphasis>regexp</emphasis> &lsqb; <emphasis>
-          regexp
-        </emphasis>
-        ... &rsqb;
-        
-        Usage: <literal>&lsqb;un&rsqb;subscribe</literal> <emphasis>regexp</emphasis> &lsqb; <emphasis>
-          regexp
-        </emphasis>
-        ... &rsqb;
+        <literallayout>
+Usage: <literal>&lsqb;un&rsqb;lists</literal> <emphasis>regexp</emphasis> &lsqb; <emphasis>regexp</emphasis>... &rsqb;
+Usage: <literal>&lsqb;un&rsqb;subscribe</literal> <emphasis>regexp</emphasis> &lsqb; <emphasis>regexp</emphasis>... &rsqb;
+        </literallayout>
       </para>
       
       <para>
       </para>
       
       <para>
@@ -4203,9 +4177,9 @@ set text_flowed</screen>
       <title>Using Multiple spool mailboxes  </title>
       
       <para>
       <title>Using Multiple spool mailboxes  </title>
       
       <para>
-        Usage: <literal>mbox-hook</literal> &lsqb;!&rsqb;<emphasis>pattern</emphasis> <emphasis>
-          mailbox
-        </emphasis>
+        <literallayout>
+Usage: <literal>mbox-hook</literal> &lsqb;!&rsqb;<emphasis>pattern</emphasis> <emphasis>mailbox</emphasis>
+        </literallayout>
       </para>
       
       <para>
       </para>
       
       <para>
@@ -4238,10 +4212,9 @@ set text_flowed</screen>
       <title>Defining mailboxes which receive mail  </title>
       
       <para>
       <title>Defining mailboxes which receive mail  </title>
       
       <para>
-        Usage: <literal>&lsqb;un&rsqb;mailboxes</literal> &lsqb;!&rsqb;<emphasis>
-          filename
-        </emphasis>
-        &lsqb; <emphasis>filename</emphasis> ... &rsqb;
+        <literallayout>
+Usage: <literal>&lsqb;un&rsqb;mailboxes</literal> &lsqb;!&rsqb;<emphasis>filename</emphasis>&lsqb; <emphasis>filename</emphasis> ... &rsqb;
+        </literallayout>
       </para>
       
       <para>
       </para>
       
       <para>
@@ -4311,14 +4284,10 @@ set text_flowed</screen>
       <title>User defined headers  </title>
       
       <para>
       <title>User defined headers  </title>
       
       <para>
-        Usage:
-        
-        <literal>my&lowbar;hdr</literal> <emphasis>string</emphasis>
-        
-        <literal>unmy&lowbar;hdr</literal> <emphasis>field</emphasis> &lsqb; <emphasis>
-          field
-        </emphasis>
-        ... &rsqb;
+        <literallayout>
+Usage: <literal>my&lowbar;hdr</literal> <emphasis>string</emphasis>
+Usage: <literal>unmy&lowbar;hdr</literal> <emphasis>field</emphasis> &lsqb; <emphasis>field</emphasis>... &rsqb;
+        </literallayout>
       </para>
       
       <para>
       </para>
       
       <para>
@@ -4381,8 +4350,9 @@ unmy&lowbar;hdr to cc</screen>
       <title>Defining the order of headers when viewing messages  </title>
       
       <para>
       <title>Defining the order of headers when viewing messages  </title>
       
       <para>
-        Usage: <literal>hdr&lowbar;order</literal> <emphasis>header1</emphasis>
-        <emphasis>header2</emphasis> <emphasis>header3</emphasis>
+        <literallayout>
+Usage: <literal>hdr&lowbar;order</literal> <emphasis>header1</emphasis><emphasis>header2</emphasis> <emphasis>header3</emphasis>
+        </literallayout>
       </para>
       
       <para>
       </para>
       
       <para>
@@ -4414,9 +4384,9 @@ hdr&lowbar;order From Date: From: To: Cc: Subject:</screen>
       <title>Specify default save filename  </title>
       
       <para>
       <title>Specify default save filename  </title>
       
       <para>
-        Usage: <literal>save-hook</literal> &lsqb;!&rsqb;<emphasis>pattern</emphasis> <emphasis>
-          filename
-        </emphasis>
+        <literallayout>
+Usage: <literal>save-hook</literal> &lsqb;!&rsqb;<emphasis>pattern</emphasis> <emphasis>filename</emphasis>
+        </literallayout>
       </para>
       
       <para>
       </para>
       
       <para>
@@ -4462,9 +4432,9 @@ save-hook aol\\.com$ +spam</screen>
       <title>Specify default Fcc: mailbox when composing  </title>
       
       <para>
       <title>Specify default Fcc: mailbox when composing  </title>
       
       <para>
-        Usage: <literal>fcc-hook</literal> &lsqb;!&rsqb;<emphasis>pattern</emphasis> <emphasis>
-          mailbox
-        </emphasis>
+        <literallayout>
+Usage: <literal>fcc-hook</literal> &lsqb;!&rsqb;<emphasis>pattern</emphasis> <emphasis>mailbox</emphasis>
+        </literallayout>
       </para>
       
       <para>
       </para>
       
       <para>
@@ -4508,9 +4478,9 @@ save-hook aol\\.com$ +spam</screen>
       <title>Specify default save filename and default Fcc: mailbox at once  </title>
       
       <para>
       <title>Specify default save filename and default Fcc: mailbox at once  </title>
       
       <para>
-        Usage: <literal>fcc-save-hook</literal> &lsqb;!&rsqb;<emphasis>pattern</emphasis> <emphasis>
-          mailbox
-        </emphasis>
+        <literallayout>
+Usage: <literal>fcc-save-hook</literal> &lsqb;!&rsqb;<emphasis>pattern</emphasis> <emphasis>mailbox</emphasis>
+        </literallayout>
       </para>
       
       <para>
       </para>
       
       <para>
@@ -4530,17 +4500,11 @@ save-hook aol\\.com$ +spam</screen>
       <title>Change settings based upon message recipients  </title>
       
       <para>
       <title>Change settings based upon message recipients  </title>
       
       <para>
-        Usage: <literal>reply-hook</literal> &lsqb;!&rsqb;<emphasis>pattern</emphasis> <emphasis>
-          command
-        </emphasis>
-        
-        Usage: <literal>send-hook</literal> &lsqb;!&rsqb;<emphasis>pattern</emphasis> <emphasis>
-          command
-        </emphasis>
-        
-        Usage: <literal>send2-hook</literal> &lsqb;!&rsqb;<emphasis>pattern</emphasis> <emphasis>
-          command
-        </emphasis>
+        <literallayout>
+Usage: <literal>reply-hook</literal> &lsqb;!&rsqb;<emphasis>pattern</emphasis> <emphasis>command</emphasis>
+Usage: <literal>send-hook</literal> &lsqb;!&rsqb;<emphasis>pattern</emphasis> <emphasis>command</emphasis>
+Usage: <literal>send2-hook</literal> &lsqb;!&rsqb;<emphasis>pattern</emphasis> <emphasis>command</emphasis>
+        </literallayout>v
       </para>
       
       <para>
       </para>
       
       <para>
@@ -4635,9 +4599,9 @@ save-hook aol\\.com$ +spam</screen>
       <title>Change settings before formatting a message  </title>
       
       <para>
       <title>Change settings before formatting a message  </title>
       
       <para>
-        Usage: <literal>message-hook</literal> &lsqb;!&rsqb;<emphasis>pattern</emphasis> <emphasis>
-          command
-        </emphasis>
+        <literallayout>
+Usage: <literal>message-hook</literal> &lsqb;!&rsqb;<emphasis>pattern</emphasis> <emphasis>command</emphasis>
+        </literallayout>
       </para>
       
       <para>
       </para>
       
       <para>
@@ -4674,9 +4638,9 @@ message-hook '~f freshmeat-news' 'set pager="less \"+/^  subject:.*\""'</screen>
       <title>Choosing the cryptographic key of the recipient  </title>
       
       <para>
       <title>Choosing the cryptographic key of the recipient  </title>
       
       <para>
-        Usage: <literal>crypt-hook</literal> <emphasis>pattern</emphasis> <emphasis>
-          keyid
-        </emphasis>
+        <literallayout>
+Usage: <literal>crypt-hook</literal> <emphasis>pattern</emphasis> <emphasis>keyid</emphasis>
+        </literallayout>
       </para>
       
       <para>
       </para>
       
       <para>
@@ -4707,18 +4671,25 @@ message-hook '~f freshmeat-news' 'set pager="less \"+/^  subject:.*\""'</screen>
       <title>Adding key sequences to the keyboard buffer  </title>
       
       <para>
       <title>Adding key sequences to the keyboard buffer  </title>
       
       <para>
-        Usage: <literal>push</literal> <emphasis>string</emphasis>
+        <literallayout>
+Usage: <literal>push</literal> <emphasis>string</emphasis>
+        </literallayout>
       </para>
       
       <para>
       </para>
       
       <para>
-        This command adds the named string to the keyboard buffer. The string
-        may
-        contain control characters, key names and function names like the
-        sequence
-        string in the <link linkend="macro">macro</link> command. You may use
-        it to
-        automatically run a sequence of commands at startup, or when entering
-        certain folders.
+
+        This command adds the named string to the keyboard buffer. The
+        string may contain control characters, key names and function
+        names like the sequence string in the <link
+          linkend="macro">macro</link> command. You may use it to
+        automatically run a sequence of commands at startup, or when
+        entering certain folders. For example, the following command
+        will automatically collapse all threads when entering a folder:
+
+        <screen>
+folder-hook . 'push &lt;collapse-all&gt;'
+        </screen>
+
       </para>
       
       <para>
       </para>
       
       <para>
@@ -4731,10 +4702,9 @@ message-hook '~f freshmeat-news' 'set pager="less \"+/^  subject:.*\""'</screen>
       <title>Executing functions  </title>
       
       <para>
       <title>Executing functions  </title>
       
       <para>
-        Usage: <literal>exec</literal> <emphasis>function</emphasis> &lsqb; <emphasis>
-          function
-        </emphasis>
-        ... &rsqb;
+        <literallayout>
+Usage: <literal>exec</literal> <emphasis>function</emphasis> &lsqb; <emphasis>function</emphasis> ... &rsqb;
+        </literallayout>
       </para>
       
       <para>
       </para>
       
       <para>
@@ -4753,14 +4723,10 @@ message-hook '~f freshmeat-news' 'set pager="less \"+/^  subject:.*\""'</screen>
       <title>Message Scoring  </title>
       
       <para>
       <title>Message Scoring  </title>
       
       <para>
-        Usage: <literal>score</literal> <emphasis>pattern</emphasis> <emphasis>
-          value
-        </emphasis>
-        
-        Usage: <literal>unscore</literal> <emphasis>pattern</emphasis> &lsqb; <emphasis>
-          pattern
-        </emphasis>
-        ... &rsqb;
+        <literallayout>
+Usage: <literal>score</literal> <emphasis>pattern</emphasis> <emphasis>value</emphasis>
+Usage: <literal>unscore</literal> <emphasis>pattern</emphasis> &lsqb; <emphasis>pattern</emphasis>... &rsqb;
+        </literallayout>
       </para>
       
       <para>
       </para>
       
       <para>
@@ -4897,12 +4863,11 @@ color index  red     yellow  "~n 100-"</screen>
       <title>Spam detection  </title>
       
       <para>
       <title>Spam detection  </title>
       
       <para>
-        Usage: <literal>spam</literal> <emphasis>pattern</emphasis> <emphasis>
-          format
-        </emphasis>
-        
-        Usage: <literal>nospam</literal> <emphasis>pattern</emphasis>
-      </para>
+        <literallayout>
+Usage: <literal>spam</literal> <emphasis>pattern</emphasis> <emphasis>format </emphasis>
+Usage: <literal>nospam</literal> <emphasis>pattern</emphasis>
+        </literallayout>
+        </para>
       
       <para>
         Mutt-ng has generalized support for external spam-scoring filters.
       
       <para>
         Mutt-ng has generalized support for external spam-scoring filters.
@@ -5074,25 +5039,13 @@ spam "^From: .*MAILER-DAEMON"       "999"</screen>
       <title>Setting variables  </title>
       
       <para>
       <title>Setting variables  </title>
       
       <para>
-        Usage: <literal>set</literal> &lsqb;no&verbar;inv&rsqb;<emphasis>
-          variable
-        </emphasis>
-        &lsqb;=<emphasis>value</emphasis>&rsqb; &lsqb; <emphasis>variable</emphasis> ... &rsqb;
-        
-        Usage: <literal>toggle</literal> <emphasis>variable</emphasis> &lsqb;<emphasis>
-          variable
-        </emphasis>
-        ... &rsqb;
-        
-        Usage: <literal>unset</literal> <emphasis>variable</emphasis> &lsqb;<emphasis>
-          variable
-        </emphasis>
-        ... &rsqb;
-        
-        Usage: <literal>reset</literal> <emphasis>variable</emphasis> &lsqb;<emphasis>
-          variable
-        </emphasis>
-        ... &rsqb;
+        <literallayout>
+Usage: <literal>set</literal> &lsqb;no&verbar;inv&rsqb;<emphasis>variable</emphasis>&lsqb;=<emphasis>value</emphasis>&rsqb; &lsqb; <emphasis>variable</emphasis> ... &rsqb;
+Usage: <literal>toggle</literal> <emphasis>variable</emphasis> &lsqb;<emphasis>variable</emphasis>... &rsqb;
+Usage: <literal>unset</literal> <emphasis>variable</emphasis> &lsqb;<emphasis>variable</emphasis>... &rsqb;
+Usage: <literal>reset</literal> <emphasis>variable</emphasis> &lsqb;<emphasis>variable</emphasis>... &rsqb;
+      </literallayout>
+
       </para>
       
       <para>
       </para>
       
       <para>
@@ -5211,10 +5164,9 @@ set ?allow_8bit</screen>
       <title>Reading initialization commands from another file  </title>
       
       <para>
       <title>Reading initialization commands from another file  </title>
       
       <para>
-        Usage: <literal>source</literal> <emphasis>filename</emphasis> &lsqb; <emphasis>
-          filename
-        </emphasis>
-        ... &rsqb;
+        <literallayout>
+Usage: <literal>source</literal> <emphasis>filename</emphasis> &lsqb; <emphasis>filename</emphasis>... &rsqb;
+        </literallayout>
       </para>
       
       <para>
       </para>
       
       <para>
@@ -5250,8 +5202,10 @@ set ?allow_8bit</screen>
       <title>Removing hooks  </title>
       
       <para>
       <title>Removing hooks  </title>
       
       <para>
-        Usage: <literal>unhook</literal> &lsqb; * &verbar; <emphasis>hook-type</emphasis> &rsqb;
-      </para>
+        <literallayout>
+Usage: <literal>unhook</literal> &lsqb; * &verbar; <emphasis>hook-type</emphasis> &rsqb;
+        </literallayout>
+        </para>
       
       <para>
         This command permits you to flush hooks you have previously defined.
       
       <para>
         This command permits you to flush hooks you have previously defined.
@@ -7870,8 +7824,9 @@ append-hook \\.gz$ "gzip -c %t &#62;&#62; %f" </screen>
         <title>Open a compressed mailbox for reading</title>
         
         <para>
         <title>Open a compressed mailbox for reading</title>
         
         <para>
-          Usage: <literal>open-hook</literal> <emphasis>regexp</emphasis>
-          &quot;<emphasis>command</emphasis>&quot;
+          <literallayout>
+Usage: <literal>open-hook</literal> <emphasis>regexp</emphasis> &quot;<emphasis>command</emphasis>&quot;
+          </literallayout>
         </para>
         
         <para>
         </para>
         
         <para>
@@ -7926,8 +7881,9 @@ open-hook \\.gz$ "gzip -cd %f &#62; %t"
         <title>Write a compressed mailbox</title>
         
         <para>
         <title>Write a compressed mailbox</title>
         
         <para>
-          Usage: <literal>close-hook</literal> <emphasis>regexp</emphasis>
-          &quot;<emphasis>command</emphasis>&quot;
+          <literallayout>
+Usage: <literal>close-hook</literal> <emphasis>regexp</emphasis>&quot;<emphasis>command</emphasis>&quot;
+        </literallayout>
         </para>
         
         <para>
         </para>
         
         <para>
@@ -7986,8 +7942,9 @@ close-hook \\.gz$ "gzip -c %t &#62; %f"</screen>
         <title>Append a message to a compressed mailbox</title>
         
         <para>
         <title>Append a message to a compressed mailbox</title>
         
         <para>
-          Usage: <literal>append-hook</literal> <emphasis>regexp</emphasis>
-          &quot;<emphasis>command</emphasis>&quot;
+          <literallayout>
+Usage: <literal>append-hook</literal> <emphasis>regexp</emphasis>&quot;<emphasis>command</emphasis>&quot;
+        </literallayout>
         </para>
         
         <para>
         </para>
         
         <para>
index 1c661cf..fa890ab 100644 (file)
--- a/globals.h
+++ b/globals.h
@@ -95,6 +95,7 @@ WHERE rx_t StripWasRegexp;
 #ifdef USE_SOCKET
 WHERE char *Preconnect INITVAL (NULL);
 WHERE char *Tunnel INITVAL (NULL);
 #ifdef USE_SOCKET
 WHERE char *Preconnect INITVAL (NULL);
 WHERE char *Tunnel INITVAL (NULL);
+WHERE short NetInc;
 #endif /* USE_SOCKET */
 
 #ifdef MIXMASTER
 #endif /* USE_SOCKET */
 
 #ifdef MIXMASTER
index 45d6ba3..ac19298 100644 (file)
@@ -40,6 +40,7 @@ static void cmd_parse_expunge (IMAP_DATA * idata, const char *s);
 static void cmd_parse_lsub (IMAP_DATA* idata, char* s);
 static void cmd_parse_fetch (IMAP_DATA * idata, char *s);
 static void cmd_parse_myrights (IMAP_DATA * idata, char *s);
 static void cmd_parse_lsub (IMAP_DATA* idata, char* s);
 static void cmd_parse_fetch (IMAP_DATA * idata, char *s);
 static void cmd_parse_myrights (IMAP_DATA * idata, char *s);
+static void cmd_parse_search (IMAP_DATA* idata, char* s);
 
 static char *Capabilities[] = {
   "IMAP4",
 
 static char *Capabilities[] = {
   "IMAP4",
@@ -107,6 +108,9 @@ int imap_cmd_step (IMAP_DATA * idata)
       debug_print (3, ("grew buffer to %u bytes\n", cmd->blen));
     }
 
       debug_print (3, ("grew buffer to %u bytes\n", cmd->blen));
     }
 
+    if (len)
+      len--;
+
     c = mutt_socket_readln (cmd->buf + len, cmd->blen - len, idata->conn);
     if (c <= 0) {
       debug_print (1, ("Error reading server response.\n"));
     c = mutt_socket_readln (cmd->buf + len, cmd->blen - len, idata->conn);
     if (c <= 0) {
       debug_print (1, ("Error reading server response.\n"));
@@ -353,6 +357,8 @@ static int cmd_handle_untagged (IMAP_DATA * idata)
     cmd_parse_lsub (idata, s);
   else if (ascii_strncasecmp ("MYRIGHTS", s, 8) == 0)
     cmd_parse_myrights (idata, s);
     cmd_parse_lsub (idata, s);
   else if (ascii_strncasecmp ("MYRIGHTS", s, 8) == 0)
     cmd_parse_myrights (idata, s);
+  else if (ascii_strncasecmp ("SEARCH", s, 6) == 0)
+    cmd_parse_search (idata, s);
   else if (ascii_strncasecmp ("BYE", s, 3) == 0) {
     debug_print (2, ("Handling BYE\n"));
 
   else if (ascii_strncasecmp ("BYE", s, 3) == 0) {
     debug_print (2, ("Handling BYE\n"));
 
@@ -380,6 +386,35 @@ static int cmd_handle_untagged (IMAP_DATA * idata)
   return 0;
 }
 
   return 0;
 }
 
+/* This should be optimised (eg with a tree or hash) */
+static int uid2msgno (IMAP_DATA* idata, unsigned int uid) {
+  int i;
+
+  for (i = 0; i < idata->ctx->msgcount; i++) {
+    HEADER* h = idata->ctx->hdrs[i];
+    if (HEADER_DATA(h)->uid == uid)
+      return i;
+  }
+
+ return -1;
+}
+
+/* cmd_parse_search: store SEARCH response for later use */
+static void cmd_parse_search (IMAP_DATA* idata, char* s) {
+  unsigned int uid;
+  int msgno;
+
+  debug_print (2, ("Handling SEARCH\n"));
+
+  while ((s = imap_next_word (s)) && *s != '\0') {
+    uid = atoi (s);
+    msgno = uid2msgno (idata, uid);
+    
+    if (msgno >= 0)
+      idata->ctx->hdrs[uid2msgno (idata, uid)]->matched = 1;
+  }
+}
+
 /* cmd_make_sequence: make a tag suitable for starting an IMAP command */
 static void cmd_make_sequence (IMAP_DATA * idata)
 {
 /* cmd_make_sequence: make a tag suitable for starting an IMAP command */
 static void cmd_make_sequence (IMAP_DATA * idata)
 {
index 4a34d57..cc9f60c 100644 (file)
@@ -18,7 +18,6 @@
 #include "mutt.h"
 #include "ascii.h"
 #include "buffer.h"
 #include "mutt.h"
 #include "ascii.h"
 #include "buffer.h"
-#include "mutt_curses.h"
 #include "mx.h"
 #include "globals.h"
 #include "sort.h"
 #include "mx.h"
 #include "globals.h"
 #include "sort.h"
@@ -183,7 +182,7 @@ void imap_logout_all (void)
 /* imap_read_literal: read bytes bytes from server into file. Not explicitly
  *   buffered, relies on FILE buffering. NOTE: strips \r from \r\n.
  *   Apparently even literals use \r\n-terminated strings ?! */
 /* imap_read_literal: read bytes bytes from server into file. Not explicitly
  *   buffered, relies on FILE buffering. NOTE: strips \r from \r\n.
  *   Apparently even literals use \r\n-terminated strings ?! */
-int imap_read_literal (FILE * fp, IMAP_DATA * idata, long bytes)
+int imap_read_literal (FILE * fp, IMAP_DATA * idata, long bytes, progress_t* bar)
 {
   long pos;
   char c;
 {
   long pos;
   char c;
@@ -212,6 +211,8 @@ int imap_read_literal (FILE * fp, IMAP_DATA * idata, long bytes)
       r = 0;
 #endif
     fputc (c, fp);
       r = 0;
 #endif
     fputc (c, fp);
+    if (bar && pos % 1024)
+      mutt_progress_bar (bar, pos);
 #ifdef DEBUG
     if (DebugLevel >= IMAP_LOG_LTRL)
       fputc (c, DebugFile);
 #ifdef DEBUG
     if (DebugLevel >= IMAP_LOG_LTRL)
       fputc (c, DebugFile);
@@ -1224,6 +1225,139 @@ int imap_mailbox_check (char *path, int new)
   return msgcount;
 }
 
   return msgcount;
 }
 
+/* returns number of patterns in the search that should be done server-side
+ * (eg are full-text) */
+static int do_search (const pattern_t* search, int allpats)
+{
+  int rc = 0;
+  const pattern_t* pat;
+
+  for (pat = search; pat; pat = pat->next) {
+    switch (pat->op) {
+      case M_BODY:
+      case M_HEADER:
+      case M_WHOLE_MSG:
+        if (pat->stringmatch)
+          rc++;
+        break;
+      default:
+      if (pat->child && do_search (pat->child, 1))
+        rc++;
+    }
+
+    if (!allpats)
+      break;
+  }
+
+  return rc;
+}
+
+/* convert mutt pattern_t to IMAP SEARCH command containing only elements
+* that require full-text search (mutt already has what it needs for most
+* match types, and does a better job (eg server doesn't support regexps). */
+static int imap_compile_search (const pattern_t* pat, BUFFER* buf)
+{
+  char term[STRING];
+
+  if (! do_search (pat, 0))
+    return 0;
+
+  if (pat->not)
+    mutt_buffer_addstr (buf, "NOT ");
+
+  if (pat->child) {
+    int clauses;
+
+    if ((clauses = do_search (pat->child, 1)) > 0) {
+      const pattern_t* clause = pat->child;
+
+      mutt_buffer_addch (buf, '(');
+
+      while (clauses) {
+        if (do_search (clause, 0)) {
+          if (pat->op == M_OR && clauses > 1)
+            mutt_buffer_addstr (buf, "OR ");
+          clauses--;
+          if (imap_compile_search (clause, buf) < 0)
+            return -1;
+
+          if (clauses)
+            mutt_buffer_addch (buf, ' ');
+          
+          clause = clause->next;
+        }
+      }
+
+      mutt_buffer_addch (buf, ')');
+    }
+  } else {
+    char *delim;
+
+    switch (pat->op) {
+      case M_HEADER:
+        mutt_buffer_addstr (buf, "HEADER ");
+
+        /* extract header name */
+        if (! (delim = strchr (pat->str, ':'))) {
+          mutt_error (_("Header search without header name: %s"), pat->str);
+          return -1;
+        }
+        *delim = '\0';
+        imap_quote_string (term, sizeof (term), pat->str);
+        mutt_buffer_addstr (buf, term);
+        mutt_buffer_addch (buf, ' ');
+
+        /* and field */
+        *delim = ':';
+        delim++;
+        SKIPWS(delim);
+        imap_quote_string (term, sizeof (term), delim);
+        mutt_buffer_addstr (buf, term);
+        break;
+
+      case M_BODY:
+        mutt_buffer_addstr (buf, "BODY ");
+        imap_quote_string (term, sizeof (term), pat->str);
+        mutt_buffer_addstr (buf, term);
+        break;
+
+      case M_WHOLE_MSG:
+        mutt_buffer_addstr (buf, "TEXT ");
+        imap_quote_string (term, sizeof (term), pat->str);
+        mutt_buffer_addstr (buf, term);
+      break;
+    }
+  }
+
+  return 0;
+}
+
+int imap_search (CONTEXT* ctx, const pattern_t* pat) {
+  BUFFER buf;
+  IMAP_DATA* idata = (IMAP_DATA*)ctx->data;
+  int i;
+
+  for (i = 0; i < ctx->msgcount; i++)
+    ctx->hdrs[i]->matched = 0;
+
+  if (!do_search (pat, 1))
+    return 0;
+
+  memset (&buf, 0, sizeof (buf));
+  mutt_buffer_addstr (&buf, "UID SEARCH ");
+  if (imap_compile_search (pat, &buf) < 0) {
+    mem_free (&buf.data);
+    return -1;
+  }
+  if (imap_exec (idata, buf.data, 0) < 0) {
+    mem_free (&buf.data);
+    return -1;
+  }
+
+  mem_free (&buf.data);
+  return 0;
+}
+
 /* all this listing/browsing is a mess. I don't like that name is a pointer
  *   into idata->buf (used to be a pointer into the passed in buffer, just
  *   as bad), nor do I like the fact that the fetch is done here. This
 /* all this listing/browsing is a mess. I don't like that name is a pointer
  *   into idata->buf (used to be a pointer into the passed in buffer, just
  *   as bad), nor do I like the fact that the fetch is done here. This
index c5cdf4b..6d661e6 100644 (file)
@@ -31,6 +31,7 @@ int imap_sync_mailbox (CONTEXT * ctx, int expunge, int *index_hint);
 void imap_close_mailbox (CONTEXT * ctx);
 int imap_buffy_check (char *path);
 int imap_mailbox_check (char *path, int new);
 void imap_close_mailbox (CONTEXT * ctx);
 int imap_buffy_check (char *path);
 int imap_mailbox_check (char *path, int new);
+int imap_search (CONTEXT* ctx, const pattern_t* pat);
 int imap_subscribe (char *path, int subscribe);
 int imap_complete (char *dest, size_t dlen, char *path);
 
 int imap_subscribe (char *path, int subscribe);
 int imap_complete (char *dest, size_t dlen, char *path);
 
index dd531f8..0c91e7e 100644 (file)
@@ -15,6 +15,7 @@
 
 #include "imap.h"
 #include "mutt_socket.h"
 
 #include "imap.h"
 #include "mutt_socket.h"
+#include "mutt_curses.h"
 
 /* -- symbols -- */
 #define IMAP_PORT 143
 
 /* -- symbols -- */
 #define IMAP_PORT 143
@@ -173,7 +174,7 @@ int imap_open_connection (IMAP_DATA * idata);
 IMAP_DATA *imap_conn_find (const ACCOUNT * account, int flags);
 int imap_parse_list_response (IMAP_DATA * idata, char **name, int *noselect,
                               int *noinferiors, char *delim);
 IMAP_DATA *imap_conn_find (const ACCOUNT * account, int flags);
 int imap_parse_list_response (IMAP_DATA * idata, char **name, int *noselect,
                               int *noinferiors, char *delim);
-int imap_read_literal (FILE * fp, IMAP_DATA * idata, long bytes);
+int imap_read_literal (FILE * fp, IMAP_DATA * idata, long bytes, progress_t*);
 void imap_expunge_mailbox (IMAP_DATA * idata);
 int imap_reconnect (CONTEXT * ctx);
 void imap_logout (IMAP_DATA * idata);
 void imap_expunge_mailbox (IMAP_DATA * idata);
 int imap_reconnect (CONTEXT * ctx);
 void imap_logout (IMAP_DATA * idata);
index 3653c53..58fe61f 100644 (file)
@@ -325,6 +325,7 @@ int imap_fetch_message (MESSAGE * msg, CONTEXT * ctx, int msgno)
   IMAP_CACHE *cache;
   int read;
   int rc;
   IMAP_CACHE *cache;
   int read;
   int rc;
+  progress_t bar;
 
   /* Sam's weird courier server returns an OK response even when FETCH
    * fails. Thanks Sam. */
 
   /* Sam's weird courier server returns an OK response even when FETCH
    * fails. Thanks Sam. */
@@ -395,7 +396,10 @@ int imap_fetch_message (MESSAGE * msg, CONTEXT * ctx, int msgno)
             imap_error ("imap_fetch_message()", buf);
             goto bail;
           }
             imap_error ("imap_fetch_message()", buf);
             goto bail;
           }
-          if (imap_read_literal (msg->fp, idata, bytes) < 0)
+          bar.size = bytes;
+          bar.msg = _("Fetching message...");
+          mutt_progress_bar (&bar, 0);
+          if (imap_read_literal (msg->fp, idata, bytes, &bar) < 0)
             goto bail;
           /* pick up trailing line */
           if ((rc = imap_cmd_step (idata)) != IMAP_CMD_CONTINUE)
             goto bail;
           /* pick up trailing line */
           if ((rc = imap_cmd_step (idata)) != IMAP_CMD_CONTINUE)
@@ -492,6 +496,8 @@ int imap_append_message (CONTEXT * ctx, MESSAGE * msg)
   int c, last;
   IMAP_MBOX mx;
   int rc;
   int c, last;
   IMAP_MBOX mx;
   int rc;
+  progress_t bar;
+  size_t sent;
 
   idata = (IMAP_DATA *) ctx->data;
 
 
   idata = (IMAP_DATA *) ctx->data;
 
@@ -519,6 +525,10 @@ int imap_append_message (CONTEXT * ctx, MESSAGE * msg)
   }
   rewind (fp);
 
   }
   rewind (fp);
 
+  bar.msg = _("Uploading message...");
+  bar.size = len;
+  mutt_progress_bar (&bar, 0);
+
   imap_munge_mbox_name (mbox, sizeof (mbox), mailbox);
   snprintf (buf, sizeof (buf), "APPEND %s (%s%s%s%s%s) {%lu}", mbox,
             msg->flags.read ? "\\Seen" : "",
   imap_munge_mbox_name (mbox, sizeof (mbox), mailbox);
   snprintf (buf, sizeof (buf), "APPEND %s (%s%s%s%s%s) {%lu}", mbox,
             msg->flags.read ? "\\Seen" : "",
@@ -548,16 +558,17 @@ int imap_append_message (CONTEXT * ctx, MESSAGE * msg)
     goto fail;
   }
 
     goto fail;
   }
 
-  mutt_message _("Uploading message ...");
-
-  for (last = EOF, len = 0; (c = fgetc (fp)) != EOF; last = c) {
+  for (last = EOF, sent = len = 0; (c = fgetc (fp)) != EOF; last = c) {
     if (c == '\n' && last != '\r')
       buf[len++] = '\r';
 
     buf[len++] = c;
 
     if (c == '\n' && last != '\r')
       buf[len++] = '\r';
 
     buf[len++] = c;
 
-    if (len > sizeof (buf) - 3)
+    if (len > sizeof (buf) - 3) {
+      sent += len;
       flush_buffer (buf, &len, idata->conn);
       flush_buffer (buf, &len, idata->conn);
+      mutt_progress_bar (&bar, sent);
+    }
   }
 
   if (len)
   }
 
   if (len)
@@ -856,7 +867,7 @@ static int msg_fetch_header (CONTEXT * ctx, IMAP_HEADER * h, char *buf,
     return rc;
 
   if (imap_get_literal_count (buf, &bytes) == 0) {
     return rc;
 
   if (imap_get_literal_count (buf, &bytes) == 0) {
-    imap_read_literal (fp, idata, bytes);
+    imap_read_literal (fp, idata, bytes, NULL);
 
     /* we may have other fields of the FETCH _after_ the literal
      * (eg Domino puts FLAGS here). Nothing wrong with that, either.
 
     /* we may have other fields of the FETCH _after_ the literal
      * (eg Domino puts FLAGS here). Nothing wrong with that, either.
index 8d7d206..95e8fd6 100644 (file)
@@ -234,8 +234,11 @@ void imap_utf7_encode (char **s)
   if (Charset) {
     char *t = str_dup (*s);
 
   if (Charset) {
     char *t = str_dup (*s);
 
-    if (!mutt_convert_string (&t, Charset, "UTF-8", 0))
-      utf8_to_utf7 (t, str_len (t), s, 0);
+    if (!mutt_convert_string (&t, Charset, "UTF-8", 0)) {
+      char *u7 = utf8_to_utf7 (t, strlen (t), NULL, 0);
+      mem_free (s);
+      *s = u7;
+    }
     mem_free (&t);
   }
 }
     mem_free (&t);
   }
 }
diff --git a/init.c b/init.c
index b9fbf58..40a488a 100644 (file)
--- a/init.c
+++ b/init.c
@@ -2290,6 +2290,7 @@ void mutt_init (int skip_sys_rc, LIST * commands)
 
     Realname = str_dup (mutt_gecos_name (rnbuf, sizeof (rnbuf), pw));
     Shell = str_dup (pw->pw_shell);
 
     Realname = str_dup (mutt_gecos_name (rnbuf, sizeof (rnbuf), pw));
     Shell = str_dup (pw->pw_shell);
+    endpwent ();
   }
   else {
     if (!Homedir) {
   }
   else {
     if (!Homedir) {
diff --git a/init.h b/init.h
index 62213d7..be6a7bb 100644 (file)
--- a/init.h
+++ b/init.h
@@ -953,7 +953,7 @@ struct option_t MuttVars[] = {
    ** .pp
    ** When \fIset\fP, 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
    ** .pp
    ** When \fIset\fP, 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
-   ** $$hide_missing is set, this option will have no effect.
+   ** $$hide_missing is \fIset\fP, this option will have no effect.
    */
   {"hide_top_missing", DT_BOOL, R_TREE|R_INDEX, OPTHIDETOPMISSING, "yes" },
   /*
    */
   {"hide_top_missing", DT_BOOL, R_TREE|R_INDEX, OPTHIDETOPMISSING, "yes" },
   /*
@@ -1892,6 +1892,17 @@ struct option_t MuttVars[] = {
    ** was connection lost.
    */
 #endif
    ** was connection lost.
    */
 #endif
+#ifdef USE_SOCKET
+  { "net_inc", DT_NUM, R_NONE, UL &NetInc, "10" },
+  /*
+  ** .pp
+  ** Operations that expect to transfer a large amount of data over the
+  ** network will update their progress every \fInet_inc\fP kilobytes.
+  ** If set to 0, no progress messages will be displayed.
+  ** .pp
+  ** See also ``$$read_inc'' and ``$$write_inc''.
+  */
+#endif 
   {"pager", DT_PATH, R_NONE, UL &Pager, "builtin"},
   /*
    ** .pp
   {"pager", DT_PATH, R_NONE, UL &Pager, "builtin"},
   /*
    ** .pp
@@ -3535,7 +3546,9 @@ struct option_t MuttVars[] = {
    ** 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
    ** 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.
+   ** the subject ``hi'' which will get grouped together. See also
+   ** ``$$sort_re'' for a less drastic way of controlling this
+   ** behaviour.
    */
   {"strip_was", DT_BOOL, R_NONE, OPTSTRIPWAS, "no" },
   /**
    */
   {"strip_was", DT_BOOL, R_NONE, OPTSTRIPWAS, "no" },
   /**
diff --git a/mutt.h b/mutt.h
index 688d550..7e8e495 100644 (file)
--- a/mutt.h
+++ b/mutt.h
@@ -767,7 +767,7 @@ typedef struct thread {
 
 
 /* flag to mutt_pattern_comp() */
 
 
 /* flag to mutt_pattern_comp() */
-#define M_FULL_MSG     1       /* enable body and header matching */
+#define M_FULL_MSG      (1<<0)       /* enable body and header matching */
 
 typedef enum {
   M_MATCH_FULL_ADDRESS = 1
 
 typedef enum {
   M_MATCH_FULL_ADDRESS = 1
@@ -775,12 +775,14 @@ typedef enum {
 
 typedef struct pattern_t {
   short op;
 
 typedef struct pattern_t {
   short op;
-  short not;
-  short alladdr;
+  unsigned int not : 1;
+  unsigned int alladdr : 1;
+  unsigned int stringmatch : 1;
   int min;
   int max;
   struct pattern_t *next;
   struct pattern_t *child;      /* arguments to logical op */
   int min;
   int max;
   struct pattern_t *next;
   struct pattern_t *child;      /* arguments to logical op */
+  char* str;
   regex_t *rx;
 } pattern_t;
 
   regex_t *rx;
 } pattern_t;
 
index 2c3a314..5d7b9ea 100644 (file)
@@ -7,6 +7,8 @@
  * It's licensed under the GNU General Public License,
  * please see the file GPL in the top level source directory.
  */
  * It's licensed under the GNU General Public License,
  * please see the file GPL in the top level source directory.
  */
+#ifndef _MUTT_CURSES_H
+#define _MUTT_CURSES_H
 
 #ifdef USE_SLANG_CURSES
 
 
 #ifdef USE_SLANG_CURSES
 
@@ -129,6 +131,15 @@ typedef struct color_line {
   struct color_line *next;
 } COLOR_LINE;
 
   struct color_line *next;
 } COLOR_LINE;
 
+typedef struct {
+  const char* msg;
+  long pos;
+  long size;
+  char sizestr[SHORT_STRING];
+} progress_t;
+
+void mutt_progress_bar (progress_t* progress, long pos);
+
 extern int *ColorQuote;
 extern int ColorQuoteUsed;
 extern int ColorDefs[];
 extern int *ColorQuote;
 extern int ColorQuoteUsed;
 extern int ColorDefs[];
@@ -167,3 +178,5 @@ extern int wclear ();
 extern int waddstr ();
 extern int wclrtoeol ();
 #endif
 extern int waddstr ();
 extern int wclrtoeol ();
 #endif
+
+#endif /* !_MUTT_CURSES_H */
index b615a52..9fd1cdd 100644 (file)
@@ -429,6 +429,10 @@ void mutt_sasl_setup_conn (CONNECTION * conn, sasl_conn_t * saslconn)
   conn->conn_write = mutt_sasl_conn_write;
 }
 
   conn->conn_write = mutt_sasl_conn_write;
 }
 
+void mutt_sasl_done (void) {
+  sasl_done ();
+}
+
 /* mutt_sasl_cb_log: callback to log SASL messages */
 static int mutt_sasl_cb_log (void *context, int priority, const char *message)
 {
 /* mutt_sasl_cb_log: callback to log SASL messages */
 static int mutt_sasl_cb_log (void *context, int priority, const char *message)
 {
index 5286af1..9896cc5 100644 (file)
@@ -24,6 +24,7 @@ int mutt_sasl_client_new (CONNECTION *, sasl_conn_t **);
 sasl_callback_t *mutt_sasl_get_callbacks (ACCOUNT *);
 int mutt_sasl_interact (sasl_interact_t *);
 void mutt_sasl_setup_conn (CONNECTION *, sasl_conn_t *);
 sasl_callback_t *mutt_sasl_get_callbacks (ACCOUNT *);
 int mutt_sasl_interact (sasl_interact_t *);
 void mutt_sasl_setup_conn (CONNECTION *, sasl_conn_t *);
+void mutt_sasl_done (void);
 
 typedef struct {
   sasl_conn_t *saslconn;
 
 typedef struct {
   sasl_conn_t *saslconn;
diff --git a/mx.c b/mx.c
index fc2a908..27947b4 100644 (file)
--- a/mx.c
+++ b/mx.c
@@ -201,6 +201,7 @@ int mx_lock_file (const char *path, int fd, int excl, int dot, int timeout)
 
   count = 0;
   attempt = 0;
 
   count = 0;
   attempt = 0;
+  prev_sb.st_size = 0;
   while (fcntl (fd, F_SETLK, &lck) == -1) {
     struct stat sb;
 
   while (fcntl (fd, F_SETLK, &lck) == -1) {
     struct stat sb;
 
diff --git a/pager.c b/pager.c
index 57a5509..752792b 100644 (file)
--- a/pager.c
+++ b/pager.c
@@ -64,6 +64,10 @@ static const char *Mailbox_is_read_only = N_("Mailbox is read-only.");
 static const char *Function_not_permitted_in_attach_message_mode =
 N_("Function not permitted in attach-message mode.");
 
 static const char *Function_not_permitted_in_attach_message_mode =
 N_("Function not permitted in attach-message mode.");
 
+/* hack to return to position when returning from index to same message */
+static int TopLine = 0;
+static HEADER *OldHdr = NULL;
+
 #define CHECK_MODE(x)  if (!(x)) \
                        { \
                                mutt_flushinp (); \
 #define CHECK_MODE(x)  if (!(x)) \
                        { \
                                mutt_flushinp (); \
@@ -1693,6 +1697,18 @@ mutt_pager (const char *banner, const char *fname, int flags, pager_t * extra)
 
     move (statusoffset, COLS - 1);
     mutt_refresh ();
 
     move (statusoffset, COLS - 1);
     mutt_refresh ();
+
+    if (IsHeader (extra) && OldHdr == extra->hdr && TopLine != topline
+        && lineInfo[curline].offset < sb.st_size-1) {
+      if (TopLine - topline > lines)
+        topline += lines;
+      else
+        topline = TopLine;
+      continue;
+    }
+    else
+      OldHdr = NULL;
+
     ch = km_dokey (MENU_PAGER);
     if (ch != -1)
       mutt_clear_error ();
     ch = km_dokey (MENU_PAGER);
     if (ch != -1)
       mutt_clear_error ();
@@ -2591,8 +2607,13 @@ mutt_pager (const char *banner, const char *fname, int flags, pager_t * extra)
   }
 
   fclose (fp);
   }
 
   fclose (fp);
-  if (IsHeader (extra))
+  if (IsHeader (extra)) {
     Context->msgnotreadyet = -1;
     Context->msgnotreadyet = -1;
+    if (rc != -1) {
+      TopLine = topline;
+      OldHdr = extra->hdr;
+    }
+  }
 
   cleanup_quote (&QuoteList);
 
 
   cleanup_quote (&QuoteList);
 
diff --git a/parse.c b/parse.c
index c5b6aac..ea5c9b8 100644 (file)
--- a/parse.c
+++ b/parse.c
@@ -38,7 +38,7 @@
  * lines.  ``line'' must point to a dynamically allocated string; it is
  * increased if more space is required to fit the whole line.
  */
  * lines.  ``line'' must point to a dynamically allocated string; it is
  * increased if more space is required to fit the whole line.
  */
-static char *read_rfc822_line (FILE * f, char *line, size_t * linelen)
+char *mutt_read_rfc822_line (FILE * f, char *line, size_t * linelen)
 {
   char *buf = line;
   char ch;
 {
   char *buf = line;
   char ch;
@@ -425,7 +425,7 @@ BODY *mutt_read_mime_header (FILE * fp, int digest)
   p->type = digest ? TYPEMESSAGE : TYPETEXT;
   p->disposition = DISPINLINE;
 
   p->type = digest ? TYPEMESSAGE : TYPETEXT;
   p->disposition = DISPINLINE;
 
-  while (*(line = read_rfc822_line (fp, line, &linelen)) != 0) {
+  while (*(line = mutt_read_rfc822_line (fp, line, &linelen)) != 0) {
     /* Find the value of the current header */
     if ((c = strchr (line, ':'))) {
       *c = 0;
     /* Find the value of the current header */
     if ((c = strchr (line, ':'))) {
       *c = 0;
@@ -1320,7 +1320,7 @@ ENVELOPE *mutt_read_rfc822_header (FILE * f, HEADER * hdr, short user_hdrs,
   }
 
   while ((loc = ftell (f)),
   }
 
   while ((loc = ftell (f)),
-         *(line = read_rfc822_line (f, line, &linelen)) != 0) {
+         *(line = mutt_read_rfc822_line (f, line, &linelen)) != 0) {
     matched = 0;
 
     if ((p = strpbrk (line, ": \t")) == NULL || *p != ':') {
     matched = 0;
 
     if ((p = strpbrk (line, ": \t")) == NULL || *p != ':') {
diff --git a/pgp.c b/pgp.c
index 11d8988..93c7733 100644 (file)
--- a/pgp.c
+++ b/pgp.c
@@ -228,7 +228,7 @@ static void pgp_copy_clearsigned (FILE * fpin, STATE * s, char *charset)
 int pgp_application_pgp_handler (BODY * m, STATE * s)
 {
   int needpass = -1, pgp_keyblock = 0;
 int pgp_application_pgp_handler (BODY * m, STATE * s)
 {
   int needpass = -1, pgp_keyblock = 0;
-  int c;
+  int c = 1;
   int clearsign = 0, rv, rc;
   long start_pos = 0;
   long bytes, last_pos, offset;
   int clearsign = 0, rv, rc;
   long start_pos = 0;
   long bytes, last_pos, offset;
index 44b7cbb..1c93f53 100644 (file)
--- a/protos.h
+++ b/protos.h
@@ -68,6 +68,7 @@ BODY *mutt_read_mime_header (FILE *, int);
 CONTENT *mutt_get_content_info (const char *fname, BODY * b);
 
 LIST *mutt_make_references (ENVELOPE * e);
 CONTENT *mutt_get_content_info (const char *fname, BODY * b);
 
 LIST *mutt_make_references (ENVELOPE * e);
+char* mutt_read_rfc822_line (FILE*, char*, size_t*);
 LIST *mutt_parse_references (char *, int);
 
 ENVELOPE *mutt_read_rfc822_header (FILE *, HEADER *, short, short);
 LIST *mutt_parse_references (char *, int);
 
 ENVELOPE *mutt_read_rfc822_header (FILE *, HEADER *, short, short);