From: pdmef Date: Thu, 18 Aug 2005 17:36:03 +0000 (+0000) Subject: Rocco Rutte: X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=commitdiff_plain;h=7dfb91fd9512d4352faf51e4f306a61bec2f43b3 Rocco Rutte: - implement feature request #645 via $max_display_recips git-svn-id: svn://svn.berlios.de/mutt-ng/trunk@411 e385b8ad-14ed-0310-8656-cc95a2468c6d --- diff --git a/UPGRADING b/UPGRADING index b93493a..172b3e1 100644 --- a/UPGRADING +++ b/UPGRADING @@ -10,6 +10,10 @@ This document is not the place for verbose documentation; it only offers the necessary keywords to look them up in the manual, ChangeLog or other sources of information. +2005-08-18: + + The $max_display_recips option has been added. + 2005-08-13: The $smtp_envelope option has been added. diff --git a/copy.c b/copy.c index b7ca57e..3b7e44e 100644 --- a/copy.c +++ b/copy.c @@ -52,6 +52,7 @@ mutt_copy_hdr (FILE * in, FILE * out, long off_start, long off_end, int flags, int x; char *this_one = NULL; int error; + int curline = 0; if (ftell (in) != off_start) fseek (in, off_start, 0); @@ -138,6 +139,12 @@ mutt_copy_hdr (FILE * in, FILE * out, long off_start, long off_end, int flags, /* Is it the begining of a header? */ if (nl && buf[0] != ' ' && buf[0] != '\t') { + + /* set curline to 1 for To:/Cc:/Bcc: and 0 otherwise */ + curline = (flags & CH_WEED) && (ascii_strncmp ("To:", buf, 3) == 0 || + ascii_strncmp ("Cc:", buf, 3) == 0 || + ascii_strncmp ("Bcc:", buf, 4) == 0); + /* Do we have anything pending? */ if (this_one) { if (flags & CH_DECODE) { @@ -214,11 +221,19 @@ mutt_copy_hdr (FILE * in, FILE * out, long off_start, long off_end, int flags, debug_print (2, ("Reorder: x = %d; hdr_count = %d\n", x, hdr_count)); if (!this_one) this_one = str_dup (buf); - else { + /* we do want to see all lines if this header doesn't feature + * abbreviations (curline is 0), $max_display_recips is 0 and + * while the number hasn't reached $max_display_recips yet */ + else if (curline == 0 || MaxDispRecips == 0 || ++curline <= MaxDispRecips) { mem_realloc (&this_one, str_len (this_one) + str_len (buf) + sizeof (char)); strcat (this_one, buf); /* __STRCAT_CHECKED__ */ + /* only for the first line which doesn't exeeds + * $max_display_recips: abbreviate it */ + } else if (curline == MaxDispRecips+1) { + mem_realloc (&this_one, str_len (this_one) + 5); + strcat (this_one, " ..."); } } } /* while (ftell (in) < off_end) */ diff --git a/doc/manual.txt b/doc/manual.txt index 0c263a3..d92203e 100644 --- a/doc/manual.txt +++ b/doc/manual.txt @@ -413,7 +413,7 @@ +o cclleeaarr--ffllaagg (default: W) Furthermore, the following flags reflect who the message is addressed to. They - can be customized with the _$_t_o___c_h_a_r_s (section 7.4.323 , page 165) variable. + can be customized with the _$_t_o___c_h_a_r_s (section 7.4.324 , page 165) variable. + message is to you and you only @@ -497,7 +497,7 @@ _2_._5_._3 _T_h_r_e_a_d_e_d _M_o_d_e - When the mailbox is _s_o_r_t_e_d (section 7.4.291 , page 155) by _t_h_r_e_a_d_s, there are + When the mailbox is _s_o_r_t_e_d (section 7.4.292 , page 155) by _t_h_r_e_a_d_s, there are a few additional functions available in the _i_n_d_e_x and _p_a_g_e_r modes. ^D delete-thread delete all messages in the current thread @@ -522,7 +522,7 @@ _$_i_n_d_e_x___f_o_r_m_a_t (section 7.4.110 , page 111) to optionally display the number of hidden messages if the thread is collapsed. - See also: _$_s_t_r_i_c_t___t_h_r_e_a_d_s (section 7.4.312 , page 163). + See also: _$_s_t_r_i_c_t___t_h_r_e_a_d_s (section 7.4.313 , page 163). _2_._5_._4 _M_i_s_c_e_l_l_a_n_e_o_u_s _F_u_n_c_t_i_o_n_s @@ -613,9 +613,9 @@ (default: |) Asks for an external Unix command and pipes the current or tagged message(s) to - it. The variables _$_p_i_p_e___d_e_c_o_d_e (section 7.4.200 , page 134), _$_p_i_p_e___s_p_l_i_t - (section 7.4.202 , page 135), _$_p_i_p_e___s_e_p (section 7.4.201 , page 135) and - _$_w_a_i_t___k_e_y (section 7.4.335 , page 167) control the exact behavior of this + it. The variables _$_p_i_p_e___d_e_c_o_d_e (section 7.4.201 , page 134), _$_p_i_p_e___s_p_l_i_t + (section 7.4.203 , page 135), _$_p_i_p_e___s_e_p (section 7.4.202 , page 135) and + _$_w_a_i_t___k_e_y (section 7.4.336 , page 167) control the exact behavior of this function. rreesseenndd--mmeessssaaggee @@ -625,7 +625,7 @@ message. This function is best described as "recall from arbitrary folders". It can conveniently be used to forward MIME messages while preserving the orig- inal mail structure. Note that the amount of headers included here depends on - the value of the _$_w_e_e_d (section 7.4.336 , page 168) variable. + the value of the _$_w_e_e_d (section 7.4.337 , page 168) variable. This function is also available from the attachment menu. You can use this to easily resend a message which was included with a bounce message as a mes- @@ -635,14 +635,14 @@ (default: !) Asks for an external Unix command and executes it. The _$_w_a_i_t___k_e_y (section - 7.4.335 , page 167) can be used to control whether Mutt-ng will wait for a key + 7.4.336 , page 167) can be used to control whether Mutt-ng will wait for a key to be pressed when the command returns (presumably to let the user read the output of the command), based on the return status of the named command. ttooggggllee--qquuootteedd (default: T) - The _p_a_g_e_r uses the _$_q_u_o_t_e___r_e_g_e_x_p (section 7.4.225 , page 140) variable to + The _p_a_g_e_r uses the _$_q_u_o_t_e___r_e_g_e_x_p (section 7.4.226 , page 140) variable to detect quoted text when displaying the body of the message. This function tog- gles the display of the quoted material in the message. It is particularly useful when are interested in just the response and there is a large amount of @@ -755,7 +755,7 @@ sages from. You can now tag messages in that folder and they will be attached to the message you are sending. Note that certain operations like composing a new mail, replying, forwarding, etc. are not permitted when you are in that - folder. The %r in _$_s_t_a_t_u_s___f_o_r_m_a_t (section 7.4.308 , page 160) will change to a + folder. The %r in _$_s_t_a_t_u_s___f_o_r_m_a_t (section 7.4.309 , page 160) will change to a 'A' to indicate that you are in attach-message mode. The Mutt Next Generation E-Mail Client 16 @@ -872,7 +872,7 @@ Pgp: [ E | S | S_<_i_d_> ] ``E'' encrypts, ``S'' signs and ``S'' signs with the given key, setting - _$_p_g_p___s_i_g_n___a_s (section 7.4.192 , page 133) permanently. + _$_p_g_p___s_i_g_n___a_s (section 7.4.193 , page 133) permanently. If you have told mutt to PGP encrypt a message, it will guide you through a key selection process when you try to send the message. Mutt-ng will not ask you @@ -890,7 +890,7 @@ encrypted using the selected public keys, and sent out. Most fields of the entries in the key selection menu (see also _$_p_g_p___e_n_t_r_y___f_o_r_- - _m_a_t (section 7.4.179 , page 130)) have obvious meanings. But some explana- + _m_a_t (section 7.4.180 , page 130)) have obvious meanings. But some explana- tions on the capabilities, flags, and validity fields are in order. The flags sequence (%f) will expand to one of the following flags: @@ -947,7 +947,7 @@ leave the menu, or accept them pressing (by default) the Return key. Note that different remailers do have different capabilities, indicated in the - %c entry of the remailer menu lines (see _$_m_i_x___e_n_t_r_y___f_o_r_m_a_t (section 7.4.139 , + %c entry of the remailer menu lines (see _$_m_i_x___e_n_t_r_y___f_o_r_m_a_t (section 7.4.140 , page 119)). Most important is the ``middleman'' capability, indicated by a capital ``M'': This means that the remailer in question cannot be used as the final element of a chain, but will only forward messages to other mixmaster @@ -1001,7 +1001,7 @@ At times it is desirable to delay sending a message that you have already begun to compose. When the _p_o_s_t_p_o_n_e_-_m_e_s_s_a_g_e function is used in the _c_o_m_p_o_s_e menu, the body of your message and attachments are stored in the mailbox specified by - the _$_p_o_s_t_p_o_n_e_d (section 7.4.214 , page 138) variable. This means that you can + the _$_p_o_s_t_p_o_n_e_d (section 7.4.215 , page 138) variable. This means that you can recall the message even if you exit Mutt-ng and then restart it at a later time. @@ -1019,7 +1019,7 @@ be in the same folder with the message you replied to for the status of the message to be updated. - See also the _$_p_o_s_t_p_o_n_e (section 7.4.213 , page 137) quad-option. + See also the _$_p_o_s_t_p_o_n_e (section 7.4.214 , page 137) quad-option. _3_. _C_o_n_f_i_g_u_r_a_t_i_o_n @@ -1299,7 +1299,7 @@ mailboxes to execute _c_o_m_m_a_n_d before loading. If a mailbox matches multiple folder-hook's, they are executed in the order given in the muttrc. - NNoottee:: if you use the ``!'' shortcut for _$_s_p_o_o_l_f_i_l_e (section 7.4.297 , page + NNoottee:: if you use the ``!'' shortcut for _$_s_p_o_o_l_f_i_l_e (section 7.4.298 , page 157) at the beginning of the pattern, you must place it inside of double or single quotes in order to distinguish it from the logical _n_o_t operator for the expression. @@ -1390,7 +1390,7 @@ +o normal - +o quoted (text matching _$_q_u_o_t_e___r_e_g_e_x_p (section 7.4.225 , page 140) in the + +o quoted (text matching _$_q_u_o_t_e___r_e_g_e_x_p (section 7.4.226 , page 140) in the body of a message) +o quoted1, quoted2, ..., quotedNN (higher levels of quoting) @@ -1517,7 +1517,7 @@ instance, when replying to a message that you sent to a different party, mutt will automatically suggest to send the response to the original message's recipients -- responding to yourself won't make much sense in many cases. (See - _$_r_e_p_l_y___t_o (section 7.4.233 , page 142).) + _$_r_e_p_l_y___t_o (section 7.4.234 , page 142).) Many users receive e-mail under a number of different addresses. To fully use mutt's features here, the program must be able to recognize what e-mail @@ -1689,7 +1689,7 @@ executed, so if these names contain _s_h_o_r_t_c_u_t _c_h_a_r_a_c_t_e_r_s (section 4.9 , page 56) (such as ``='' and ``!''), any variable definition that affect these char- acters (like _$_f_o_l_d_e_r (section 7.4.64 , page 100) and _$_s_p_o_o_l_f_i_l_e (section - 7.4.297 , page 157)) should be executed before the mailboxes command. + 7.4.298 , page 157)) should be executed before the mailboxes command. _3_._1_5 _U_s_e_r _d_e_f_i_n_e_d _h_e_a_d_e_r_s @@ -1766,10 +1766,10 @@ Usage: fcc-hook [!]_p_a_t_t_e_r_n _m_a_i_l_b_o_x This command is used to save outgoing mail in a mailbox other than _$_r_e_c_o_r_d - (section 7.4.230 , page 141). Mutt-ng searches the initial list of message + (section 7.4.231 , page 141). Mutt-ng searches the initial list of message recipients for the first matching _r_e_g_e_x_p and uses _m_a_i_l_b_o_x as the default Fcc: mailbox. If no match is found the message will be saved to _$_r_e_c_o_r_d (section - 7.4.230 , page 141) mailbox. + 7.4.231 , page 141) mailbox. See _M_e_s_s_a_g_e _M_a_t_c_h_i_n_g _i_n _H_o_o_k_s (section 4.5.1 , page 53) for information on the exact format of _p_a_t_t_e_r_n. @@ -1810,7 +1810,7 @@ send2-hook is matched every time a message is changed, either by editing it, or by using the compose menu to change its recipients or subject. send2-hook is executed after send-hook, and can, e.g., be used to set parameters such as the - _$_s_e_n_d_m_a_i_l (section 7.4.247 , page 145) variable depending on the message's + _$_s_e_n_d_m_a_i_l (section 7.4.248 , page 145) variable depending on the message's sender address. For each type of send-hook or reply-hook, when multiple matches occur, commands @@ -1823,7 +1823,7 @@ Example: send-hook mutt 'set mime_forward signature=''' Another typical use for this command is to change the values of the _$_a_t_t_r_i_b_u_- - _t_i_o_n (section 7.4.15 , page 89), _$_s_i_g_n_a_t_u_r_e (section 7.4.259 , page 148) and + _t_i_o_n (section 7.4.15 , page 89), _$_s_i_g_n_a_t_u_r_e (section 7.4.260 , page 148) and _$_l_o_c_a_l_e (section 7.4.114 , page 114) variables in order to change the language of the attributions and signatures based upon the recipients. @@ -1928,10 +1928,10 @@ delete threshold, it will be marked as deleted. These three thresholds can be set via the variables _$_s_c_o_r_e___t_h_r_e_s_h_o_l_d___f_l_a_g (sec- - tion 7.4.244 , page 145), _$_s_c_o_r_e___t_h_r_e_s_h_o_l_d___r_e_a_d (section 7.4.245 , page 145), - _$_s_c_o_r_e___t_h_r_e_s_h_o_l_d___d_e_l_e_t_e (section 7.4.243 , page 144) and. By default, - _$_s_c_o_r_e___t_h_r_e_s_h_o_l_d___r_e_a_d (section 7.4.245 , page 145) and _$_s_c_o_r_e___t_h_r_e_s_h_o_l_d___d_e_l_e_t_e - (section 7.4.243 , page 144) are set to -1, which means that in the default + tion 7.4.245 , page 145), _$_s_c_o_r_e___t_h_r_e_s_h_o_l_d___r_e_a_d (section 7.4.246 , page 145), + _$_s_c_o_r_e___t_h_r_e_s_h_o_l_d___d_e_l_e_t_e (section 7.4.244 , page 144) and. By default, + _$_s_c_o_r_e___t_h_r_e_s_h_o_l_d___r_e_a_d (section 7.4.246 , page 145) and _$_s_c_o_r_e___t_h_r_e_s_h_o_l_d___d_e_l_e_t_e + (section 7.4.244 , page 144) are set to -1, which means that in the default threshold configuration no message will ever get marked as read or deleted. Scoring gets especially interesting when combined with the color command and @@ -2202,7 +2202,7 @@ ifdef imap_mail_check 'set imap_mail_check = 300' Provided for completeness is the test for menu names. To set _$_p_a_g_e_r___i_n_d_e_x___l_i_n_e_s - (section 7.4.169 , page 127) only if the pager menu is available, use: + (section 7.4.170 , page 127) only if the pager menu is available, use: ifdef pager 'set pager_index_lines = 10' @@ -2505,7 +2505,7 @@ +o the current mutt-ng version number The setting for the status bar of the index is controlled via the _$_s_t_a_t_u_s___f_o_r_- - _m_a_t (section 7.4.308 , page 160) variable. For the hostname and version + _m_a_t (section 7.4.309 , page 160) variable. For the hostname and version string, there's an expando for $status_format: %h expands to the hostname and %v to the version string. When just configuring: @@ -2765,7 +2765,7 @@ Mutt-ng supports connecting to external directory databases such as LDAP, ph/qi, bbdb, or NIS through a wrapper script which connects to mutt using a - simple interface. Using the _$_q_u_e_r_y___c_o_m_m_a_n_d (section 7.4.221 , page 139) vari- + simple interface. Using the _$_q_u_e_r_y___c_o_m_m_a_n_d (section 7.4.222 , page 139) vari- able, you specify the wrapper command to use. For example: set query_command = "mutt_ldap_query.pl '%s'" @@ -2804,7 +2804,7 @@ Mutt-ng supports reading and writing of four different mailbox formats: mbox, MMDF, MH and Maildir. The mailbox type is autodetected, so there is no need to use a flag for different mailbox types. When creating new mailboxes, Mutt-ng - uses the default specified with the _$_m_b_o_x___t_y_p_e (section 7.4.125 , page 116) + uses the default specified with the _$_m_b_o_x___t_y_p_e (section 7.4.126 , page 116) variable. mmbbooxx. This is the most widely used mailbox format for UNIX. All messages are @@ -2840,12 +2840,12 @@ These shortcuts can be used anywhere you are prompted for a file or mailbox path. - +o ! -- refers to your _$_s_p_o_o_l_f_i_l_e (section 7.4.297 , page 157) (incoming) + +o ! -- refers to your _$_s_p_o_o_l_f_i_l_e (section 7.4.298 , page 157) (incoming) mailbox - +o > -- refers to your _$_m_b_o_x (section 7.4.124 , page 116) file + +o > -- refers to your _$_m_b_o_x (section 7.4.125 , page 116) file - +o < -- refers to your _$_r_e_c_o_r_d (section 7.4.230 , page 141) file + +o < -- refers to your _$_r_e_c_o_r_d (section 7.4.231 , page 141) file +o ^ -- refers to the current mailbox @@ -2912,7 +2912,7 @@ the message. This can create problems when trying to reply directly to the author in private, since most mail clients will automatically reply to the address given in the ``Reply-To'' field. Mutt-ng uses the _$_r_e_p_l_y___t_o (section - 7.4.233 , page 142) variable to help decide which address to use. If set to + 7.4.234 , page 142) variable to help decide which address to use. If set to _a_s_k_-_y_e_s or _a_s_k_-_n_o, you will be prompted as to whether or not you would like to use the address given in the ``Reply-To'' field, or reply directly to the address given in the ``From'' field. When set to _y_e_s, the ``Reply-To'' field @@ -2929,7 +2929,7 @@ ``~y'' selector. ``X-Label:'' is not a standard message header field, but it can easily be inserted by procmail and other mail filtering agents. - Lastly, Mutt-ng has the ability to _s_o_r_t (section 7.4.291 , page 155) the mail- + Lastly, Mutt-ng has the ability to _s_o_r_t (section 7.4.292 , page 155) the mail- box into _t_h_r_e_a_d_s (section 2.5.3 , page 11). A thread is a group of messages which all relate to the same subject. This is usually organized into a tree- like structure where a message and all of its replies are represented graphi- @@ -3008,7 +3008,7 @@ Polling for new mail is more expensive over POP3 than locally. For this reason the frequency at which Mutt-ng will check for mail remotely can be controlled - by the _$_p_o_p___m_a_i_l___c_h_e_c_k (section 7.4.208 , page 136) variable, which defaults + by the _$_p_o_p___m_a_i_l___c_h_e_c_k (section 7.4.209 , page 136) variable, which defaults to every 60 seconds. If Mutt-ng was compiled with SSL support (by running the _c_o_n_f_i_g_u_r_e script with @@ -3018,8 +3018,8 @@ name@]popserver[:port]/. Another way to access your POP3 mail is the _f_e_t_c_h_-_m_a_i_l function (default: G). - It allows to connect to _p_o_p___h_o_s_t (section 7.4.206 , page 136), fetch all your - new mail and place it in the local _s_p_o_o_l_f_i_l_e (section 7.4.297 , page 157). + It allows to connect to _p_o_p___h_o_s_t (section 7.4.207 , page 136), fetch all your + new mail and place it in the local _s_p_o_o_l_f_i_l_e (section 7.4.298 , page 157). After this point, Mutt-ng runs exactly as if the mail had always been local. NNoottee:: If you only need to fetch all messages to local mailbox you should con- @@ -3066,7 +3066,7 @@ Polling for new mail on an IMAP server can cause noticeable delays. So, you'll want to carefully tune the _$_i_m_a_p___m_a_i_l___c_h_e_c_k (section 7.4.99 , page 108) and - _$_t_i_m_e_o_u_t (section 7.4.321 , page 164) variables. + _$_t_i_m_e_o_u_t (section 7.4.322 , page 164) variables. Note that if you are using mbox as the mail store on UW servers prior to v12.250, the server has been reported to disconnect a client if another client @@ -3140,7 +3140,7 @@ The Mutt Next Generation E-Mail Client 63 variable. Like other news readers, info about subscribed newsgroups is saved in - a file as specified by the _$_n_n_t_p___n_e_w_s_r_c (section 7.4.156 , page 124) variable. + a file as specified by the _$_n_n_t_p___n_e_w_s_r_c (section 7.4.157 , page 124) variable. Article headers are cached and can be loaded from a file when a newsgroup is entered instead loading from newsserver; currently, this caching mechanism still is different from the header caching for maildir/IMAP. @@ -3190,25 +3190,25 @@ muttng -v contains +USE_LIBESMTP, this will be or is the case already. The SMTP support includes support for Delivery Status Notification (see _D_e_l_i_v_e_r_y _S_t_a_t_u_s _N_o_t_i_f_i_c_a_t_i_o_n (section 4.12 , page 59) section) as well as handling the 8BIT- - MIME flag controlled via _$_u_s_e___8_b_i_t_m_i_m_e (section 7.4.328 , page 166). + MIME flag controlled via _$_u_s_e___8_b_i_t_m_i_m_e (section 7.4.329 , page 166). To enable sending mail directly via SMTP without an MTA such as Postfix or - SSMTP and the like, simply set the _$_s_m_t_p___h_o_s_t (section 7.4.286 , page 154) + SSMTP and the like, simply set the _$_s_m_t_p___h_o_s_t (section 7.4.287 , page 154) variable pointing to your SMTP server. - Authentication mechanisms are available via the _$_s_m_t_p___u_s_e_r (section 7.4.290 , - page 155) and _$_s_m_t_p___p_a_s_s (section 7.4.287 , page 154) variables. + Authentication mechanisms are available via the _$_s_m_t_p___u_s_e_r (section 7.4.291 , + page 155) and _$_s_m_t_p___p_a_s_s (section 7.4.288 , page 154) variables. Transport Encryption via the StartTLS command is also available. For this to work, first of all Mutt-ng must be built with SSL or GNUTLS. Secondly, the - _$_s_m_t_p___u_s_e___t_l_s (section 7.4.289 , page 155) variable must be either set to + _$_s_m_t_p___u_s_e___t_l_s (section 7.4.290 , page 155) variable must be either set to ``enabled'' or ``required.'' In both cases, StartTLS will be used if the server supports it: for the second case, the connection will fail if it doesn't while switching back to unencrypted communication for the first one. Some mail providers require user's to set a particular envelope sender, i.e. they allow for only one value which may not be what the user wants to send as - the From: header. In this case, the variable _$_s_m_t_p___e_n_v_e_l_o_p_e (section 7.4.285 , + the From: header. In this case, the variable _$_s_m_t_p___e_n_v_e_l_o_p_e (section 7.4.286 , page 154) may be used to set the envelope different from the From: header. _4_._1_7 _M_a_n_a_g_i_n_g _m_u_l_t_i_p_l_e _I_M_A_P_/_P_O_P_/_N_N_T_P _a_c_c_o_u_n_t_s _(_O_P_T_I_O_N_A_L_) @@ -3274,7 +3274,7 @@ compressed. This is important because it allows the use of programs that do not have well defined extensions. Just use '.' as a regexp. But this may be sur- prising if your compressing script produces empty files. In this situation, - unset _$_s_a_v_e___e_m_p_t_y (section 7.4.240 , page 144), so that the compressed file + unset _$_s_a_v_e___e_m_p_t_y (section 7.4.241 , page 144), so that the compressed file will be removed if you delete all of the messages. _4_._1_9_._1 _O_p_e_n _a _c_o_m_p_r_e_s_s_e_d _m_a_i_l_b_o_x _f_o_r _r_e_a_d_i_n_g @@ -3350,7 +3350,7 @@ When _a_p_p_e_n_d_-_h_o_o_k (section 4.19.3 , page 66) is used, the folder is not opened, which saves time, but this means that we can not find out what the folder type - is. Thus the default (_$_m_b_o_x___t_y_p_e (section 7.4.125 , page 116)) type is always + is. Thus the default (_$_m_b_o_x___t_y_p_e (section 7.4.126 , page 116)) type is always supposed (i.e. this is the format used for the temporary folder). If the file does not exist when you save to it, _c_l_o_s_e_-_h_o_o_k (section 4.19.2 , @@ -3632,10 +3632,10 @@ needsterminal Mutt-ng uses this flag when viewing attachments with _a_u_t_o_v_i_e_w (sec- tion 5.4 , page 75), in order to decide whether it should honor - the setting of the _$_w_a_i_t___k_e_y (section 7.4.335 , page 167) variable + the setting of the _$_w_a_i_t___k_e_y (section 7.4.336 , page 167) variable or not. When an attachment is viewed using an interactive program, and the corresponding mailcap entry has a _n_e_e_d_s_t_e_r_m_i_n_a_l flag, Mutt- - ng will use _$_w_a_i_t___k_e_y (section 7.4.335 , page 167) and the exit + ng will use _$_w_a_i_t___k_e_y (section 7.4.336 , page 167) and the exit status of the program to decide if it will ask you to press a key after the external program has exited. In all other situations it will not prompt you for a key. @@ -3913,10 +3913,10 @@ _6_._2 _T_e_m_p_o_r_a_r_y _F_i_l_e_s Mutt-ng uses many temporary files for viewing messages, verifying digital sig- - natures, etc. The _$_u_m_a_s_k (section 7.4.326 , page 166) variable can be used to + natures, etc. The _$_u_m_a_s_k (section 7.4.327 , page 166) variable can be used to change the default permissions of these files. Please only change it if you really know what you are doing. Also, a different location for these files may - be desired which can be changed via the _$_t_m_p_d_i_r (section 7.4.322 , page 165) + be desired which can be changed via the _$_t_m_p_d_i_r (section 7.4.323 , page 165) variable. The Mutt Next Generation E-Mail Client 78 @@ -3930,7 +3930,7 @@ step counter which is increased (and rotated) with every message sent. If you'd like to hide this information probably telling others how many mail you sent in which time, you at least need to remove the %P expando from the default setting - of the _$_m_s_g_i_d___f_o_r_m_a_t (section 7.4.142 , page 120) variable. Please make sure + of the _$_m_s_g_i_d___f_o_r_m_a_t (section 7.4.143 , page 120) variable. Please make sure that you really know how local parts of these Message-ID: headers are composed. _6_._3_._2 _m_a_i_l_t_o_:_-_s_t_y_l_e _l_i_n_k_s @@ -3950,7 +3950,7 @@ will send out the user's private gnupg keyring to joe@host if the user doesn't follow the information on screen carefully enough. - When _u_n_s_e_t_t_i_n_g the _$_s_t_r_i_c_t___m_a_i_l_t_o (section 7.4.310 , page 162) variable, mutt- + When _u_n_s_e_t_t_i_n_g the _$_s_t_r_i_c_t___m_a_i_l_t_o (section 7.4.311 , page 162) variable, mutt- ng will +o be less strict when interpreting these links by prepending a X-Mailto- @@ -4428,7 +4428,7 @@ set assumed_charset='iso-2022-jp:euc-jp:shift_jis:utf-8' However, only the first content is valid for the message body. This variable - is valid only if _$_s_t_r_i_c_t___m_i_m_e (section 7.4.311 , page 162) is unset. + is valid only if _$_s_t_r_i_c_t___m_i_m_e (section 7.4.312 , page 162) is unset. _7_._4_._1_2 _a_t_t_a_c_h___f_o_r_m_a_t @@ -4658,7 +4658,7 @@ Default: '-- Mutt-ng: Compose [Approx. msg size: %l Atts: %a]%>-' Controls the format of the status line displayed in the ``compose'' menu. This - string is similar to ``_$_s_t_a_t_u_s___f_o_r_m_a_t (section 7.4.308 , page 160)'', but has + string is similar to ``_$_s_t_a_t_u_s___f_o_r_m_a_t (section 7.4.309 , page 160)'', but has its own set of printf(3)-like sequences: %a @@ -4673,7 +4673,7 @@ %v Mutt-ng version string - See the text describing the ``_$_s_t_a_t_u_s___f_o_r_m_a_t (section 7.4.308 , page 160)'' + See the text describing the ``_$_s_t_a_t_u_s___f_o_r_m_a_t (section 7.4.309 , page 160)'' option for more information on how to set ``_$_c_o_m_p_o_s_e___f_o_r_m_a_t (section 7.4.27 , page 92)''. @@ -4732,8 +4732,8 @@ Default: yes This variable controls whether or not copies of your outgoing messages will be - saved for later references. Also see ``_$_r_e_c_o_r_d (section 7.4.230 , page - 141)'', ``_$_s_a_v_e___n_a_m_e (section 7.4.241 , page 144)'', ``_$_f_o_r_c_e___n_a_m_e (section + saved for later references. Also see ``_$_r_e_c_o_r_d (section 7.4.231 , page + 141)'', ``_$_s_a_v_e___n_a_m_e (section 7.4.242 , page 144)'', ``_$_f_o_r_c_e___n_a_m_e (section 7.4.68 , page 101)'' and ``_f_c_c_-_h_o_o_k (section 3.18 , page 35)''. _7_._4_._3_4 _c_r_y_p_t___a_u_t_o_e_n_c_r_y_p_t @@ -4746,7 +4746,7 @@ going messages. This is probably only useful in connection to the _s_e_n_d_-_h_o_o_k command. It can be overridden by use of the _p_g_p_-_m_e_n_u, when encryption is not required or signing is requested as well. If ``_$_s_m_i_m_e___i_s___d_e_f_a_u_l_t (section - 7.4.277 , page 152)'' is _s_e_t, then OpenSSL is used instead to create S/MIME + 7.4.278 , page 152)'' is _s_e_t, then OpenSSL is used instead to create S/MIME messages and settings can be overridden by use of the _s_m_i_m_e_-_m_e_n_u. (Crypto only) @@ -4762,7 +4762,7 @@ encryption/signing for messages. See also ``_$_c_r_y_p_t___a_u_t_o_e_n_c_r_y_p_t (section 7.4.34 , page 93)'', ``_$_c_r_y_p_t___r_e_p_l_y_e_n_c_r_y_p_t (section 7.4.38 , page 94)'', ``_$_c_r_y_p_t___a_u_t_o_s_i_g_n (section 7.4.36 , page 94)'', ``_$_c_r_y_p_t___r_e_p_l_y_s_i_g_n (section - 7.4.39 , page 94)'' and ``_$_s_m_i_m_e___i_s___d_e_f_a_u_l_t (section 7.4.277 , page 152)''. + 7.4.39 , page 94)'' and ``_$_s_m_i_m_e___i_s___d_e_f_a_u_l_t (section 7.4.278 , page 152)''. _7_._4_._3_6 _c_r_y_p_t___a_u_t_o_s_i_g_n @@ -4773,7 +4773,7 @@ Setting this variable will cause Mutt-ng to always attempt to cryptographically sign outgoing messages. This can be overridden by use of the _p_g_p_-_m_e_n_u, when signing is not required or encryption is requested as well. If - ``_$_s_m_i_m_e___i_s___d_e_f_a_u_l_t (section 7.4.277 , page 152)'' is _s_e_t, then OpenSSL is + ``_$_s_m_i_m_e___i_s___d_e_f_a_u_l_t (section 7.4.278 , page 152)'' is _s_e_t, then OpenSSL is used instead to create S/MIME messages and settings can be overridden by use of the _s_m_i_m_e_-_m_e_n_u. (Crypto only) @@ -4787,7 +4787,7 @@ encryption/signing for messages. See also ``_$_c_r_y_p_t___a_u_t_o_e_n_c_r_y_p_t (section 7.4.34 , page 93)'', ``_$_c_r_y_p_t___r_e_p_l_y_e_n_c_r_y_p_t (section 7.4.38 , page 94)'', ``_$_c_r_y_p_t___a_u_t_o_s_i_g_n (section 7.4.36 , page 94)'', ``_$_c_r_y_p_t___r_e_p_l_y_s_i_g_n (section - 7.4.39 , page 94)'' and ``_$_s_m_i_m_e___i_s___d_e_f_a_u_l_t (section 7.4.277 , page 152)''. + 7.4.39 , page 94)'' and ``_$_s_m_i_m_e___i_s___d_e_f_a_u_l_t (section 7.4.278 , page 152)''. _7_._4_._3_8 _c_r_y_p_t___r_e_p_l_y_e_n_c_r_y_p_t @@ -5041,7 +5041,7 @@ When _s_e_t, Mutt-ng will try to derive the message's _e_n_v_e_l_o_p_e sender from the ``From:'' header field. Note that this information is passed to the sendmail command using the ``-f' command line switch, so don't set this option if you - are using that switch in _$_s_e_n_d_m_a_i_l (section 7.4.247 , page 145) yourself, or + are using that switch in _$_s_e_n_d_m_a_i_l (section 7.4.248 , page 145) yourself, or if the sendmail on your machine doesn't support that command line switch. _7_._4_._5_9 _e_s_c_a_p_e @@ -5191,7 +5191,7 @@ is invoked. When _u_n_s_e_t, _b_u_f_f_y___l_i_s_t will just list all mailboxes which are already known to have new mail. - Also see the following variables: ``_$_t_i_m_e_o_u_t (section 7.4.321 , page 164)'', + Also see the following variables: ``_$_t_i_m_e_o_u_t (section 7.4.322 , page 164)'', ``_$_m_a_i_l___c_h_e_c_k (section 7.4.115 , page 114)'' and ``_$_i_m_a_p___m_a_i_l___c_h_e_c_k (section 7.4.99 , page 108)''. @@ -5203,11 +5203,11 @@ The Mutt Next Generation E-Mail Client 102 - This variable is similar to ``_$_s_a_v_e___n_a_m_e (section 7.4.241 , page 144)'', + This variable is similar to ``_$_s_a_v_e___n_a_m_e (section 7.4.242 , page 144)'', except that Mutt-ng will store a copy of your outgoing message by the username of the address you are sending to even if that mailbox does not exist. - Also see the ``_$_r_e_c_o_r_d (section 7.4.230 , page 141)'' variable. + Also see the ``_$_r_e_c_o_r_d (section 7.4.231 , page 141)'' variable. _7_._4_._6_9 _f_o_r_w_a_r_d___d_e_c_o_d_e @@ -5217,8 +5217,8 @@ Controls the decoding of complex MIME messages into text/plain when forwarding a message. The message header is also RFC2047 decoded. This variable is only - used, if ``_$_m_i_m_e___f_o_r_w_a_r_d (section 7.4.136 , page 118)'' is _u_n_s_e_t, otherwise - ``_$_m_i_m_e___f_o_r_w_a_r_d___d_e_c_o_d_e (section 7.4.137 , page 118)'' is used instead. + used, if ``_$_m_i_m_e___f_o_r_w_a_r_d (section 7.4.137 , page 118)'' is _u_n_s_e_t, otherwise + ``_$_m_i_m_e___f_o_r_w_a_r_d___d_e_c_o_d_e (section 7.4.138 , page 119)'' is used instead. _7_._4_._7_0 _f_o_r_w_a_r_d___d_e_c_r_y_p_t @@ -5228,8 +5228,8 @@ Controls the handling of encrypted messages when forwarding a message. When _s_e_t, the outer layer of encryption is stripped off. This variable is only used - if ``_$_m_i_m_e___f_o_r_w_a_r_d (section 7.4.136 , page 118)'' is _s_e_t and ``_$_m_i_m_e___f_o_r_- - _w_a_r_d___d_e_c_o_d_e (section 7.4.137 , page 118)'' is _u_n_s_e_t. (PGP only) + if ``_$_m_i_m_e___f_o_r_w_a_r_d (section 7.4.137 , page 118)'' is _s_e_t and ``_$_m_i_m_e___f_o_r_- + _w_a_r_d___d_e_c_o_d_e (section 7.4.138 , page 119)'' is _u_n_s_e_t. (PGP only) _7_._4_._7_1 _f_o_r_w_a_r_d___e_d_i_t @@ -5260,7 +5260,7 @@ The Mutt Next Generation E-Mail Client 103 When _s_e_t forwarded messages included in the main body of the message (when - ``_$_m_i_m_e___f_o_r_w_a_r_d (section 7.4.136 , page 118)'' is _u_n_s_e_t) will be quoted using + ``_$_m_i_m_e___f_o_r_w_a_r_d (section 7.4.137 , page 118)'' is _u_n_s_e_t) will be quoted using ``_$_i_n_d_e_n_t___s_t_r_i_n_g (section 7.4.109 , page 111)''. _7_._4_._7_4 _f_r_o_m @@ -5270,8 +5270,8 @@ Default: '' This variable contains a default from address. It can be overridden using - my_hdr (including from send-hooks) and ``_$_r_e_v_e_r_s_e___n_a_m_e (section 7.4.236 , page - 143)''. This variable is ignored if ``_$_u_s_e___f_r_o_m (section 7.4.330 , page + my_hdr (including from send-hooks) and ``_$_r_e_v_e_r_s_e___n_a_m_e (section 7.4.237 , page + 143)''. This variable is ignored if ``_$_u_s_e___f_r_o_m (section 7.4.331 , page 166)'' is unset. E.g. you can use send-hook Mutt-ng-devel@lists.berlios.de 'my_hdr From: Foo Bar @@ -5318,7 +5318,7 @@ Default: no When _s_e_t, this variable causes Mutt-ng to include the header of the message you - are replying to into the edit buffer. The ``_$_w_e_e_d (section 7.4.336 , page + are replying to into the edit buffer. The ``_$_w_e_e_d (section 7.4.337 , page 168)'' setting applies. _7_._4_._7_8 _h_e_a_d_e_r___c_a_c_h_e @@ -5822,7 +5822,7 @@ The Mutt Next Generation E-Mail Client 113 %T - the appropriate character from the _$_t_o___c_h_a_r_s (section 7.4.323 , + the appropriate character from the _$_t_o___c_h_a_r_s (section 7.4.324 , page 165) string %u @@ -5871,7 +5871,7 @@ %|X pad to the end of the line with character 'X' - See also: ``_$_t_o___c_h_a_r_s (section 7.4.323 , page 165)''. + See also: ``_$_t_o___c_h_a_r_s (section 7.4.324 , page 165)''. _7_._4_._1_1_1 _i_s_p_e_l_l @@ -5890,7 +5890,7 @@ Default: no If _s_e_t, read messages marked as flagged will not be moved from your spool mail- - box to your ``_$_m_b_o_x (section 7.4.124 , page 116)'' mailbox, or as a result of + box to your ``_$_m_b_o_x (section 7.4.125 , page 116)'' mailbox, or as a result of a ``_m_b_o_x_-_h_o_o_k (section 3.13 , page 33)'' command. _7_._4_._1_1_3 _l_i_s_t___r_e_p_l_y @@ -5997,7 +5997,7 @@ Controls the display of wrapped lines in the internal pager. If set, a ``+'' marker is displayed at the beginning of wrapped lines. Also see the - ``_$_s_m_a_r_t___w_r_a_p (section 7.4.263 , page 149)'' variable. + ``_$_s_m_a_r_t___w_r_a_p (section 7.4.264 , page 149)'' variable. _7_._4_._1_2_2 _m_a_s_k @@ -6009,7 +6009,18 @@ operator ``!''. Only files whose names match this mask will be shown. The match is always case-sensitive. - _7_._4_._1_2_3 _m_a_x___l_i_n_e___l_e_n_g_t_h + _7_._4_._1_2_3 _m_a_x___d_i_s_p_l_a_y___r_e_c_i_p_s + + Type: number + + Default: 0 + + When set non-zero, this specifies the maximum number of recipient header lines + (To:, Cc: and Bcc:) to display in the pager if header weeding is turned on. In + case the number of lines exeeds its value, the last line will have 3 dots + appended. + + _7_._4_._1_2_4 _m_a_x___l_i_n_e___l_e_n_g_t_h Type: number @@ -6018,39 +6029,39 @@ When _s_e_t, the maximum line length for displaying ``format = flowed'' messages is limited to this length. A value of 0 (which is also the default) means that the maximum line length is determined by the terminal width and _$_w_r_a_p_m_a_r_g_i_n - (section 7.4.338 , page 168). + (section 7.4.339 , page 168). - _7_._4_._1_2_4 _m_b_o_x + _7_._4_._1_2_5 _m_b_o_x Type: path Default: '~/mbox' This specifies the folder into which read mail in your ``_$_s_p_o_o_l_f_i_l_e (section - 7.4.297 , page 157)'' folder will be appended. + 7.4.298 , page 157)'' folder will be appended. - _7_._4_._1_2_5 _m_b_o_x___t_y_p_e + _7_._4_._1_2_6 _m_b_o_x___t_y_p_e Type: folder magic + The Mutt Next Generation E-Mail Client 117 + Default: mbox The default mailbox type used when creating new folders. May be any of mbox, MMDF, MH and Maildir. - _7_._4_._1_2_6 _m_e_n_u___c_o_n_t_e_x_t + _7_._4_._1_2_7 _m_e_n_u___c_o_n_t_e_x_t Type: number Default: 0 - The Mutt Next Generation E-Mail Client 117 - This variable controls the number of lines of context that are given when - scrolling through menus. (Similar to ``_$_p_a_g_e_r___c_o_n_t_e_x_t (section 7.4.167 , page + scrolling through menus. (Similar to ``_$_p_a_g_e_r___c_o_n_t_e_x_t (section 7.4.168 , page 127)''.) - _7_._4_._1_2_7 _m_e_n_u___m_o_v_e___o_f_f + _7_._4_._1_2_8 _m_e_n_u___m_o_v_e___o_f_f Type: boolean @@ -6060,7 +6071,7 @@ the screen, unless there are less entries than lines. When _s_e_t, the bottom entry may move off the bottom. - _7_._4_._1_2_8 _m_e_n_u___s_c_r_o_l_l + _7_._4_._1_2_9 _m_e_n_u___s_c_r_o_l_l Type: boolean @@ -6071,7 +6082,7 @@ vious page of the menu is displayed (useful for slow links to avoid many redraws). - _7_._4_._1_2_9 _m_e_s_s_a_g_e___f_o_r_m_a_t + _7_._4_._1_3_0 _m_e_s_s_a_g_e___f_o_r_m_a_t Type: string @@ -6081,7 +6092,7 @@ message/rfc822. For a full listing of defined printf(3)-like sequences see the section on ``_$_i_n_d_e_x___f_o_r_m_a_t (section 7.4.110 , page 111)''. - _7_._4_._1_3_0 _m_e_t_a___k_e_y + _7_._4_._1_3_1 _m_e_t_a___k_e_y Type: boolean @@ -6089,23 +6100,24 @@ If _s_e_t, forces Mutt-ng to interpret keystrokes with the high bit (bit 8) set as if the user had pressed the ESC key and whatever key remains after having the + + The Mutt Next Generation E-Mail Client 118 + high bit removed. For example, if the key pressed has an ASCII value of 0xf4, then this is treated as if the user had pressed ESC then ``x''. This is because the result of removing the high bit from ``0xf4'' is ``0x74'', which is the ASCII character ``x''. - _7_._4_._1_3_1 _m_e_t_o_o + _7_._4_._1_3_2 _m_e_t_o_o Type: boolean Default: no - The Mutt Next Generation E-Mail Client 118 - If _u_n_s_e_t, Mutt-ng will remove your address (see the ``alternates'' command) from the list of recipients when replying to a message. - _7_._4_._1_3_2 _m_h___p_u_r_g_e + _7_._4_._1_3_3 _m_h___p_u_r_g_e Type: boolean @@ -6115,7 +6127,7 @@ _,_<_o_l_d _f_i_l_e _n_a_m_e_> in mh folders instead of really deleting them. If the vari- able is set, the message files will simply be deleted. - _7_._4_._1_3_3 _m_h___s_e_q___f_l_a_g_g_e_d + _7_._4_._1_3_4 _m_h___s_e_q___f_l_a_g_g_e_d Type: string @@ -6123,7 +6135,7 @@ The name of the MH sequence used for flagged messages. - _7_._4_._1_3_4 _m_h___s_e_q___r_e_p_l_i_e_d + _7_._4_._1_3_5 _m_h___s_e_q___r_e_p_l_i_e_d Type: string @@ -6131,7 +6143,7 @@ The name of the MH sequence used to tag replied messages. - _7_._4_._1_3_5 _m_h___s_e_q___u_n_s_e_e_n + _7_._4_._1_3_6 _m_h___s_e_q___u_n_s_e_e_n Type: string @@ -6139,12 +6151,14 @@ The name of the MH sequence used for unseen messages. - _7_._4_._1_3_6 _m_i_m_e___f_o_r_w_a_r_d + _7_._4_._1_3_7 _m_i_m_e___f_o_r_w_a_r_d Type: quadoption Default: no + The Mutt Next Generation E-Mail Client 119 + When _s_e_t, the message you are forwarding will be attached as a separate MIME part instead of included in the main body of the message. @@ -6153,21 +6167,19 @@ not MIME from mail to mail, set this variable to ask-no or ask-yes. Also see ``_$_f_o_r_w_a_r_d___d_e_c_o_d_e (section 7.4.69 , page 102)'' and ``_$_m_i_m_e___f_o_r_- - _w_a_r_d___d_e_c_o_d_e (section 7.4.137 , page 118)''. + _w_a_r_d___d_e_c_o_d_e (section 7.4.138 , page 119)''. - The Mutt Next Generation E-Mail Client 119 - - _7_._4_._1_3_7 _m_i_m_e___f_o_r_w_a_r_d___d_e_c_o_d_e + _7_._4_._1_3_8 _m_i_m_e___f_o_r_w_a_r_d___d_e_c_o_d_e Type: boolean Default: no Controls the decoding of complex MIME messages into text/plain when forwarding - a message while ``_$_m_i_m_e___f_o_r_w_a_r_d (section 7.4.136 , page 118)'' is _s_e_t. Other- + a message while ``_$_m_i_m_e___f_o_r_w_a_r_d (section 7.4.137 , page 118)'' is _s_e_t. Other- wise ``_$_f_o_r_w_a_r_d___d_e_c_o_d_e (section 7.4.69 , page 102)'' is used instead. - _7_._4_._1_3_8 _m_i_m_e___f_o_r_w_a_r_d___r_e_s_t + _7_._4_._1_3_9 _m_i_m_e___f_o_r_w_a_r_d___r_e_s_t Type: quadoption @@ -6177,7 +6189,7 @@ menu, attachments which cannot be decoded in a reasonable manner will be attached to the newly composed message if this option is set. - _7_._4_._1_3_9 _m_i_x___e_n_t_r_y___f_o_r_m_a_t + _7_._4_._1_4_0 _m_i_x___e_n_t_r_y___f_o_r_m_a_t Type: string @@ -6200,7 +6212,9 @@ %a The remailer's e-mail address. - _7_._4_._1_4_0 _m_i_x_m_a_s_t_e_r + The Mutt Next Generation E-Mail Client 120 + + _7_._4_._1_4_1 _m_i_x_m_a_s_t_e_r Type: path @@ -6212,19 +6226,17 @@ used with various sets of parameters to gather the list of known remailers, and to finally send a message through the mixmaster chain. - The Mutt Next Generation E-Mail Client 120 - - _7_._4_._1_4_1 _m_o_v_e + _7_._4_._1_4_2 _m_o_v_e Type: quadoption Default: ask-no Controls whether or not Mutt-ng will move read messages from your spool mailbox - to your ``_$_m_b_o_x (section 7.4.124 , page 116)'' mailbox, or as a result of a + to your ``_$_m_b_o_x (section 7.4.125 , page 116)'' mailbox, or as a result of a ``_m_b_o_x_-_h_o_o_k (section 3.13 , page 33)'' command. - _7_._4_._1_4_2 _m_s_g_i_d___f_o_r_m_a_t + _7_._4_._1_4_3 _m_s_g_i_d___f_o_r_m_a_t Type: string @@ -6257,6 +6269,8 @@ the current Message-ID prefix (a character rotating with every Mes- sage-ID being generated) + The Mutt Next Generation E-Mail Client 121 + %r a random integer value (decimal) @@ -6269,8 +6283,6 @@ %T the current UNIX timestamp (decimal) - The Mutt Next Generation E-Mail Client 121 - %X the current UNIX timestamp (hexadecimal) @@ -6283,7 +6295,7 @@ NNoottee:: Please only change this setting if you know what you are doing. Also make sure to consult RFC2822 to produce technically _v_a_l_i_d strings. - _7_._4_._1_4_3 _n_a_r_r_o_w___t_r_e_e + _7_._4_._1_4_4 _n_a_r_r_o_w___t_r_e_e Type: boolean @@ -6292,7 +6304,7 @@ This variable, when _s_e_t, makes the thread tree narrower, allowing deeper threads to fit on the screen. - _7_._4_._1_4_4 _n_n_t_p___a_s_k___f_o_l_l_o_w_u_p___t_o + _7_._4_._1_4_5 _n_n_t_p___a_s_k___f_o_l_l_o_w_u_p___t_o Type: boolean @@ -6303,7 +6315,7 @@ If _s_e_t, Mutt-ng will prompt you for the Followup-To: header field before edit- ing the body of an outgoing news article. - _7_._4_._1_4_5 _n_n_t_p___a_s_k___x___c_o_m_m_e_n_t___t_o + _7_._4_._1_4_6 _n_n_t_p___a_s_k___x___c_o_m_m_e_n_t___t_o Type: boolean @@ -6314,7 +6326,9 @@ If _s_e_t, Mutt-ng will prompt you for the X-Comment-To: header field before edit- ing the body of an outgoing news article. - _7_._4_._1_4_6 _n_n_t_p___c_a_c_h_e___d_i_r + The Mutt Next Generation E-Mail Client 122 + + _7_._4_._1_4_7 _n_n_t_p___c_a_c_h_e___d_i_r Type: path @@ -6326,12 +6340,10 @@ ers. If _u_n_s_e_t, headers will not be saved at all and will be reloaded each time when you enter a newsgroup. - The Mutt Next Generation E-Mail Client 122 - As for the header caching in connection with IMAP and/or Maildir, this drasti- cally increases speed and lowers traffic. - _7_._4_._1_4_7 _n_n_t_p___c_a_t_c_h_u_p + _7_._4_._1_4_8 _n_n_t_p___c_a_t_c_h_u_p Type: quadoption @@ -6342,7 +6354,7 @@ If this variable is _s_e_t, Mutt-ng will mark all articles in a newsgroup as read when you leaving it. - _7_._4_._1_4_8 _n_n_t_p___c_o_n_t_e_x_t + _7_._4_._1_4_9 _n_n_t_p___c_o_n_t_e_x_t Type: number @@ -6351,13 +6363,13 @@ Availability: NNTP This variable controls how many news articles to cache per newsgroup (if - caching is enabled, see _$_n_n_t_p___c_a_c_h_e___d_i_r (section 7.4.146 , page 121)) and how + caching is enabled, see _$_n_n_t_p___c_a_c_h_e___d_i_r (section 7.4.147 , page 121)) and how many news articles to show in the ``index'' menu. - If there're more articles than defined with _$_n_n_t_p___c_o_n_t_e_x_t (section 7.4.148 , + If there're more articles than defined with _$_n_n_t_p___c_o_n_t_e_x_t (section 7.4.149 , page 122), all older ones will be removed/not shown in the index. - _7_._4_._1_4_9 _n_n_t_p___f_o_l_l_o_w_u_p___t_o___p_o_s_t_e_r + _7_._4_._1_5_0 _n_n_t_p___f_o_l_l_o_w_u_p___t_o___p_o_s_t_e_r Type: quadoption @@ -6369,7 +6381,9 @@ header field, a follow-up to the newsgroup is not permitted. The message will be mailed to the submitter of the message via mail. - _7_._4_._1_5_0 _n_n_t_p___g_r_o_u_p___i_n_d_e_x___f_o_r_m_a_t + The Mutt Next Generation E-Mail Client 123 + + _7_._4_._1_5_1 _n_n_t_p___g_r_o_u_p___i_n_d_e_x___f_o_r_m_a_t Type: string @@ -6381,8 +6395,6 @@ personal taste. This string is similar to ``_i_n_d_e_x___f_o_r_m_a_t (section 7.4.110 , page 111)'', but has its own set of printf(3)-like sequences: - The Mutt Next Generation E-Mail Client 123 - %C current newsgroup number %d description of newsgroup (retrieved from server) %f newsgroup name @@ -6393,7 +6405,7 @@ %>X right justify the rest of the string and pad with character "X" %|X pad to the end of the line with character "X" - _7_._4_._1_5_1 _n_n_t_p___h_o_s_t + _7_._4_._1_5_2 _n_n_t_p___h_o_s_t Type: string @@ -6415,7 +6427,7 @@ security risk since the superuser of your machine may read it regardless of the file's permissions. - _7_._4_._1_5_2 _n_n_t_p___i_n_e_w_s + _7_._4_._1_5_3 _n_n_t_p___i_n_e_w_s Type: path @@ -6423,6 +6435,8 @@ Availability: NNTP + The Mutt Next Generation E-Mail Client 124 + If _s_e_t, specifies the program and arguments used to deliver news posted by Mutt-ng. Otherwise, Mutt-ng posts article using current connection. The fol- lowing printf(3)-style sequence is understood: @@ -6431,12 +6445,10 @@ Example: set inews='/usr/local/bin/inews -hS' - _7_._4_._1_5_3 _n_n_t_p___l_o_a_d___d_e_s_c_r_i_p_t_i_o_n + _7_._4_._1_5_4 _n_n_t_p___l_o_a_d___d_e_s_c_r_i_p_t_i_o_n Type: boolean - The Mutt Next Generation E-Mail Client 124 - Default: yes Availability: NNTP @@ -6444,7 +6456,7 @@ This variable controls whether or not descriptions for newsgroups are to be loaded when subscribing to a newsgroup. - _7_._4_._1_5_4 _n_n_t_p___m_a_i_l___c_h_e_c_k + _7_._4_._1_5_5 _n_n_t_p___m_a_i_l___c_h_e_c_k Type: number @@ -6456,7 +6468,7 @@ 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.). - _7_._4_._1_5_5 _n_n_t_p___m_i_m_e___s_u_b_j_e_c_t + _7_._4_._1_5_6 _n_n_t_p___m_i_m_e___s_u_b_j_e_c_t Type: boolean @@ -6469,7 +6481,7 @@ NNoottee:: Only change this setting if you know what you are doing. - _7_._4_._1_5_6 _n_n_t_p___n_e_w_s_r_c + _7_._4_._1_5_7 _n_n_t_p___n_e_w_s_r_c Type: path @@ -6477,6 +6489,8 @@ Availability: NNTP + The Mutt Next Generation E-Mail Client 125 + This file contains information about subscribed newsgroup and articles read so far. @@ -6485,12 +6499,10 @@ %s newsserver name - _7_._4_._1_5_7 _n_n_t_p___p_a_s_s + _7_._4_._1_5_8 _n_n_t_p___p_a_s_s Type: string - The Mutt Next Generation E-Mail Client 125 - Default: '' Availability: NNTP @@ -6500,7 +6512,7 @@ NNoottee:: Storing passwords in a configuration file presents a security risk since the superuser of your machine may read it regardless of the file's permissions. - _7_._4_._1_5_8 _n_n_t_p___p_o_s_t___m_o_d_e_r_a_t_e_d + _7_._4_._1_5_9 _n_n_t_p___p_o_s_t___m_o_d_e_r_a_t_e_d Type: quadoption @@ -6514,7 +6526,7 @@ NNoottee:: if the newsserver does not support posting to that newsgroup or a group is totally read-only, that posting will not have any effect. - _7_._4_._1_5_9 _n_n_t_p___r_e_c_o_n_n_e_c_t + _7_._4_._1_6_0 _n_n_t_p___r_e_c_o_n_n_e_c_t Type: quadoption @@ -6525,18 +6537,20 @@ Controls whether or not Mutt-ng will try to reconnect to a newsserver when the was connection lost. - _7_._4_._1_6_0 _n_n_t_p___s_a_v_e___u_n_s_u_b_s_c_r_i_b_e_d + _7_._4_._1_6_1 _n_n_t_p___s_a_v_e___u_n_s_u_b_s_c_r_i_b_e_d Type: boolean Default: no + The Mutt Next Generation E-Mail Client 126 + Availability: NNTP When _s_e_t, info about unsubscribed newsgroups will be saved into the ``newsrc'' file and into the news cache. - _7_._4_._1_6_1 _n_n_t_p___s_h_o_w___n_e_w___n_e_w_s + _7_._4_._1_6_2 _n_n_t_p___s_h_o_w___n_e_w___n_e_w_s Type: boolean @@ -6545,14 +6559,11 @@ Availability: NNTP If _s_e_t, the newsserver will be asked for new newsgroups on entering the - - The Mutt Next Generation E-Mail Client 126 - browser. Otherwise, it will be done only once for a newsserver. Also controls whether or not the number of new articles of subscribed newsgroups will be checked. - _7_._4_._1_6_2 _n_n_t_p___s_h_o_w___o_n_l_y___u_n_r_e_a_d + _7_._4_._1_6_3 _n_n_t_p___s_h_o_w___o_n_l_y___u_n_r_e_a_d Type: boolean @@ -6563,7 +6574,7 @@ If _s_e_t, only subscribed newsgroups that contain unread articles will be dis- played in the newsgroup browser. - _7_._4_._1_6_3 _n_n_t_p___u_s_e_r + _7_._4_._1_6_4 _n_n_t_p___u_s_e_r Type: string @@ -6574,7 +6585,7 @@ Your login name on the NNTP server. If _u_n_s_e_t and the server requires authen- tification, Mutt-ng will prompt you for your account name. - _7_._4_._1_6_4 _n_n_t_p___x___c_o_m_m_e_n_t___t_o + _7_._4_._1_6_5 _n_n_t_p___x___c_o_m_m_e_n_t___t_o Type: boolean @@ -6585,10 +6596,12 @@ If _s_e_t, Mutt-ng will add a ``X-Comment-To:'' header field (that contains full name of the original article author) to articles that you followup to. - _7_._4_._1_6_5 _o_p_e_r_a_t_i_n_g___s_y_s_t_e_m + _7_._4_._1_6_6 _o_p_e_r_a_t_i_n_g___s_y_s_t_e_m Type: string + The Mutt Next Generation E-Mail Client 127 + Default: '' This specifies the operating system name for the User-Agent: header field. If @@ -6597,14 +6610,12 @@ It may, for example, look as: ``mutt-ng 1.5.9i (Linux)''. - _7_._4_._1_6_6 _p_a_g_e_r + _7_._4_._1_6_7 _p_a_g_e_r Type: path Default: 'builtin' - The Mutt Next Generation E-Mail Client 127 - This variable specifies which pager you would like to use to view messages. ``builtin'' means to use the builtin pager, otherwise this variable should specify the pathname of the external pager you would like to use. @@ -6614,7 +6625,7 @@ screen resizes cause lines longer than the screen width to be badly formatted in the help menu. - _7_._4_._1_6_7 _p_a_g_e_r___c_o_n_t_e_x_t + _7_._4_._1_6_8 _p_a_g_e_r___c_o_n_t_e_x_t Type: number @@ -6625,7 +6636,7 @@ will display the line after the last one on the screen at the top of the next page (0 lines of context). - _7_._4_._1_6_8 _p_a_g_e_r___f_o_r_m_a_t + _7_._4_._1_6_9 _p_a_g_e_r___f_o_r_m_a_t Type: string @@ -6636,7 +6647,7 @@ sequences are listed in the ``_$_i_n_d_e_x___f_o_r_m_a_t (section 7.4.110 , page 111)'' section. - _7_._4_._1_6_9 _p_a_g_e_r___i_n_d_e_x___l_i_n_e_s + _7_._4_._1_7_0 _p_a_g_e_r___i_n_d_e_x___l_i_n_e_s Type: number @@ -6645,6 +6656,9 @@ Determines the number of lines of a mini-index which is shown when in the pager. The current message, unless near the top or bottom of the folder, will be roughly one third of the way down this mini-index, giving the reader the + + The Mutt Next Generation E-Mail Client 128 + context of a few messages before and after the message. This is useful, for example, to determine how many messages remain to be read in the current thread. One of the lines is reserved for the status bar from the index, so a @@ -6653,18 +6667,16 @@ folder is less than _p_a_g_e_r___i_n_d_e_x___l_i_n_e_s, then the index will only use as many lines as it needs. - _7_._4_._1_7_0 _p_a_g_e_r___s_t_o_p + _7_._4_._1_7_1 _p_a_g_e_r___s_t_o_p Type: boolean Default: no - The Mutt Next Generation E-Mail Client 128 - When _s_e_t, the internal-pager will nnoott move to the next message when you are at the end of a message and invoke the _n_e_x_t_-_p_a_g_e function. - _7_._4_._1_7_1 _p_g_p___a_u_t_o___d_e_c_o_d_e + _7_._4_._1_7_2 _p_g_p___a_u_t_o___d_e_c_o_d_e Type: boolean @@ -6677,7 +6689,7 @@ ditional-pgp function, Mutt-ng will automatically check the message for tradi- tional pgp. - _7_._4_._1_7_2 _p_g_p___a_u_t_o_i_n_l_i_n_e + _7_._4_._1_7_3 _p_g_p___a_u_t_o_i_n_l_i_n_e Type: boolean @@ -6690,21 +6702,23 @@ Note that Mutt-ng might automatically use PGP/MIME for messages which consist of more than a single MIME part. Mutt-ng can be configured to ask before send- ing PGP/MIME messages when inline (traditional) would not work. See also: - ``_$_p_g_p___m_i_m_e___a_u_t_o (section 7.4.188 , page 132)''. + ``_$_p_g_p___m_i_m_e___a_u_t_o (section 7.4.189 , page 132)''. Also note that using the old-style PGP message format is ssttrroonnggllyy ddeepprreeccaatteedd. (PGP only) - _7_._4_._1_7_3 _p_g_p___c_h_e_c_k___e_x_i_t + _7_._4_._1_7_4 _p_g_p___c_h_e_c_k___e_x_i_t Type: boolean Default: yes + The Mutt Next Generation E-Mail Client 129 + If _s_e_t, Mutt-ng will check the exit code of the PGP subprocess when signing or encrypting. A non-zero exit code means that the subprocess failed. (PGP only) - _7_._4_._1_7_4 _p_g_p___c_l_e_a_r_s_i_g_n___c_o_m_m_a_n_d + _7_._4_._1_7_5 _p_g_p___c_l_e_a_r_s_i_g_n___c_o_m_m_a_n_d Type: string @@ -6714,9 +6728,7 @@ Note that the use of this format is ssttrroonnggllyy ddeepprreeccaatteedd. (PGP only) - The Mutt Next Generation E-Mail Client 129 - - _7_._4_._1_7_5 _p_g_p___d_e_c_o_d_e___c_o_m_m_a_n_d + _7_._4_._1_7_6 _p_g_p___d_e_c_o_d_e___c_o_m_m_a_n_d Type: string @@ -6739,7 +6751,7 @@ multipart/signed attachment when verifying it. %a - The value of _$_p_g_p___s_i_g_n___a_s (section 7.4.192 , page 133). + The value of _$_p_g_p___s_i_g_n___a_s (section 7.4.193 , page 133). %r One or more key IDs. @@ -6749,7 +6761,7 @@ subdirectory which has been installed on your system alongside the documenta- tion. (PGP only) - _7_._4_._1_7_6 _p_g_p___d_e_c_r_y_p_t___c_o_m_m_a_n_d + _7_._4_._1_7_7 _p_g_p___d_e_c_r_y_p_t___c_o_m_m_a_n_d Type: string @@ -6757,7 +6769,9 @@ This command is used to decrypt a PGP encrypted message. (PGP only) - _7_._4_._1_7_7 _p_g_p___e_n_c_r_y_p_t___o_n_l_y___c_o_m_m_a_n_d + The Mutt Next Generation E-Mail Client 130 + + _7_._4_._1_7_8 _p_g_p___e_n_c_r_y_p_t___o_n_l_y___c_o_m_m_a_n_d Type: string @@ -6765,17 +6779,15 @@ This command is used to encrypt a body part without signing it. (PGP only) - _7_._4_._1_7_8 _p_g_p___e_n_c_r_y_p_t___s_i_g_n___c_o_m_m_a_n_d + _7_._4_._1_7_9 _p_g_p___e_n_c_r_y_p_t___s_i_g_n___c_o_m_m_a_n_d Type: string Default: '' - The Mutt Next Generation E-Mail Client 130 - This command is used to both sign and encrypt a body part. (PGP only) - _7_._4_._1_7_9 _p_g_p___e_n_t_r_y___f_o_r_m_a_t + _7_._4_._1_8_0 _p_g_p___e_n_t_r_y___f_o_r_m_a_t Type: string @@ -6814,7 +6826,9 @@ (PGP only) - _7_._4_._1_8_0 _p_g_p___e_x_p_o_r_t___c_o_m_m_a_n_d + The Mutt Next Generation E-Mail Client 131 + + _7_._4_._1_8_1 _p_g_p___e_x_p_o_r_t___c_o_m_m_a_n_d Type: string @@ -6823,29 +6837,27 @@ This command is used to export a public key from the user's key ring. (PGP only) - _7_._4_._1_8_1 _p_g_p___g_e_t_k_e_y_s___c_o_m_m_a_n_d + _7_._4_._1_8_2 _p_g_p___g_e_t_k_e_y_s___c_o_m_m_a_n_d Type: string - The Mutt Next Generation E-Mail Client 131 - Default: '' 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) - _7_._4_._1_8_2 _p_g_p___g_o_o_d___s_i_g_n + _7_._4_._1_8_3 _p_g_p___g_o_o_d___s_i_g_n Type: regular expression Default: '' If you assign a text to this variable, then a PGP signature is only considered - verified if the output from _$_p_g_p___v_e_r_i_f_y___c_o_m_m_a_n_d (section 7.4.198 , page 134) + verified if the output from _$_p_g_p___v_e_r_i_f_y___c_o_m_m_a_n_d (section 7.4.199 , page 134) contains the text. Use this variable if the exit code from the command is 0 even for bad signatures. (PGP only) - _7_._4_._1_8_3 _p_g_p___i_g_n_o_r_e___s_u_b_k_e_y_s + _7_._4_._1_8_4 _p_g_p___i_g_n_o_r_e___s_u_b_k_e_y_s Type: boolean @@ -6855,7 +6867,7 @@ the principal key will inherit the subkeys' capabilities. _U_n_s_e_t this if you want to play interesting key selection games. (PGP only) - _7_._4_._1_8_4 _p_g_p___i_m_p_o_r_t___c_o_m_m_a_n_d + _7_._4_._1_8_5 _p_g_p___i_m_p_o_r_t___c_o_m_m_a_n_d Type: string @@ -6864,34 +6876,33 @@ This command is used to import a key from a message into the user's public key ring. (PGP only) - _7_._4_._1_8_5 _p_g_p___l_i_s_t___p_u_b_r_i_n_g___c_o_m_m_a_n_d + _7_._4_._1_8_6 _p_g_p___l_i_s_t___p_u_b_r_i_n_g___c_o_m_m_a_n_d Type: string Default: '' + The Mutt Next Generation E-Mail Client 132 + This command is used to list the public key ring's contents. The output format must be analogous to the one used by gpg --list-keys --with-colons. This format is also generated by the pgpring utility which comes with Mutt-ng. (PGP only) - _7_._4_._1_8_6 _p_g_p___l_i_s_t___s_e_c_r_i_n_g___c_o_m_m_a_n_d + _7_._4_._1_8_7 _p_g_p___l_i_s_t___s_e_c_r_i_n_g___c_o_m_m_a_n_d Type: string Default: '' This command is used to list the secret key ring's contents. The output format - - The Mutt Next Generation E-Mail Client 132 - must be analogous to the one used by gpg --list-keys --with-colons. This format is also generated by the pgpring utility which comes with Mutt-ng. (PGP only) - _7_._4_._1_8_7 _p_g_p___l_o_n_g___i_d_s + _7_._4_._1_8_8 _p_g_p___l_o_n_g___i_d_s Type: boolean @@ -6900,7 +6911,7 @@ If _s_e_t, use 64 bit PGP key IDs. _U_n_s_e_t uses the normal 32 bit Key IDs. (PGP only) - _7_._4_._1_8_8 _p_g_p___m_i_m_e___a_u_t_o + _7_._4_._1_8_9 _p_g_p___m_i_m_e___a_u_t_o Type: quadoption @@ -6913,7 +6924,7 @@ Also note that using the old-style PGP message format is ssttrroonnggllyy ddeepprreeccaatteedd. (PGP only) - _7_._4_._1_8_9 _p_g_p___r_e_p_l_y_i_n_l_i_n_e + _7_._4_._1_9_0 _p_g_p___r_e_p_l_y_i_n_l_i_n_e Type: boolean @@ -6927,21 +6938,22 @@ checked/flagged messages. Note that Mutt-ng might automatically use PGP/MIME for messages which consist + + The Mutt Next Generation E-Mail Client 133 + of more than a single MIME part. Mutt-ng can be configured to ask before send- ing PGP/MIME messages when inline (traditional) would not work. See also: - ``_$_p_g_p___m_i_m_e___a_u_t_o (section 7.4.188 , page 132)''. + ``_$_p_g_p___m_i_m_e___a_u_t_o (section 7.4.189 , page 132)''. Also note that using the old-style PGP message format is ssttrroonnggllyy ddeepprreeccaatteedd. (PGP only) - _7_._4_._1_9_0 _p_g_p___r_e_t_a_i_n_a_b_l_e___s_i_g_s + _7_._4_._1_9_1 _p_g_p___r_e_t_a_i_n_a_b_l_e___s_i_g_s Type: boolean Default: no - The Mutt Next Generation E-Mail Client 133 - If _s_e_t, signed and encrypted messages will consist of nested multipart/signed and multipart/encrypted body parts. @@ -6949,7 +6961,7 @@ the outer layer (multipart/encrypted) can be easily removed, while the inner multipart/signed part is retained. (PGP only) - _7_._4_._1_9_1 _p_g_p___s_h_o_w___u_n_u_s_a_b_l_e + _7_._4_._1_9_2 _p_g_p___s_h_o_w___u_n_u_s_a_b_l_e Type: boolean @@ -6959,7 +6971,7 @@ This includes keys which have been revoked, have expired, or have been marked as ``disabled'' by the user. (PGP only) - _7_._4_._1_9_2 _p_g_p___s_i_g_n___a_s + _7_._4_._1_9_3 _p_g_p___s_i_g_n___a_s Type: string @@ -6969,7 +6981,7 @@ your private keys to use. It is recommended that you use the keyid form to specify your key (e.g., ``0x00112233''). (PGP only) - _7_._4_._1_9_3 _p_g_p___s_i_g_n___c_o_m_m_a_n_d + _7_._4_._1_9_4 _p_g_p___s_i_g_n___c_o_m_m_a_n_d Type: string @@ -6978,12 +6990,14 @@ This command is used to create the detached PGP signature for a multi- part/signed PGP/MIME body part. (PGP only) - _7_._4_._1_9_4 _p_g_p___s_o_r_t___k_e_y_s + _7_._4_._1_9_5 _p_g_p___s_o_r_t___k_e_y_s Type: sort order Default: address + The Mutt Next Generation E-Mail Client 134 + Specifies how the entries in the ``pgp keys'' menu are sorted. The following are legal values: @@ -6996,15 +7010,13 @@ date sort by key creation date - The Mutt Next Generation E-Mail Client 134 - trust sort by the trust of the key If you prefer reverse order of the above values, prefix it with ``reverse-''. (PGP only) - _7_._4_._1_9_5 _p_g_p___s_t_r_i_c_t___e_n_c + _7_._4_._1_9_6 _p_g_p___s_t_r_i_c_t___e_n_c Type: boolean @@ -7015,7 +7027,7 @@ non-verifyable PGP signatures, so only change this if you know what you are doing. (PGP only) - _7_._4_._1_9_6 _p_g_p___t_i_m_e_o_u_t + _7_._4_._1_9_7 _p_g_p___t_i_m_e_o_u_t Type: number @@ -7024,7 +7036,7 @@ The number of seconds after which a cached passphrase will expire if not used. Default: 300. (PGP only) - _7_._4_._1_9_7 _p_g_p___u_s_e___g_p_g___a_g_e_n_t + _7_._4_._1_9_8 _p_g_p___u_s_e___g_p_g___a_g_e_n_t Type: boolean @@ -7032,7 +7044,7 @@ If _s_e_t, Mutt-ng will use a possibly-running gpg-agent process. (PGP only) - _7_._4_._1_9_8 _p_g_p___v_e_r_i_f_y___c_o_m_m_a_n_d + _7_._4_._1_9_9 _p_g_p___v_e_r_i_f_y___c_o_m_m_a_n_d Type: string @@ -7040,7 +7052,9 @@ This command is used to verify PGP signatures. (PGP only) - _7_._4_._1_9_9 _p_g_p___v_e_r_i_f_y___k_e_y___c_o_m_m_a_n_d + The Mutt Next Generation E-Mail Client 135 + + _7_._4_._2_0_0 _p_g_p___v_e_r_i_f_y___k_e_y___c_o_m_m_a_n_d Type: string @@ -7049,19 +7063,17 @@ This command is used to verify key information from the key selection menu. (PGP only) - _7_._4_._2_0_0 _p_i_p_e___d_e_c_o_d_e + _7_._4_._2_0_1 _p_i_p_e___d_e_c_o_d_e Type: boolean - The Mutt Next Generation E-Mail Client 135 - Default: no Used in connection with the _p_i_p_e_-_m_e_s_s_a_g_e command. When _u_n_s_e_t, Mutt-ng will pipe the messages without any preprocessing. When _s_e_t, Mutt-ng will weed head- ers and will attempt to PGP/MIME decode the messages first. - _7_._4_._2_0_1 _p_i_p_e___s_e_p + _7_._4_._2_0_2 _p_i_p_e___s_e_p Type: string @@ -7070,7 +7082,7 @@ The separator to add between messages when piping a list of tagged messages to an external Unix command. - _7_._4_._2_0_2 _p_i_p_e___s_p_l_i_t + _7_._4_._2_0_3 _p_i_p_e___s_p_l_i_t Type: boolean @@ -7081,9 +7093,9 @@ of tagged messages Mutt-ng will concatenate the messages and will pipe them as a single folder. When _s_e_t, Mutt-ng will pipe the messages one by one. In both cases the messages are piped in the current sorted order, and the ``_$_p_i_p_e___s_e_p - (section 7.4.201 , page 135)'' separator is added after each message. + (section 7.4.202 , page 135)'' separator is added after each message. - _7_._4_._2_0_3 _p_o_p___a_u_t_h___t_r_y___a_l_l + _7_._4_._2_0_4 _p_o_p___a_u_t_h___t_r_y___a_l_l Type: boolean @@ -7096,7 +7108,9 @@ able. If a method is available but authentication fails, Mutt-ng will not con- nect to the POP server. - _7_._4_._2_0_4 _p_o_p___a_u_t_h_e_n_t_i_c_a_t_o_r_s + The Mutt Next Generation E-Mail Client 136 + + _7_._4_._2_0_5 _p_o_p___a_u_t_h_e_n_t_i_c_a_t_o_r_s Type: string @@ -7109,15 +7123,13 @@ tication methods are either ``user'', ``apop'' or any SASL mechanism, eg ``digest-md5'', ``gssapi'' or ``cram-md5''. - The Mutt Next Generation E-Mail Client 136 - This parameter is case-insensitive. If this parameter is _u_n_s_e_t (the default) Mutt-ng will try all available methods, in order from most-secure to least- secure. Example: set pop_authenticators='digest-md5:apop:user' - _7_._4_._2_0_5 _p_o_p___d_e_l_e_t_e + _7_._4_._2_0_6 _p_o_p___d_e_l_e_t_e Type: quadoption @@ -7129,7 +7141,7 @@ server when using the ``fetch-mail'' function. When _u_n_s_e_t, Mutt-ng will down- load messages but also leave them on the POP server. - _7_._4_._2_0_6 _p_o_p___h_o_s_t + _7_._4_._2_0_7 _p_o_p___h_o_s_t Type: string @@ -7145,7 +7157,7 @@ NNoottee:: Storing passwords in a configuration file presents a security risk since the superuser of your machine may read it regardless of the file's permissions. - _7_._4_._2_0_7 _p_o_p___l_a_s_t + _7_._4_._2_0_8 _p_o_p___l_a_s_t Type: boolean @@ -7153,11 +7165,13 @@ Availability: POP + The Mutt Next Generation E-Mail Client 137 + If this variable is _s_e_t, Mutt-ng will try to use the ``LAST'' POP command for retrieving only unread messages from the POP server when using the ``fetch- mail'' function. - _7_._4_._2_0_8 _p_o_p___m_a_i_l___c_h_e_c_k + _7_._4_._2_0_9 _p_o_p___m_a_i_l___c_h_e_c_k Type: number @@ -7165,11 +7179,9 @@ Availability: POP - The Mutt Next Generation E-Mail Client 137 - This variable configures how often (in seconds) POP should look for new mail. - _7_._4_._2_0_9 _p_o_p___p_a_s_s + _7_._4_._2_1_0 _p_o_p___p_a_s_s Type: string @@ -7183,7 +7195,7 @@ NNoottee:: Storing passwords in a configuration file presents a security risk since the superuser of your machine may read it regardless of the file's permissions. - _7_._4_._2_1_0 _p_o_p___r_e_c_o_n_n_e_c_t + _7_._4_._2_1_1 _p_o_p___r_e_c_o_n_n_e_c_t Type: quadoption @@ -7194,7 +7206,7 @@ Controls whether or not Mutt-ng will try to reconnect to a POP server when the connection is lost. - _7_._4_._2_1_1 _p_o_p___u_s_e_r + _7_._4_._2_1_2 _p_o_p___u_s_e_r Type: string @@ -7206,39 +7218,39 @@ This variable defaults to your user name on the local machine. - _7_._4_._2_1_2 _p_o_s_t___i_n_d_e_n_t___s_t_r_i_n_g + _7_._4_._2_1_3 _p_o_s_t___i_n_d_e_n_t___s_t_r_i_n_g Type: string + The Mutt Next Generation E-Mail Client 138 + Default: '' Similar to the ``_$_a_t_t_r_i_b_u_t_i_o_n (section 7.4.15 , page 89)'' variable, Mutt-ng will append this string after the inclusion of a message which is being replied to. - _7_._4_._2_1_3 _p_o_s_t_p_o_n_e + _7_._4_._2_1_4 _p_o_s_t_p_o_n_e Type: quadoption Default: ask-yes - The Mutt Next Generation E-Mail Client 138 - Controls whether or not messages are saved in the ``_$_p_o_s_t_p_o_n_e_d (section - 7.4.214 , page 138)'' mailbox when you elect not to send immediately. + 7.4.215 , page 138)'' mailbox when you elect not to send immediately. - _7_._4_._2_1_4 _p_o_s_t_p_o_n_e_d + _7_._4_._2_1_5 _p_o_s_t_p_o_n_e_d Type: path Default: '~/postponed' - Mutt-ng allows you to indefinitely ``_p_o_s_t_p_o_n_e (section 7.4.213 , page 137) + Mutt-ng allows you to indefinitely ``_p_o_s_t_p_o_n_e (section 7.4.214 , page 137) sending a message'' which you are editing. When you choose to postpone a mes- sage, Mutt-ng saves it in the mailbox specified by this variable. Also see the - ``_$_p_o_s_t_p_o_n_e (section 7.4.213 , page 137)'' variable. + ``_$_p_o_s_t_p_o_n_e (section 7.4.214 , page 137)'' variable. - _7_._4_._2_1_5 _p_r_e_c_o_n_n_e_c_t + _7_._4_._2_1_6 _p_r_e_c_o_n_n_e_c_t Type: string @@ -7257,7 +7269,7 @@ NNoottee:: For this example to work, you must be able to log in to the remote machine without having to enter a password. - _7_._4_._2_1_6 _p_r_i_n_t + _7_._4_._2_1_7 _p_r_i_n_t Type: quadoption @@ -7266,7 +7278,9 @@ Controls whether or not Mutt-ng really prints messages. This is set to _a_s_k_-_n_o by default, because some people accidentally hit ``p'' often. - _7_._4_._2_1_7 _p_r_i_n_t___c_o_m_m_a_n_d + The Mutt Next Generation E-Mail Client 139 + + _7_._4_._2_1_8 _p_r_i_n_t___c_o_m_m_a_n_d Type: path @@ -7274,74 +7288,71 @@ This specifies the command pipe that should be used to print messages. - _7_._4_._2_1_8 _p_r_i_n_t___d_e_c_o_d_e + _7_._4_._2_1_9 _p_r_i_n_t___d_e_c_o_d_e Type: boolean - The Mutt Next Generation E-Mail Client 139 - Default: yes Used in connection with the print-message command. If this option is _s_e_t, the message is decoded before it is passed to the external command specified by - _$_p_r_i_n_t___c_o_m_m_a_n_d (section 7.4.217 , page 138). If this option is _u_n_s_e_t, no pro- + _$_p_r_i_n_t___c_o_m_m_a_n_d (section 7.4.218 , page 138). If this option is _u_n_s_e_t, no pro- cessing will be applied to the message when printing it. The latter setting may be useful if you are using some advanced printer filter which is able to properly format e-mail messages for printing. - _7_._4_._2_1_9 _p_r_i_n_t___s_p_l_i_t + _7_._4_._2_2_0 _p_r_i_n_t___s_p_l_i_t Type: boolean Default: no Used in connection with the print-message command. If this option is _s_e_t, the - command specified by _$_p_r_i_n_t___c_o_m_m_a_n_d (section 7.4.217 , page 138) is executed + command specified by _$_p_r_i_n_t___c_o_m_m_a_n_d (section 7.4.218 , page 138) is executed once for each message which is to be printed. If this option is _u_n_s_e_t, the - command specified by _$_p_r_i_n_t___c_o_m_m_a_n_d (section 7.4.217 , page 138) is executed + command specified by _$_p_r_i_n_t___c_o_m_m_a_n_d (section 7.4.218 , page 138) is executed only once, and all the messages are concatenated, with a form feed as the mes- sage separator. Those who use the enscript(1) program's mail-printing mode will most likely want to set this option. - _7_._4_._2_2_0 _p_r_o_m_p_t___a_f_t_e_r + _7_._4_._2_2_1 _p_r_o_m_p_t___a_f_t_e_r Type: boolean Default: yes - If you use an _e_x_t_e_r_n_a_l ``_$_p_a_g_e_r (section 7.4.166 , page 126)'', setting this + If you use an _e_x_t_e_r_n_a_l ``_$_p_a_g_e_r (section 7.4.167 , page 127)'', setting this variable will cause Mutt-ng to prompt you for a command when the pager exits rather than returning to the index menu. If _u_n_s_e_t, Mutt-ng will return to the index menu when the external pager exits. - _7_._4_._2_2_1 _q_u_e_r_y___c_o_m_m_a_n_d + _7_._4_._2_2_2 _q_u_e_r_y___c_o_m_m_a_n_d Type: path Default: '' + The Mutt Next Generation E-Mail Client 140 + This specifies the command that Mutt-ng will use to make external address queries. The string should contain a %s, which will be substituted with the query string the user types. See ``_q_u_e_r_y (section 4.7 , page 55)'' for more information. - _7_._4_._2_2_2 _q_u_i_t + _7_._4_._2_2_3 _q_u_i_t Type: quadoption Default: yes This variable controls whether ``quit'' and ``exit'' actually quit from Mutt- - - The Mutt Next Generation E-Mail Client 140 - ng. If it set to _y_e_s, they do quit, if it is set to _n_o, they have no effect, and if it is set to _a_s_k_-_y_e_s or _a_s_k_-_n_o, you are prompted for confirmation when you try to quit. - _7_._4_._2_2_3 _q_u_o_t_e___e_m_p_t_y + _7_._4_._2_2_4 _q_u_o_t_e___e_m_p_t_y Type: boolean @@ -7350,7 +7361,7 @@ Controls whether or not empty lines will be quoted using ``_i_n_d_e_n_t___s_t_r_i_n_g (sec- tion 7.4.109 , page 111)''. - _7_._4_._2_2_4 _q_u_o_t_e___q_u_o_t_e_d + _7_._4_._2_2_5 _q_u_o_t_e___q_u_o_t_e_d Type: boolean @@ -7360,7 +7371,7 @@ added to the end of existing prefix. Otherwise, quoted lines will be prepended by ``_i_n_d_e_n_t___s_t_r_i_n_g (section 7.4.109 , page 111)''. - _7_._4_._2_2_5 _q_u_o_t_e___r_e_g_e_x_p + _7_._4_._2_2_6 _q_u_o_t_e___r_e_g_e_x_p Type: regular expression @@ -7373,12 +7384,14 @@ set this to a regular expression that matches _e_x_a_c_t_l_y the quote characters at the beginning of quoted lines. - _7_._4_._2_2_6 _r_e_a_d___i_n_c + _7_._4_._2_2_7 _r_e_a_d___i_n_c Type: number Default: 10 + The Mutt Next Generation E-Mail Client 141 + If set to a value greater than 0, Mutt-ng will display which message it is cur- rently on when reading a mailbox. The message is printed after _r_e_a_d___i_n_c mes- sages have been read (e.g., if set to 25, Mutt-ng will print a message when it @@ -7387,11 +7400,9 @@ time. When set to 0, only a single message will appear before the reading the mailbox. - Also see the ``_$_w_r_i_t_e___i_n_c (section 7.4.340 , page 168)'' variable. + Also see the ``_$_w_r_i_t_e___i_n_c (section 7.4.341 , page 168)'' variable. - _7_._4_._2_2_7 _r_e_a_d___o_n_l_y - - The Mutt Next Generation E-Mail Client 141 + _7_._4_._2_2_8 _r_e_a_d___o_n_l_y Type: boolean @@ -7399,7 +7410,7 @@ If set, all folders are opened in read-only mode. - _7_._4_._2_2_8 _r_e_a_l_n_a_m_e + _7_._4_._2_2_9 _r_e_a_l_n_a_m_e Type: string @@ -7413,18 +7424,18 @@ _N_o_t_e_: This variable will _n_o_t be used when the user has set a real name in the _$_f_r_o_m (section 7.4.74 , page 103) variable. - _7_._4_._2_2_9 _r_e_c_a_l_l + _7_._4_._2_3_0 _r_e_c_a_l_l Type: quadoption Default: ask-yes Controls whether or not Mutt-ng recalls postponed messages when composing a new - message. Also see ``_$_p_o_s_t_p_o_n_e_d (section 7.4.214 , page 138)''. + message. Also see ``_$_p_o_s_t_p_o_n_e_d (section 7.4.215 , page 138)''. Setting this variable to _y_e_s is not generally useful, and thus not recommended. - _7_._4_._2_3_0 _r_e_c_o_r_d + _7_._4_._2_3_1 _r_e_c_o_r_d Type: path @@ -7435,25 +7446,24 @@ another way to do this is using the ``_m_y___h_d_r (section 3.15 , page 34)'' com- mand to create a Bcc: header field with your email address in it.) - The value of _$_r_e_c_o_r_d _(_s_e_c_t_i_o_n _7_._4_._2_3_0 _, _p_a_g_e _1_4_1_) is overridden by the + The Mutt Next Generation E-Mail Client 142 + + The value of _$_r_e_c_o_r_d _(_s_e_c_t_i_o_n _7_._4_._2_3_1 _, _p_a_g_e _1_4_1_) is overridden by the ``_$_f_o_r_c_e___n_a_m_e (section 7.4.68 , page 101)'' and ``_$_s_a_v_e___n_a_m_e (section - 7.4.241 , page 144)'' variables, and the ``_f_c_c_-_h_o_o_k (section 3.18 , page + 7.4.242 , page 144)'' variables, and the ``_f_c_c_-_h_o_o_k (section 3.18 , page 35)'' command. - _7_._4_._2_3_1 _r_e_p_l_y___r_e_g_e_x_p + _7_._4_._2_3_2 _r_e_p_l_y___r_e_g_e_x_p Type: regular expression Default: '^(re([\[0-9\]+])*|aw):[ \t]*' - A regular expression used to recognize reply messages when threading and - - The Mutt Next Generation E-Mail Client 142 - - replying. The default value corresponds to the English ``Re:'' and the German + A regular expression used to recognize reply messages when threading and reply- + ing. The default value corresponds to the English ``Re:'' and the German ``Aw:''. - _7_._4_._2_3_2 _r_e_p_l_y___s_e_l_f + _7_._4_._2_3_3 _r_e_p_l_y___s_e_l_f Type: boolean @@ -7463,7 +7473,7 @@ that you want to reply to the recipients of that message rather than to your- self. - _7_._4_._2_3_3 _r_e_p_l_y___t_o + _7_._4_._2_3_4 _r_e_p_l_y___t_o Type: quadoption @@ -7477,7 +7487,7 @@ header field to the list address and you want to send a private message to the author of a message. - _7_._4_._2_3_4 _r_e_s_o_l_v_e + _7_._4_._2_3_5 _r_e_s_o_l_v_e Type: boolean @@ -7487,12 +7497,14 @@ undeleted) message whenever a command that modifies the current message is exe- cuted. - _7_._4_._2_3_5 _r_e_v_e_r_s_e___a_l_i_a_s + _7_._4_._2_3_6 _r_e_v_e_r_s_e___a_l_i_a_s Type: boolean Default: no + The Mutt Next Generation E-Mail Client 143 + This variable controls whether or not Mutt-ng will display the ``personal'' name from your aliases in the index menu if it finds an alias that matches the message's sender. For example, if you have the following alias: @@ -7504,13 +7516,10 @@ From: abd30425@somewhere.net It would be displayed in the index menu as ``Joe User'' instead of - - The Mutt Next Generation E-Mail Client 143 - ``abd30425@somewhere.net.'' This is useful when the person's e-mail address is not human friendly (like CompuServe addresses). - _7_._4_._2_3_6 _r_e_v_e_r_s_e___n_a_m_e + _7_._4_._2_3_7 _r_e_v_e_r_s_e___n_a_m_e Type: boolean @@ -7524,19 +7533,19 @@ would be used doesn't match your alternates, the From: line will use your address on the current machine. - _7_._4_._2_3_7 _r_e_v_e_r_s_e___r_e_a_l_n_a_m_e + _7_._4_._2_3_8 _r_e_v_e_r_s_e___r_e_a_l_n_a_m_e Type: boolean Default: yes - This variable fine-tunes the behaviour of the _r_e_v_e_r_s_e___n_a_m_e (section 7.4.236 , + This variable fine-tunes the behaviour of the _r_e_v_e_r_s_e___n_a_m_e (section 7.4.237 , page 143) feature. When it is _s_e_t, Mutt-ng will use the address from incoming messages as-is, possibly including eventual real names. When it is _u_n_s_e_t, Mutt-ng will override any such real names with the setting of the _r_e_a_l_n_a_m_e - (section 7.4.228 , page 141) variable. + (section 7.4.229 , page 141) variable. - _7_._4_._2_3_8 _r_f_c_2_0_4_7___p_a_r_a_m_e_t_e_r_s + _7_._4_._2_3_9 _r_f_c_2_0_4_7___p_a_r_a_m_e_t_e_r_s Type: boolean @@ -7551,6 +7560,8 @@ When this variable is _s_e_t interactively, the change doesn't have the desired effect before you have changed folders. + The Mutt Next Generation E-Mail Client 144 + Note that this use of RFC 2047's encoding is explicitly, prohibited by the standard, but nevertheless encountered in the wild. @@ -7558,33 +7569,31 @@ _g_e_n_e_r_a_t_e_s this kind of encoding. Instead, Mutt-ng will unconditionally use the encoding specified in RFC 2231. - _7_._4_._2_3_9 _s_a_v_e___a_d_d_r_e_s_s + _7_._4_._2_4_0 _s_a_v_e___a_d_d_r_e_s_s Type: boolean - The Mutt Next Generation E-Mail Client 144 - Default: no If _s_e_t, Mutt-ng will take the sender's full address when choosing a default - folder for saving a mail. If ``_$_s_a_v_e___n_a_m_e (section 7.4.241 , page 144)'' or + folder for saving a mail. If ``_$_s_a_v_e___n_a_m_e (section 7.4.242 , page 144)'' or ``_$_f_o_r_c_e___n_a_m_e (section 7.4.68 , page 101)'' is _s_e_t too, the selection of the fcc folder will be changed as well. - _7_._4_._2_4_0 _s_a_v_e___e_m_p_t_y + _7_._4_._2_4_1 _s_a_v_e___e_m_p_t_y Type: boolean Default: yes When _u_n_s_e_t, mailboxes which contain no saved messages will be removed when - closed (the exception is ``_$_s_p_o_o_l_f_i_l_e (section 7.4.297 , page 157)'' which is + closed (the exception is ``_$_s_p_o_o_l_f_i_l_e (section 7.4.298 , page 157)'' which is never removed). If _s_e_t, mailboxes are never removed. NNoottee:: This only applies to mbox and MMDF folders, Mutt-ng does not delete MH and Maildir directories. - _7_._4_._2_4_1 _s_a_v_e___n_a_m_e + _7_._4_._2_4_2 _s_a_v_e___n_a_m_e Type: boolean @@ -7595,21 +7604,25 @@ (this is done by searching for a mailbox in the ``_$_f_o_l_d_e_r (section 7.4.64 , page 100)'' directory with the _u_s_e_r_n_a_m_e part of the recipient address). If the mailbox exists, the outgoing message will be saved to that mailbox, otherwise - the message is saved to the ``_$_r_e_c_o_r_d (section 7.4.230 , page 141)'' mailbox. + the message is saved to the ``_$_r_e_c_o_r_d (section 7.4.231 , page 141)'' mailbox. Also see the ``_$_f_o_r_c_e___n_a_m_e (section 7.4.68 , page 101)'' variable. - _7_._4_._2_4_2 _s_c_o_r_e + _7_._4_._2_4_3 _s_c_o_r_e Type: boolean Default: yes When this variable is _u_n_s_e_t, scoring is turned off. This can be useful to - selectively disable scoring for certain folders when the ``_$_s_c_o_r_e___t_h_r_e_s_h_- - _o_l_d___d_e_l_e_t_e (section 7.4.243 , page 144)'' variable and friends are used. + selectively disable scoring for certain folders when the + + The Mutt Next Generation E-Mail Client 145 - _7_._4_._2_4_3 _s_c_o_r_e___t_h_r_e_s_h_o_l_d___d_e_l_e_t_e + ``_$_s_c_o_r_e___t_h_r_e_s_h_o_l_d___d_e_l_e_t_e (section 7.4.244 , page 144)'' variable and friends + are used. + + _7_._4_._2_4_4 _s_c_o_r_e___t_h_r_e_s_h_o_l_d___d_e_l_e_t_e Type: number @@ -7618,12 +7631,9 @@ Messages which have been assigned a score equal to or lower than the value of this variable are automatically marked for deletion by Mutt-ng. Since Mutt-ng scores are always greater than or equal to zero, the default setting of this - - The Mutt Next Generation E-Mail Client 145 - variable will never mark a message for deletion. - _7_._4_._2_4_4 _s_c_o_r_e___t_h_r_e_s_h_o_l_d___f_l_a_g + _7_._4_._2_4_5 _s_c_o_r_e___t_h_r_e_s_h_o_l_d___f_l_a_g Type: number @@ -7632,7 +7642,7 @@ Messages which have been assigned a score greater than or equal to this vari- able's value are automatically marked ``flagged''. - _7_._4_._2_4_5 _s_c_o_r_e___t_h_r_e_s_h_o_l_d___r_e_a_d + _7_._4_._2_4_6 _s_c_o_r_e___t_h_r_e_s_h_o_l_d___r_e_a_d Type: number @@ -7643,7 +7653,7 @@ scores are always greater than or equal to zero, the default setting of this variable will never mark a message read. - _7_._4_._2_4_6 _s_e_n_d___c_h_a_r_s_e_t + _7_._4_._2_4_7 _s_e_n_d___c_h_a_r_s_e_t Type: string @@ -7656,28 +7666,29 @@ standard character set (such as iso-8859-2, koi8-r or iso-2022-jp) either instead of or after iso-8859-1. - _7_._4_._2_4_7 _s_e_n_d_m_a_i_l + _7_._4_._2_4_8 _s_e_n_d_m_a_i_l Type: path Default: '/usr/sbin/sendmail -oem -oi' Specifies the program and arguments used to deliver mail sent by Mutt-ng. + + The Mutt Next Generation E-Mail Client 146 + Mutt-ng expects that the specified program interprets additional arguments as recipient addresses. - _7_._4_._2_4_8 _s_e_n_d_m_a_i_l___w_a_i_t + _7_._4_._2_4_9 _s_e_n_d_m_a_i_l___w_a_i_t Type: number Default: 0 - Specifies the number of seconds to wait for the ``_$_s_e_n_d_m_a_i_l (section 7.4.247 , + Specifies the number of seconds to wait for the ``_$_s_e_n_d_m_a_i_l (section 7.4.248 , page 145)'' process to finish before giving up and putting delivery in the background. - The Mutt Next Generation E-Mail Client 146 - Mutt-ng interprets the value of this variable as follows: >0 @@ -7693,7 +7704,7 @@ will be put in a temporary file. If there is some error, you will be informed as to where to find the output. - _7_._4_._2_4_9 _s_h_e_l_l + _7_._4_._2_5_0 _s_h_e_l_l Type: path @@ -7702,26 +7713,29 @@ Command to use when spawning a subshell. By default, the user's login shell from /etc/passwd is used. - _7_._4_._2_5_0 _s_i_d_e_b_a_r___b_o_u_n_d_a_r_y + _7_._4_._2_5_1 _s_i_d_e_b_a_r___b_o_u_n_d_a_r_y Type: string Default: '.' When the sidebar is displayed and _$_s_i_d_e_b_a_r___s_h_o_r_t_e_n___h_i_e_r_a_r_c_h_y (section - 7.4.254 , page 147) is _s_e_t, this variable specifies the characters at which to + 7.4.255 , page 147) is _s_e_t, this variable specifies the characters at which to split a folder name into ``hierarchy items.'' - _7_._4_._2_5_1 _s_i_d_e_b_a_r___d_e_l_i_m + _7_._4_._2_5_2 _s_i_d_e_b_a_r___d_e_l_i_m Type: string Default: '|' This specifies the delimiter between the sidebar (if visible) and other + + The Mutt Next Generation E-Mail Client 147 + screens. - _7_._4_._2_5_2 _s_i_d_e_b_a_r___n_e_w_m_a_i_l___o_n_l_y + _7_._4_._2_5_3 _s_i_d_e_b_a_r___n_e_w_m_a_i_l___o_n_l_y Type: boolean @@ -7729,12 +7743,10 @@ If _s_e_t, only folders with new mail will be shown in the sidebar. - _7_._4_._2_5_3 _s_i_d_e_b_a_r___n_u_m_b_e_r___f_o_r_m_a_t + _7_._4_._2_5_4 _s_i_d_e_b_a_r___n_u_m_b_e_r___f_o_r_m_a_t Type: string - The Mutt Next Generation E-Mail Client 147 - Default: '%m%?n?(%n)?%?f?[%f]?' This variable controls how message counts are printed when the sidebar is @@ -7766,7 +7778,7 @@ 1) These expandos only have a non-zero value for the current mailbox and will always be zero otherwise. - _7_._4_._2_5_4 _s_i_d_e_b_a_r___s_h_o_r_t_e_n___h_i_e_r_a_r_c_h_y + _7_._4_._2_5_5 _s_i_d_e_b_a_r___s_h_o_r_t_e_n___h_i_e_r_a_r_c_h_y Type: boolean @@ -7774,27 +7786,27 @@ When _s_e_t, the ``hierarchy'' of the sidebar entries will be shortened only if they cannot be printed in full length (because ``_$_s_i_d_e_b_a_r___w_i_d_t_h (section - 7.4.256 , page 148)'' is set to a too low value). For example, if the news- - group name ``de.alt.sysadmin.recovery'' doesn't fit on the screen, it'll get - shortened ``d.a.s.recovery'' while ``de.alt.d0'' still would and thus will not - get shortened. + 7.4.257 , page 148)'' is set to a too low value). For example, if the + + The Mutt Next Generation E-Mail Client 148 + + newsgroup name ``de.alt.sysadmin.recovery'' doesn't fit on the screen, it'll + get shortened ``d.a.s.recovery'' while ``de.alt.d0'' still would and thus will + not get shortened. At which characters this compression is done is controled via the _$_s_i_d_e_- - _b_a_r___b_o_u_n_d_a_r_y (section 7.4.250 , page 146) variable. + _b_a_r___b_o_u_n_d_a_r_y (section 7.4.251 , page 146) variable. - _7_._4_._2_5_5 _s_i_d_e_b_a_r___v_i_s_i_b_l_e + _7_._4_._2_5_6 _s_i_d_e_b_a_r___v_i_s_i_b_l_e Type: boolean Default: no This specifies whether or not to show the sidebar (a list of folders specified - - The Mutt Next Generation E-Mail Client 148 - with the ``mailboxes'' command). - _7_._4_._2_5_6 _s_i_d_e_b_a_r___w_i_d_t_h + _7_._4_._2_5_7 _s_i_d_e_b_a_r___w_i_d_t_h Type: number @@ -7802,14 +7814,14 @@ The width of the sidebar. - _7_._4_._2_5_7 _s_i_g___d_a_s_h_e_s + _7_._4_._2_5_8 _s_i_g___d_a_s_h_e_s Type: boolean Default: yes If set, a line containing ``-- '' (dash, dash, space) will be inserted before - your ``_$_s_i_g_n_a_t_u_r_e (section 7.4.259 , page 148)''. It is ssttrroonnggllyy recommended + your ``_$_s_i_g_n_a_t_u_r_e (section 7.4.260 , page 148)''. It is ssttrroonnggllyy recommended that you not unset this variable unless your ``signature'' contains just your name. The reason for this is because many software packages use ``-- \n'' to detect your signature. @@ -7817,7 +7829,7 @@ For example, Mutt-ng has the ability to highlight the signature in a different color in the builtin pager. - _7_._4_._2_5_8 _s_i_g___o_n___t_o_p + _7_._4_._2_5_9 _s_i_g___o_n___t_o_p Type: boolean @@ -7828,17 +7840,19 @@ know what you are doing, and are prepared to take some heat from netiquette guardians. - _7_._4_._2_5_9 _s_i_g_n_a_t_u_r_e + _7_._4_._2_6_0 _s_i_g_n_a_t_u_r_e Type: path + The Mutt Next Generation E-Mail Client 149 + Default: '~/.signature' Specifies the filename of your signature, which is appended to all outgoing messages. If the filename ends with a pipe (``|''), it is assumed that file- name is a shell command and input should be read from its stdout. - _7_._4_._2_6_0 _s_i_g_n_o_f_f___s_t_r_i_n_g + _7_._4_._2_6_1 _s_i_g_n_o_f_f___s_t_r_i_n_g Type: string @@ -7847,13 +7861,11 @@ If _s_e_t, this string will be inserted before the signature. This is useful for people that want to sign off every message they send with their name. - The Mutt Next Generation E-Mail Client 149 - If you want to insert your website's URL, additional contact information or witty quotes into your mails, better use a signature file instead of the sig- noff string. - _7_._4_._2_6_1 _s_i_m_p_l_e___s_e_a_r_c_h + _7_._4_._2_6_2 _s_i_m_p_l_e___s_e_a_r_c_h Type: string @@ -7869,7 +7881,7 @@ ~f joe | ~s joe - _7_._4_._2_6_2 _s_l_e_e_p___t_i_m_e + _7_._4_._2_6_3 _s_l_e_e_p___t_i_m_e Type: number @@ -7880,7 +7892,7 @@ the current folder. The default is to pause one second, so a value of zero for this option suppresses the pause. - _7_._4_._2_6_3 _s_m_a_r_t___w_r_a_p + _7_._4_._2_6_4 _s_m_a_r_t___w_r_a_p Type: boolean @@ -7888,22 +7900,23 @@ Controls the display of lines longer than the screen width in the internal pager. If _s_e_t, long lines are wrapped at a word boundary. If _u_n_s_e_t, lines are + + The Mutt Next Generation E-Mail Client 150 + simply wrapped at the screen edge. Also see the ``_$_m_a_r_k_e_r_s (section 7.4.121 , page 115)'' variable. - _7_._4_._2_6_4 _s_m_i_l_e_y_s + _7_._4_._2_6_5 _s_m_i_l_e_y_s Type: regular expression Default: '(>From )|(:[-^]?[][)(><}{|/DP])' The _p_a_g_e_r uses this variable to catch some common false positives of - ``_$_q_u_o_t_e___r_e_g_e_x_p (section 7.4.225 , page 140)'', most notably smileys in the + ``_$_q_u_o_t_e___r_e_g_e_x_p (section 7.4.226 , page 140)'', most notably smileys in the beginning of a line - _7_._4_._2_6_5 _s_m_i_m_e___a_s_k___c_e_r_t___l_a_b_e_l - - The Mutt Next Generation E-Mail Client 150 + _7_._4_._2_6_6 _s_m_i_m_e___a_s_k___c_e_r_t___l_a_b_e_l Type: boolean @@ -7913,7 +7926,7 @@ cate about to be added to the database or not. It is _s_e_t by default. (S/MIME only) - _7_._4_._2_6_6 _s_m_i_m_e___c_a___l_o_c_a_t_i_o_n + _7_._4_._2_6_7 _s_m_i_m_e___c_a___l_o_c_a_t_i_o_n Type: path @@ -7922,7 +7935,7 @@ This variable contains the name of either a directory, or a file which contains trusted certificates for use with OpenSSL. (S/MIME only) - _7_._4_._2_6_7 _s_m_i_m_e___c_e_r_t_i_f_i_c_a_t_e_s + _7_._4_._2_6_8 _s_m_i_m_e___c_e_r_t_i_f_i_c_a_t_e_s Type: path @@ -7935,7 +7948,7 @@ address keyid pairs, and which can be manually edited. This one points to the location of the certificates. (S/MIME only) - _7_._4_._2_6_8 _s_m_i_m_e___d_e_c_r_y_p_t___c_o_m_m_a_n_d + _7_._4_._2_6_9 _s_m_i_m_e___d_e_c_r_y_p_t___c_o_m_m_a_n_d Type: string @@ -7944,6 +7957,8 @@ This format string specifies a command which is used to decrypt application/x- pkcs7-mime attachments. + The Mutt Next Generation E-Mail Client 151 + The OpenSSL command formats have their own set of printf(3)-like sequences sim- ilar to PGP's: @@ -7955,11 +7970,9 @@ multipart/signed attachment when verifying it. %k - The key-pair specified with _$_s_m_i_m_e___d_e_f_a_u_l_t___k_e_y (section 7.4.270 , + The key-pair specified with _$_s_m_i_m_e___d_e_f_a_u_l_t___k_e_y (section 7.4.271 , page 151) - The Mutt Next Generation E-Mail Client 151 - %c One or more certificate IDs. @@ -7968,15 +7981,15 @@ %C CA location: Depending on whether _$_s_m_i_m_e___c_a___l_o_c_a_t_i_o_n (section - 7.4.266 , page 150) points to a directory or file, this expands to - '-CApath _$_s_m_i_m_e___c_a___l_o_c_a_t_i_o_n (section 7.4.266 , page 150)' or - '-CAfile _$_s_m_i_m_e___c_a___l_o_c_a_t_i_o_n (section 7.4.266 , page 150)'. + 7.4.267 , page 150) points to a directory or file, this expands to + '-CApath _$_s_m_i_m_e___c_a___l_o_c_a_t_i_o_n (section 7.4.267 , page 150)' or + '-CAfile _$_s_m_i_m_e___c_a___l_o_c_a_t_i_o_n (section 7.4.267 , page 150)'. For examples on how to configure these formats, see the smime.rc in the sam- ples/ subdirectory which has been installed on your system alongside the docu- mentation. (S/MIME only) - _7_._4_._2_6_9 _s_m_i_m_e___d_e_c_r_y_p_t___u_s_e___d_e_f_a_u_l_t___k_e_y + _7_._4_._2_7_0 _s_m_i_m_e___d_e_c_r_y_p_t___u_s_e___d_e_f_a_u_l_t___k_e_y Type: boolean @@ -7987,7 +8000,7 @@ 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) - _7_._4_._2_7_0 _s_m_i_m_e___d_e_f_a_u_l_t___k_e_y + _7_._4_._2_7_1 _s_m_i_m_e___d_e_f_a_u_l_t___k_e_y Type: string @@ -7996,15 +8009,17 @@ This is the default key-pair to use for signing. This must be set to the keyid (the hash-value that OpenSSL generates) to work properly (S/MIME only) - _7_._4_._2_7_1 _s_m_i_m_e___e_n_c_r_y_p_t___c_o_m_m_a_n_d + _7_._4_._2_7_2 _s_m_i_m_e___e_n_c_r_y_p_t___c_o_m_m_a_n_d Type: string + The Mutt Next Generation E-Mail Client 152 + Default: '' This command is used to create encrypted S/MIME messages. (S/MIME only) - _7_._4_._2_7_2 _s_m_i_m_e___e_n_c_r_y_p_t___w_i_t_h + _7_._4_._2_7_3 _s_m_i_m_e___e_n_c_r_y_p_t___w_i_t_h Type: string @@ -8015,9 +8030,7 @@ If _u_n_s_e_t ``_3_d_e_s'' (TripleDES) is used. (S/MIME only) - The Mutt Next Generation E-Mail Client 152 - - _7_._4_._2_7_3 _s_m_i_m_e___g_e_t___c_e_r_t___c_o_m_m_a_n_d + _7_._4_._2_7_4 _s_m_i_m_e___g_e_t___c_e_r_t___c_o_m_m_a_n_d Type: string @@ -8026,7 +8039,7 @@ This command is used to extract X509 certificates from a PKCS7 structure. (S/MIME only) - _7_._4_._2_7_4 _s_m_i_m_e___g_e_t___c_e_r_t___e_m_a_i_l___c_o_m_m_a_n_d + _7_._4_._2_7_5 _s_m_i_m_e___g_e_t___c_e_r_t___e_m_a_i_l___c_o_m_m_a_n_d Type: string @@ -8036,7 +8049,7 @@ tificates, and for verification purposes (to check whether the certificate was issued for the sender's mailbox). (S/MIME only) - _7_._4_._2_7_5 _s_m_i_m_e___g_e_t___s_i_g_n_e_r___c_e_r_t___c_o_m_m_a_n_d + _7_._4_._2_7_6 _s_m_i_m_e___g_e_t___s_i_g_n_e_r___c_e_r_t___c_o_m_m_a_n_d Type: string @@ -8046,7 +8059,7 @@ signature, so that the certificate's owner may get compared to the email's ``From:'' header field. (S/MIME only) - _7_._4_._2_7_6 _s_m_i_m_e___i_m_p_o_r_t___c_e_r_t___c_o_m_m_a_n_d + _7_._4_._2_7_7 _s_m_i_m_e___i_m_p_o_r_t___c_e_r_t___c_o_m_m_a_n_d Type: string @@ -8054,7 +8067,9 @@ This command is used to import a certificate via smime_keysng. (S/MIME only) - _7_._4_._2_7_7 _s_m_i_m_e___i_s___d_e_f_a_u_l_t + _7_._4_._2_7_8 _s_m_i_m_e___i_s___d_e_f_a_u_l_t + + The Mutt Next Generation E-Mail Client 153 Type: boolean @@ -8069,9 +8084,7 @@ (Note that this variable can be overridden by unsetting _$_c_r_y_p_t___a_u_t_o_s_m_i_m_e (sec- tion 7.4.37 , page 94).) (S/MIME only) - _7_._4_._2_7_8 _s_m_i_m_e___k_e_y_s - - The Mutt Next Generation E-Mail Client 153 + _7_._4_._2_7_9 _s_m_i_m_e___k_e_y_s Type: path @@ -8084,7 +8097,7 @@ address keyid pair, and which can be manually edited. This one points to the location of the private keys. (S/MIME only) - _7_._4_._2_7_9 _s_m_i_m_e___p_k_7_o_u_t___c_o_m_m_a_n_d + _7_._4_._2_8_0 _s_m_i_m_e___p_k_7_o_u_t___c_o_m_m_a_n_d Type: string @@ -8093,7 +8106,7 @@ This command is used to extract PKCS7 structures of S/MIME signatures, in order to extract the public X509 certificate(s). (S/MIME only) - _7_._4_._2_8_0 _s_m_i_m_e___s_i_g_n___c_o_m_m_a_n_d + _7_._4_._2_8_1 _s_m_i_m_e___s_i_g_n___c_o_m_m_a_n_d Type: string @@ -8102,7 +8115,7 @@ This command is used to created S/MIME signatures of type multipart/signed, which can be read by all mail clients. (S/MIME only) - _7_._4_._2_8_1 _s_m_i_m_e___s_i_g_n___o_p_a_q_u_e___c_o_m_m_a_n_d + _7_._4_._2_8_2 _s_m_i_m_e___s_i_g_n___o_p_a_q_u_e___c_o_m_m_a_n_d Type: string @@ -8112,7 +8125,9 @@ pkcs7-signature, which can only be handled by mail clients supporting the S/MIME extension. (S/MIME only) - _7_._4_._2_8_2 _s_m_i_m_e___t_i_m_e_o_u_t + The Mutt Next Generation E-Mail Client 154 + + _7_._4_._2_8_3 _s_m_i_m_e___t_i_m_e_o_u_t Type: number @@ -8121,18 +8136,16 @@ The number of seconds after which a cached passphrase will expire if not used. (S/MIME only) - _7_._4_._2_8_3 _s_m_i_m_e___v_e_r_i_f_y___c_o_m_m_a_n_d + _7_._4_._2_8_4 _s_m_i_m_e___v_e_r_i_f_y___c_o_m_m_a_n_d Type: string Default: '' - The Mutt Next Generation E-Mail Client 154 - This command is used to verify S/MIME signatures of type multipart/signed. (S/MIME only) - _7_._4_._2_8_4 _s_m_i_m_e___v_e_r_i_f_y___o_p_a_q_u_e___c_o_m_m_a_n_d + _7_._4_._2_8_5 _s_m_i_m_e___v_e_r_i_f_y___o_p_a_q_u_e___c_o_m_m_a_n_d Type: string @@ -8141,7 +8154,7 @@ This command is used to verify S/MIME signatures of type application/x- pkcs7-mime. (S/MIME only) - _7_._4_._2_8_5 _s_m_t_p___e_n_v_e_l_o_p_e + _7_._4_._2_8_6 _s_m_t_p___e_n_v_e_l_o_p_e Type: string @@ -8156,7 +8169,7 @@ envelope sender but only a particular one which may not be the same as the user's desired From: header. - _7_._4_._2_8_6 _s_m_t_p___h_o_s_t + _7_._4_._2_8_7 _s_m_t_p___h_o_s_t Type: string @@ -8166,9 +8179,11 @@ Defines the SMTP host which will be used to deliver mail, as opposed to invok- ing the sendmail binary. Setting this variable overrides the value of ``_$_s_e_n_d_- - _m_a_i_l (section 7.4.247 , page 145)'', and any associated variables. + _m_a_i_l (section 7.4.248 , page 145)'', and any associated variables. - _7_._4_._2_8_7 _s_m_t_p___p_a_s_s + The Mutt Next Generation E-Mail Client 155 + + _7_._4_._2_8_8 _s_m_t_p___p_a_s_s Type: string @@ -8177,15 +8192,13 @@ Availability: SMTP Defines the password to use with SMTP AUTH. If ``_$_s_m_t_p___u_s_e_r (section - 7.4.290 , page 155)'' is set, but this variable is not, you will be prompted + 7.4.291 , page 155)'' is set, but this variable is not, you will be prompted for a password when sending. NNoottee:: Storing passwords in a configuration file presents a security risk since the superuser of your machine may read it regardless of the file's permissions. - The Mutt Next Generation E-Mail Client 155 - - _7_._4_._2_8_8 _s_m_t_p___p_o_r_t + _7_._4_._2_8_9 _s_m_t_p___p_o_r_t Type: number @@ -8199,7 +8212,7 @@ Defaults to 25, the standard SMTP port, but RFC 2476-compliant SMTP servers will probably desire 587, the mail submission port. - _7_._4_._2_8_9 _s_m_t_p___u_s_e___t_l_s + _7_._4_._2_9_0 _s_m_t_p___u_s_e___t_l_s Type: string @@ -8213,7 +8226,7 @@ continue without TLS in case of an error. Muttng still needs to have SSL sup- port enabled in order to use it. - _7_._4_._2_9_0 _s_m_t_p___u_s_e_r + _7_._4_._2_9_1 _s_m_t_p___u_s_e_r Type: string @@ -8224,7 +8237,9 @@ Defines the username to use with SMTP AUTH. Setting this variable will cause Mutt-ng to attempt to use SMTP AUTH when sending. - _7_._4_._2_9_1 _s_o_r_t + The Mutt Next Generation E-Mail Client 156 + + _7_._4_._2_9_2 _s_o_r_t Type: sort order @@ -8232,8 +8247,6 @@ Specifies how to sort messages in the _i_n_d_e_x menu. Valid values are: - The Mutt Next Generation E-Mail Client 156 - date or date-sent date-received from @@ -8248,7 +8261,7 @@ You may optionally use the ``reverse-'' prefix to specify reverse sorting order (example: set sort=reverse-date-sent). - _7_._4_._2_9_2 _s_o_r_t___a_l_i_a_s + _7_._4_._2_9_3 _s_o_r_t___a_l_i_a_s Type: sort order @@ -8261,7 +8274,7 @@ alias (sort alphabetically by alias name) unsorted (leave in order specified in .muttrc) - _7_._4_._2_9_3 _s_o_r_t___a_u_x + _7_._4_._2_9_4 _s_o_r_t___a_u_x Type: sort order @@ -8269,24 +8282,24 @@ When sorting by threads, this variable controls how threads are sorted in rela- tion to other threads, and how the branches of the thread trees are sorted. - This can be set to any value that ``_$_s_o_r_t (section 7.4.291 , page 155)'' can, + This can be set to any value that ``_$_s_o_r_t (section 7.4.292 , page 155)'' can, except threads (in that case, Mutt-ng will just use date-sent). You can also specify the ``last-'' prefix in addition to ``reverse-'' prefix, but last- must come after reverse-. The last- prefix causes messages to be sorted against its siblings by which has the last descendant, using the rest of sort_aux as an ordering. + The Mutt Next Generation E-Mail Client 157 + For instance, set sort_aux=last-date-received would mean that if a new message is received in a thread, that thread becomes the last one displayed (or the first, if you have set sort=reverse-threads.) - NNoottee:: For reversed ``_$_s_o_r_t (section 7.4.291 , page 155)'' order _$_s_o_r_t___a_u_x - (section 7.4.293 , page 156) is reversed again (which is not the right thing + NNoottee:: For reversed ``_$_s_o_r_t (section 7.4.292 , page 155)'' order _$_s_o_r_t___a_u_x + (section 7.4.294 , page 156) is reversed again (which is not the right thing to do, but kept to not break any existing configuration setting). - The Mutt Next Generation E-Mail Client 157 - - _7_._4_._2_9_4 _s_o_r_t___b_r_o_w_s_e_r + _7_._4_._2_9_5 _s_o_r_t___b_r_o_w_s_e_r Type: sort order @@ -8303,49 +8316,48 @@ You may optionally use the ``reverse-'' prefix to specify reverse sorting order (example: set sort_browser=reverse-date). - _7_._4_._2_9_5 _s_o_r_t___r_e + _7_._4_._2_9_6 _s_o_r_t___r_e Type: boolean Default: yes This variable is only useful when sorting by threads with ``_$_s_t_r_i_c_t___t_h_r_e_a_d_s - (section 7.4.312 , page 163)'' _u_n_s_e_t. In that case, it changes the heuristic - Mutt-ng uses to thread messages by subject. With _$_s_o_r_t___r_e (section 7.4.295 , + (section 7.4.313 , page 163)'' _u_n_s_e_t. In that case, it changes the heuristic + Mutt-ng uses to thread messages by subject. With _$_s_o_r_t___r_e (section 7.4.296 , page 157) _s_e_t, Mutt-ng will only attach a message as the child of another mes- sage by subject if the subject of the child message starts with a substring - matching the setting of ``_$_r_e_p_l_y___r_e_g_e_x_p (section 7.4.231 , page 141)''. With - _$_s_o_r_t___r_e (section 7.4.295 , page 157) _u_n_s_e_t, Mutt-ng will attach the message + matching the setting of ``_$_r_e_p_l_y___r_e_g_e_x_p (section 7.4.232 , page 141)''. With + _$_s_o_r_t___r_e (section 7.4.296 , page 157) _u_n_s_e_t, Mutt-ng will attach the message whether or not this is the case, as long as the non-``_$_r_e_p_l_y___r_e_g_e_x_p (section - 7.4.231 , page 141)'' parts of both messages are identical. + 7.4.232 , page 141)'' parts of both messages are identical. - _7_._4_._2_9_6 _s_p_a_m___s_e_p_a_r_a_t_o_r + _7_._4_._2_9_7 _s_p_a_m___s_e_p_a_r_a_t_o_r Type: string Default: ',' - ``_s_p_a_m___s_e_p_a_r_a_t_o_r (section 7.4.296 , page 157)'' controls what happens when + ``_s_p_a_m___s_e_p_a_r_a_t_o_r (section 7.4.297 , page 157)'' controls what happens when multiple spam headers are matched: if _u_n_s_e_t, each successive header will over- write any previous matches value for the spam label. If _s_e_t, each successive - match will append to the previous, using ``_s_p_a_m___s_e_p_a_r_a_t_o_r (section 7.4.296 , + match will append to the previous, using ``_s_p_a_m___s_e_p_a_r_a_t_o_r (section 7.4.297 , page 157)'' as a separator. - _7_._4_._2_9_7 _s_p_o_o_l_f_i_l_e + The Mutt Next Generation E-Mail Client 158 + + _7_._4_._2_9_8 _s_p_o_o_l_f_i_l_e Type: path Default: '' If your spool mailbox is in a non-default place where Mutt-ng cannot find it, - - The Mutt Next Generation E-Mail Client 158 - you can specify its location with this variable. Mutt-ng will automatically set this variable to the value of the environment variable $MAIL if it is not set. - _7_._4_._2_9_8 _s_s_l___c_a___c_e_r_t_i_f_i_c_a_t_e_s___f_i_l_e + _7_._4_._2_9_9 _s_s_l___c_a___c_e_r_t_i_f_i_c_a_t_e_s___f_i_l_e Type: path @@ -8357,7 +8369,7 @@ Example: set ssl_ca_certificates_file=/etc/ssl/certs/ca-certificates.crt - _7_._4_._2_9_9 _s_s_l___c_l_i_e_n_t___c_e_r_t + _7_._4_._3_0_0 _s_s_l___c_l_i_e_n_t___c_e_r_t Type: path @@ -8367,7 +8379,7 @@ The file containing a client certificate and its associated private key. - _7_._4_._3_0_0 _s_s_l___f_o_r_c_e___t_l_s + _7_._4_._3_0_1 _s_s_l___f_o_r_c_e___t_l_s Type: boolean @@ -8377,9 +8389,9 @@ servers be encrypted. Furthermore it will attempt to negotiate TLS even if the server does not advertise the capability, since it would otherwise have to abort the connection anyway. This option supersedes ``_$_s_s_l___s_t_a_r_t_t_l_s (section - 7.4.302 , page 158)''. + 7.4.303 , page 158)''. - _7_._4_._3_0_1 _s_s_l___m_i_n___d_h___p_r_i_m_e___b_i_t_s + _7_._4_._3_0_2 _s_s_l___m_i_n___d_h___p_r_i_m_e___b_i_t_s Type: number @@ -8388,15 +8400,16 @@ Availability: GNUTLS This variable specifies the minimum acceptable prime size (in bits) for use in + + The Mutt Next Generation E-Mail Client 159 + any Diffie-Hellman key exchange. A value of 0 will use the default from the GNUTLS library. - _7_._4_._3_0_2 _s_s_l___s_t_a_r_t_t_l_s + _7_._4_._3_0_3 _s_s_l___s_t_a_r_t_t_l_s Type: quadoption - The Mutt Next Generation E-Mail Client 159 - Default: yes Availability: SSL or GNUTLS @@ -8405,7 +8418,7 @@ ing the capability. When _u_n_s_e_t, Mutt-ng will not attempt to use STARTTLS regardless of the server's capabilities. - _7_._4_._3_0_3 _s_s_l___u_s_e___s_s_l_v_2 + _7_._4_._3_0_4 _s_s_l___u_s_e___s_s_l_v_2 Type: boolean @@ -8416,7 +8429,7 @@ This variables specifies whether to attempt to use SSLv2 in the SSL authentica- tion process. - _7_._4_._3_0_4 _s_s_l___u_s_e___s_s_l_v_3 + _7_._4_._3_0_5 _s_s_l___u_s_e___s_s_l_v_3 Type: boolean @@ -8427,7 +8440,7 @@ This variables specifies whether to attempt to use SSLv3 in the SSL authentica- tion process. - _7_._4_._3_0_5 _s_s_l___u_s_e___t_l_s_v_1 + _7_._4_._3_0_6 _s_s_l___u_s_e___t_l_s_v_1 Type: boolean @@ -8438,27 +8451,27 @@ This variables specifies whether to attempt to use TLSv1 in the SSL authentica- tion process. - _7_._4_._3_0_6 _s_s_l___u_s_e_s_y_s_t_e_m_c_e_r_t_s + _7_._4_._3_0_7 _s_s_l___u_s_e_s_y_s_t_e_m_c_e_r_t_s Type: boolean Default: yes + The Mutt Next Generation E-Mail Client 160 + Availability: SSL If set to _y_e_s, Mutt-ng will use CA certificates in the system-wide certificate store when checking if server certificate is signed by a trusted CA. - _7_._4_._3_0_7 _s_t_a_t_u_s___c_h_a_r_s - - The Mutt Next Generation E-Mail Client 160 + _7_._4_._3_0_8 _s_t_a_t_u_s___c_h_a_r_s Type: string Default: '-*%A' Controls the characters used by the ``%r'' indicator in ``_$_s_t_a_t_u_s___f_o_r_m_a_t (sec- - tion 7.4.308 , page 160)''. The first character is used when the mailbox is + tion 7.4.309 , page 160)''. The first character is used when the mailbox is unchanged. The second is used when the mailbox has been changed, and it needs to be resynchronized. The third is used if the mailbox is in read-only mode, or if the mailbox will not be written when exiting that mailbox (You can toggle @@ -8467,7 +8480,7 @@ been opened in attach-message mode (Certain operations like composing a new mail, replying, forwarding, etc. are not permitted in this mode). - _7_._4_._3_0_8 _s_t_a_t_u_s___f_o_r_m_a_t + _7_._4_._3_0_9 _s_t_a_t_u_s___f_o_r_m_a_t Type: string @@ -8500,6 +8513,8 @@ %l size (in bytes) of the current mailbox * + The Mutt Next Generation E-Mail Client 161 + %L size (in bytes) of the messages shown (i.e., which match the cur- rent limit) * @@ -8507,8 +8522,6 @@ %m the number of messages in the mailbox * - The Mutt Next Generation E-Mail Client 161 - %M the number of messages shown (i.e., which match the current limit) * @@ -8527,13 +8540,13 @@ %r modified/read-only/won't-write/attach-message indicator, according - to _$_s_t_a_t_u_s___c_h_a_r_s (section 7.4.307 , page 159) + to _$_s_t_a_t_u_s___c_h_a_r_s (section 7.4.308 , page 159) %s - current sorting mode (_$_s_o_r_t (section 7.4.291 , page 155)) + current sorting mode (_$_s_o_r_t (section 7.4.292 , page 155)) %S - current aux sorting method (_$_s_o_r_t___a_u_x (section 7.4.293 , page + current aux sorting method (_$_s_o_r_t___a_u_x (section 7.4.294 , page 156)) %t @@ -8556,6 +8569,8 @@ * = can be optionally printed if nonzero + The Mutt Next Generation E-Mail Client 162 + Some of the above sequences can be used to optionally print a string if their value is nonzero. For example, you may only want to see the number of flagged messages if such messages exist, since zero is not particularly meaningful. To @@ -8564,8 +8579,6 @@ %??? - The Mutt Next Generation E-Mail Client 162 - where _s_e_q_u_e_n_c_e___c_h_a_r is a character from the table above, and _o_p_t_i_o_n_a_l___s_t_r_i_n_g is the string you would like printed if _s_e_q_u_e_n_c_e___c_h_a_r is nonzero. _o_p_t_i_o_n_a_l___s_t_r_i_n_g mmaayy contain other sequences as well as normal text, but you may nnoott nest @@ -8592,7 +8605,7 @@ replace any dots in the expansion by underscores. This might be helpful with IMAP folders that don't like dots in folder names. - _7_._4_._3_0_9 _s_t_a_t_u_s___o_n___t_o_p + _7_._4_._3_1_0 _s_t_a_t_u_s___o_n___t_o_p Type: boolean @@ -8601,7 +8614,7 @@ Setting this variable causes the ``status bar'' to be displayed on the first line of the screen rather than near the bottom. - _7_._4_._3_1_0 _s_t_r_i_c_t___m_a_i_l_t_o + _7_._4_._3_1_1 _s_t_r_i_c_t___m_a_i_l_t_o Type: boolean @@ -8612,16 +8625,17 @@ ``_$_e_d_i_t___h_e_a_d_e_r_s (section 7.4.54 , page 98)'' is unset. If this variable is _s_e_t, mutt-ng is strict and allows anything to be changed. + + The Mutt Next Generation E-Mail Client 163 + If it's _u_n_s_e_t, all headers given will be prefixed with ``X-Mailto-'' and the message including headers will be shown in the editor regardless of what ``_$_e_d_i_t___h_e_a_d_e_r_s (section 7.4.54 , page 98)'' is set to. - _7_._4_._3_1_1 _s_t_r_i_c_t___m_i_m_e + _7_._4_._3_1_2 _s_t_r_i_c_t___m_i_m_e Type: boolean - The Mutt Next Generation E-Mail Client 163 - Default: yes When _u_n_s_e_t, non MIME-compliant messages that doesn't have any charset indica- @@ -8633,41 +8647,43 @@ a single space to prevent the display of MIME-encoded ``Subject:'' header field from being devided into multiple lines. - _7_._4_._3_1_2 _s_t_r_i_c_t___t_h_r_e_a_d_s + _7_._4_._3_1_3 _s_t_r_i_c_t___t_h_r_e_a_d_s Type: boolean Default: no If _s_e_t, threading will only make use of the ``In-Reply-To:'' and ``Refer- - ences:'' header fields when you ``_$_s_o_r_t (section 7.4.291 , page 155)'' by mes- + ences:'' header fields when you ``_$_s_o_r_t (section 7.4.292 , page 155)'' by mes- sage threads. By default, messages with the same subject are grouped together in ``pseudo threads.'' This may not always be desirable, such as in a personal mailbox where you might have several unrelated messages with the subject ``hi'' which will get grouped together. - _7_._4_._3_1_3 _s_t_r_i_p___w_a_s + _7_._4_._3_1_4 _s_t_r_i_p___w_a_s Type: boolean Default: no When _s_e_t, mutt-ng will remove the trailing part of the ``Subject:'' line which - matches _$_s_t_r_i_p___w_a_s___r_e_g_e_x (section 7.4.314 , page 163) when replying. This is + matches _$_s_t_r_i_p___w_a_s___r_e_g_e_x (section 7.4.315 , page 163) when replying. This is useful to properly react on subject changes and reduce ``subject noise.'' (esp. in Usenet) - _7_._4_._3_1_4 _s_t_r_i_p___w_a_s___r_e_g_e_x + _7_._4_._3_1_5 _s_t_r_i_p___w_a_s___r_e_g_e_x Type: regular expression Default: '\([Ww][Aa][RrSs]: .*\)[ ]*$' - When non-empty and _$_s_t_r_i_p___w_a_s (section 7.4.313 , page 163) is _s_e_t, mutt-ng + When non-empty and _$_s_t_r_i_p___w_a_s (section 7.4.314 , page 163) is _s_e_t, mutt-ng will remove this trailing part of the ``Subject'' line when replying if it won't be empty afterwards. - _7_._4_._3_1_5 _s_t_u_f_f___q_u_o_t_e_d + The Mutt Next Generation E-Mail Client 164 + + _7_._4_._3_1_6 _s_t_u_f_f___q_u_o_t_e_d Type: boolean @@ -8676,9 +8692,7 @@ If _s_e_t, attachments with flowed format will have their quoting ``stuffed'', i.e. a space will be inserted between the quote characters and the actual text. - The Mutt Next Generation E-Mail Client 164 - - _7_._4_._3_1_6 _s_u_s_p_e_n_d + _7_._4_._3_1_7 _s_u_s_p_e_n_d Type: boolean @@ -8688,7 +8702,7 @@ usually CTRL+Z. This is useful if you run Mutt-ng inside an xterm using a com- mand like ``xterm -e muttng.'' - _7_._4_._3_1_7 _t_e_x_t___f_l_o_w_e_d + _7_._4_._3_1_8 _t_e_x_t___f_l_o_w_e_d Type: boolean @@ -8702,7 +8716,7 @@ Note that _$_i_n_d_e_n_t___s_t_r_i_n_g (section 7.4.109 , page 111) is ignored when this option is set. - _7_._4_._3_1_8 _t_h_o_r_o_u_g_h___s_e_a_r_c_h + _7_._4_._3_1_9 _t_h_o_r_o_u_g_h___s_e_a_r_c_h Type: boolean @@ -8713,7 +8727,7 @@ to be searched are decoded before searching. If _u_n_s_e_t, messages are searched as they appear in the folder. - _7_._4_._3_1_9 _t_h_r_e_a_d___r_e_c_e_i_v_e_d + _7_._4_._3_2_0 _t_h_r_e_a_d___r_e_c_e_i_v_e_d Type: boolean @@ -8722,7 +8736,9 @@ When _s_e_t, Mutt-ng uses the date received rather than the date sent to thread messages by subject. - _7_._4_._3_2_0 _t_i_l_d_e + The Mutt Next Generation E-Mail Client 165 + + _7_._4_._3_2_1 _t_i_l_d_e Type: boolean @@ -8731,9 +8747,7 @@ When _s_e_t, the internal-pager will pad blank lines to the bottom of the screen with a tilde (~). - The Mutt Next Generation E-Mail Client 165 - - _7_._4_._3_2_1 _t_i_m_e_o_u_t + _7_._4_._3_2_2 _t_i_m_e_o_u_t Type: number @@ -8743,7 +8757,7 @@ 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. - _7_._4_._3_2_2 _t_m_p_d_i_r + _7_._4_._3_2_3 _t_m_p_d_i_r Type: path @@ -8754,7 +8768,7 @@ set, the environment variable $TMPDIR is used. If $TMPDIR is not set then '/tmp' is used. - _7_._4_._3_2_3 _t_o___c_h_a_r_s + _7_._4_._3_2_4 _t_o___c_h_a_r_s Type: string @@ -8770,7 +8784,7 @@ indicate mail that was sent by _y_o_u. The sixth character is used to indicate when a mail was sent to a mailing-list you're subscribe to (default: L). - _7_._4_._3_2_4 _t_r_a_s_h + _7_._4_._3_2_5 _t_r_a_s_h Type: path @@ -8779,17 +8793,17 @@ If _s_e_t, this variable specifies the path of the trash folder where the mails marked for deletion will be moved, instead of being irremediably purged. + The Mutt Next Generation E-Mail Client 166 + NNoottee: When you delete a message in the trash folder, it is really deleted, so that there is no way to recover mail. - _7_._4_._3_2_5 _t_u_n_n_e_l + _7_._4_._3_2_6 _t_u_n_n_e_l Type: string Default: '' - The Mutt Next Generation E-Mail Client 166 - Setting this variable will cause Mutt-ng to open a pipe to a command instead of a raw socket. You may be able to use this to set up preauthenticated connec- tions to your IMAP/POP3 server. Example: @@ -8799,7 +8813,7 @@ NNoottee:: For this example to work you must be able to log in to the remote machine without having to enter a password. - _7_._4_._3_2_6 _u_m_a_s_k + _7_._4_._3_2_7 _u_m_a_s_k Type: number @@ -8808,7 +8822,7 @@ This sets the umask that will be used by Mutt-ng when creating all kinds of files. If _u_n_s_e_t, the default value is 077. - _7_._4_._3_2_7 _u_n_c_o_l_l_a_p_s_e___j_u_m_p + _7_._4_._3_2_8 _u_n_c_o_l_l_a_p_s_e___j_u_m_p Type: boolean @@ -8817,7 +8831,7 @@ When _s_e_t, Mutt-ng will jump to the next unread message, if any, when the cur- rent thread is _u_ncollapsed. - _7_._4_._3_2_8 _u_s_e___8_b_i_t_m_i_m_e + _7_._4_._3_2_9 _u_s_e___8_b_i_t_m_i_m_e Type: boolean @@ -8828,23 +8842,23 @@ with the SMTP support via libESMTP. Otherwise you may not be able to send mail. - When _s_e_t, Mutt-ng will either invoke ``_$_s_e_n_d_m_a_i_l (section 7.4.247 , page + When _s_e_t, Mutt-ng will either invoke ``_$_s_e_n_d_m_a_i_l (section 7.4.248 , page 145)'' with the -B8BITMIME flag when sending 8-bit messages to enable ESMTP negotiation or tell libESMTP to do so. - _7_._4_._3_2_9 _u_s_e___d_o_m_a_i_n + _7_._4_._3_3_0 _u_s_e___d_o_m_a_i_n Type: boolean + The Mutt Next Generation E-Mail Client 167 + Default: yes When _s_e_t, Mutt-ng will qualify all local addresses (ones without the @host por- tion) with the value of ``_$_h_o_s_t_n_a_m_e (section 7.4.89 , page 106)''. If _u_n_s_e_t, no addresses will be qualified. - _7_._4_._3_3_0 _u_s_e___f_r_o_m - - The Mutt Next Generation E-Mail Client 167 + _7_._4_._3_3_1 _u_s_e___f_r_o_m Type: boolean @@ -8854,7 +8868,7 @@ sages. If _u_n_s_e_t, no ``From:'' header field will be generated unless the user explicitly sets one using the ``_m_y___h_d_r (section 3.15 , page 34)'' command. - _7_._4_._3_3_1 _u_s_e___i_d_n + _7_._4_._3_3_2 _u_s_e___i_d_n Type: boolean @@ -8867,7 +8881,7 @@ NNoottee:: You can use IDNs for addresses even if this is _u_n_s_e_t. This variable only affects decoding. - _7_._4_._3_3_2 _u_s_e___i_p_v_6 + _7_._4_._3_3_3 _u_s_e___i_p_v_6 Type: boolean @@ -8877,7 +8891,7 @@ If this option is _u_n_s_e_t, Mutt-ng will restrict itself to IPv4 addresses. Nor- mally, the default should work. - _7_._4_._3_3_3 _u_s_e_r___a_g_e_n_t + _7_._4_._3_3_4 _u_s_e_r___a_g_e_n_t Type: boolean @@ -8886,23 +8900,23 @@ When _s_e_t, Mutt-ng will add a ``User-Agent:'' header to outgoing messages, indi- cating which version of Mutt-ng was used for composing them. - _7_._4_._3_3_4 _v_i_s_u_a_l + _7_._4_._3_3_5 _v_i_s_u_a_l Type: path Default: '' + The Mutt Next Generation E-Mail Client 168 + Specifies the visual editor to invoke when the _~_v command is given in the builtin editor. - _7_._4_._3_3_5 _w_a_i_t___k_e_y + _7_._4_._3_3_6 _w_a_i_t___k_e_y Type: boolean Default: yes - The Mutt Next Generation E-Mail Client 168 - Controls whether Mutt-ng will ask you to press a key after _s_h_e_l_l_- _e_s_c_a_p_e, _p_i_p_e_- _m_e_s_s_a_g_e, _p_i_p_e_-_e_n_t_r_y, _p_r_i_n_t_-_m_e_s_s_a_g_e, and _p_r_i_n_t_-_e_n_t_r_y commands. @@ -8913,7 +8927,7 @@ When _s_e_t, Mutt-ng will always ask for a key. When _u_n_s_e_t, Mutt-ng will wait for a key only if the external command returned a non-zero status. - _7_._4_._3_3_6 _w_e_e_d + _7_._4_._3_3_7 _w_e_e_d Type: boolean @@ -8922,7 +8936,7 @@ When _s_e_t, Mutt-ng will weed headers when displaying, forwarding, printing, or replying to messages. - _7_._4_._3_3_7 _w_r_a_p___s_e_a_r_c_h + _7_._4_._3_3_8 _w_r_a_p___s_e_a_r_c_h Type: boolean @@ -8933,7 +8947,7 @@ When _s_e_t, searches will wrap around the first (or last) message. When _u_n_s_e_t, searches will not wrap. - _7_._4_._3_3_8 _w_r_a_p_m_a_r_g_i_n + _7_._4_._3_3_9 _w_r_a_p_m_a_r_g_i_n Type: number @@ -8942,46 +8956,46 @@ Controls the size of the margin remaining at the right side of the terminal when Mutt-ng's pager does smart wrapping. - _7_._4_._3_3_9 _w_r_i_t_e___b_c_c + _7_._4_._3_4_0 _w_r_i_t_e___b_c_c Type: boolean Default: yes + The Mutt Next Generation E-Mail Client 169 + Controls whether Mutt-ng writes out the Bcc header when preparing messages to be sent. Exim users may wish to _u_n_s_e_t this. - _7_._4_._3_4_0 _w_r_i_t_e___i_n_c + _7_._4_._3_4_1 _w_r_i_t_e___i_n_c Type: number Default: 10 - The Mutt Next Generation E-Mail Client 169 - When writing a mailbox, a message will be printed every _w_r_i_t_e___i_n_c messages to indicate progress. If set to 0, only a single message will be displayed before writing a mailbox. - Also see the ``_$_r_e_a_d___i_n_c (section 7.4.226 , page 140)'' variable. + Also see the ``_$_r_e_a_d___i_n_c (section 7.4.227 , page 140)'' variable. - _7_._4_._3_4_1 _x_t_e_r_m___i_c_o_n + _7_._4_._3_4_2 _x_t_e_r_m___i_c_o_n Type: string Default: 'M%?n?AIL&ail?' Controls the format of the X11 icon title, as long as _$_x_t_e_r_m___s_e_t___t_i_t_l_e_s (sec- - tion 7.4.343 , page 169) is _s_e_t. This string is identical in formatting to the - one used by ``_$_s_t_a_t_u_s___f_o_r_m_a_t (section 7.4.308 , page 160)''. + tion 7.4.344 , page 169) is _s_e_t. This string is identical in formatting to the + one used by ``_$_s_t_a_t_u_s___f_o_r_m_a_t (section 7.4.309 , page 160)''. - _7_._4_._3_4_2 _x_t_e_r_m___l_e_a_v_e + _7_._4_._3_4_3 _x_t_e_r_m___l_e_a_v_e Type: string Default: '' - If _$_x_t_e_r_m___s_e_t___t_i_t_l_e_s (section 7.4.343 , page 169) is _s_e_t, this string will be + If _$_x_t_e_r_m___s_e_t___t_i_t_l_e_s (section 7.4.344 , page 169) is _s_e_t, this string will be used to set the title when leaving mutt-ng. For terminal-based programs, there's no easy and portable way to read the current title so mutt-ng cannot read it upon startup and restore it when exiting. @@ -8991,7 +9005,7 @@ set xterm_leave = '`test x$DISPLAY != x && xprop -id $WINDOWID | grep WM_NAME | cut -d ''' -f 2`' - _7_._4_._3_4_3 _x_t_e_r_m___s_e_t___t_i_t_l_e_s + _7_._4_._3_4_4 _x_t_e_r_m___s_e_t___t_i_t_l_e_s Type: boolean @@ -9001,19 +9015,19 @@ you're in an appropriate terminal). The default must be _u_n_s_e_t to force in the validity checking. - _7_._4_._3_4_4 _x_t_e_r_m___t_i_t_l_e + _7_._4_._3_4_5 _x_t_e_r_m___t_i_t_l_e Type: string + The Mutt Next Generation E-Mail Client 170 + Default: 'Mutt-ng with %?m?%m messages&no messages?%?n? [%n New]?' Controls the format of the title bar of the xterm provided that - _$_x_t_e_r_m___s_e_t___t_i_t_l_e_s (section 7.4.343 , page 169) has been _s_e_t. This string is - identical in formatting to the one used by ``_$_s_t_a_t_u_s___f_o_r_m_a_t (section 7.4.308 , + _$_x_t_e_r_m___s_e_t___t_i_t_l_e_s (section 7.4.344 , page 169) has been _s_e_t. This string is + identical in formatting to the one used by ``_$_s_t_a_t_u_s___f_o_r_m_a_t (section 7.4.309 , page 160)''. - The Mutt Next Generation E-Mail Client 170 - _7_._5 _F_u_n_c_t_i_o_n_s The following is the list of available functions listed by the mapping in which @@ -9060,9 +9074,11 @@ top-page H move to the top of the page what-key not bound display the keycode for a key press + The Mutt Next Generation E-Mail Client 171 + _7_._5_._2 _i_n_d_e_x - The Mutt Next Generation E-Mail Client 171 + The Mutt Next Generation E-Mail Client 172 bounce-message b remail a message to another user change-folder c open a different folder @@ -9119,7 +9135,7 @@ show-version V show the Mutt-ng version number and date show-limit ESC l show currently active limit pattern, if any - The Mutt Next Generation E-Mail Client 172 + The Mutt Next Generation E-Mail Client 173 sort-mailbox o sort messages sort-reverse O sort messages in reverse order @@ -9137,7 +9153,7 @@ _7_._5_._3 _p_a_g_e_r - The Mutt Next Generation E-Mail Client 173 + The Mutt Next Generation E-Mail Client 174 bottom not bound jump to the bottom of the message bounce-message b remail a message to another user @@ -9194,7 +9210,7 @@ recall-message R recall a postponed message redraw-screen ^L clear and redraw the screen - The Mutt Next Generation E-Mail Client 174 + The Mutt Next Generation E-Mail Client 175 reply r reply to a message save-message s save message/attachment to a file @@ -9234,7 +9250,7 @@ _7_._5_._6 _a_t_t_a_c_h - The Mutt Next Generation E-Mail Client 175 + The Mutt Next Generation E-Mail Client 176 bounce-message b remail a message to another user collapse-parts v toggle display of subparts @@ -9257,7 +9273,7 @@ _7_._5_._7 _c_o_m_p_o_s_e - The Mutt Next Generation E-Mail Client 176 + The Mutt Next Generation E-Mail Client 177 attach-file a attach a file(s) to this message attach-message A attach message(s) to this message @@ -9300,7 +9316,7 @@ _7_._5_._9 _b_r_o_w_s_e_r - The Mutt Next Generation E-Mail Client 177 + The Mutt Next Generation E-Mail Client 178 change-dir c change directories check-new TAB check mailboxes for new mail @@ -9349,7 +9365,7 @@ _8_. _M_i_s_c_e_l_l_a_n_y - The Mutt Next Generation E-Mail Client 178 + The Mutt Next Generation E-Mail Client 179 _8_._1 _A_c_k_n_o_w_l_e_d_g_m_e_n_t_s @@ -9406,7 +9422,7 @@ Felix von Leitner (a.k.a ``Fefe'') , - The Mutt Next Generation E-Mail Client 179 + The Mutt Next Generation E-Mail Client 180 Brandon Long , @@ -9462,14 +9478,14 @@ Elimar Riesebieter - The Mutt Next Generation E-Mail Client 180 + The Mutt Next Generation E-Mail Client 181 _8_._2 _A_b_o_u_t _t_h_i_s _d_o_c_u_m_e_n_t This document was written in SGML, and then rendered using the sgml-tools pack- age. - The Mutt Next Generation E-Mail Client 181 + The Mutt Next Generation E-Mail Client 182 CONTENTS @@ -9755,256 +9771,257 @@ 7.4.120 mark_old 115 7.4.121 markers 116 7.4.122 mask 116 - 7.4.123 max_line_length 116 - 7.4.124 mbox 116 - 7.4.125 mbox_type 116 - 7.4.126 menu_context 116 - 7.4.127 menu_move_off 117 - 7.4.128 menu_scroll 117 - 7.4.129 message_format 117 - 7.4.130 meta_key 117 - 7.4.131 metoo 117 - 7.4.132 mh_purge 118 - 7.4.133 mh_seq_flagged 118 - 7.4.134 mh_seq_replied 118 - 7.4.135 mh_seq_unseen 118 - 7.4.136 mime_forward 118 - 7.4.137 mime_forward_decode 119 - 7.4.138 mime_forward_rest 119 - 7.4.139 mix_entry_format 119 - 7.4.140 mixmaster 119 - 7.4.141 move 120 - 7.4.142 msgid_format 120 - 7.4.143 narrow_tree 121 - 7.4.144 nntp_ask_followup_to 121 - 7.4.145 nntp_ask_x_comment_to 121 - 7.4.146 nntp_cache_dir 121 - 7.4.147 nntp_catchup 122 - 7.4.148 nntp_context 122 - 7.4.149 nntp_followup_to_poster 122 - 7.4.150 nntp_group_index_format 122 - 7.4.151 nntp_host 123 - 7.4.152 nntp_inews 123 - 7.4.153 nntp_load_description 123 - 7.4.154 nntp_mail_check 124 - 7.4.155 nntp_mime_subject 124 - 7.4.156 nntp_newsrc 124 - 7.4.157 nntp_pass 124 - 7.4.158 nntp_post_moderated 125 - 7.4.159 nntp_reconnect 125 - 7.4.160 nntp_save_unsubscribed 125 - 7.4.161 nntp_show_new_news 125 - 7.4.162 nntp_show_only_unread 126 - 7.4.163 nntp_user 126 - 7.4.164 nntp_x_comment_to 126 - 7.4.165 operating_system 126 - 7.4.166 pager 126 - 7.4.167 pager_context 127 - 7.4.168 pager_format 127 - 7.4.169 pager_index_lines 127 + 7.4.123 max_display_recips 116 + 7.4.124 max_line_length 116 + 7.4.125 mbox 116 + 7.4.126 mbox_type 116 + 7.4.127 menu_context 117 + 7.4.128 menu_move_off 117 + 7.4.129 menu_scroll 117 + 7.4.130 message_format 117 + 7.4.131 meta_key 117 + 7.4.132 metoo 118 + 7.4.133 mh_purge 118 + 7.4.134 mh_seq_flagged 118 + 7.4.135 mh_seq_replied 118 + 7.4.136 mh_seq_unseen 118 + 7.4.137 mime_forward 118 + 7.4.138 mime_forward_decode 119 + 7.4.139 mime_forward_rest 119 + 7.4.140 mix_entry_format 119 + 7.4.141 mixmaster 120 + 7.4.142 move 120 + 7.4.143 msgid_format 120 + 7.4.144 narrow_tree 121 + 7.4.145 nntp_ask_followup_to 121 + 7.4.146 nntp_ask_x_comment_to 121 + 7.4.147 nntp_cache_dir 122 + 7.4.148 nntp_catchup 122 + 7.4.149 nntp_context 122 + 7.4.150 nntp_followup_to_poster 122 + 7.4.151 nntp_group_index_format 123 + 7.4.152 nntp_host 123 + 7.4.153 nntp_inews 123 + 7.4.154 nntp_load_description 124 + 7.4.155 nntp_mail_check 124 + 7.4.156 nntp_mime_subject 124 + 7.4.157 nntp_newsrc 124 + 7.4.158 nntp_pass 125 + 7.4.159 nntp_post_moderated 125 + 7.4.160 nntp_reconnect 125 + 7.4.161 nntp_save_unsubscribed 125 + 7.4.162 nntp_show_new_news 126 + 7.4.163 nntp_show_only_unread 126 + 7.4.164 nntp_user 126 + 7.4.165 nntp_x_comment_to 126 + 7.4.166 operating_system 126 + 7.4.167 pager 127 + 7.4.168 pager_context 127 + 7.4.169 pager_format 127 vi - 7.4.170 pager_stop 127 - 7.4.171 pgp_auto_decode 128 - 7.4.172 pgp_autoinline 128 - 7.4.173 pgp_check_exit 128 - 7.4.174 pgp_clearsign_command 128 - 7.4.175 pgp_decode_command 129 - 7.4.176 pgp_decrypt_command 129 - 7.4.177 pgp_encrypt_only_command 129 - 7.4.178 pgp_encrypt_sign_command 129 - 7.4.179 pgp_entry_format 130 - 7.4.180 pgp_export_command 130 - 7.4.181 pgp_getkeys_command 130 - 7.4.182 pgp_good_sign 131 - 7.4.183 pgp_ignore_subkeys 131 - 7.4.184 pgp_import_command 131 - 7.4.185 pgp_list_pubring_command 131 - 7.4.186 pgp_list_secring_command 131 - 7.4.187 pgp_long_ids 132 - 7.4.188 pgp_mime_auto 132 - 7.4.189 pgp_replyinline 132 - 7.4.190 pgp_retainable_sigs 132 - 7.4.191 pgp_show_unusable 133 - 7.4.192 pgp_sign_as 133 - 7.4.193 pgp_sign_command 133 - 7.4.194 pgp_sort_keys 133 - 7.4.195 pgp_strict_enc 134 - 7.4.196 pgp_timeout 134 - 7.4.197 pgp_use_gpg_agent 134 - 7.4.198 pgp_verify_command 134 - 7.4.199 pgp_verify_key_command 134 - 7.4.200 pipe_decode 134 - 7.4.201 pipe_sep 135 - 7.4.202 pipe_split 135 - 7.4.203 pop_auth_try_all 135 - 7.4.204 pop_authenticators 135 - 7.4.205 pop_delete 136 - 7.4.206 pop_host 136 - 7.4.207 pop_last 136 - 7.4.208 pop_mail_check 136 - 7.4.209 pop_pass 137 - 7.4.210 pop_reconnect 137 - 7.4.211 pop_user 137 - 7.4.212 post_indent_string 137 - 7.4.213 postpone 137 - 7.4.214 postponed 138 - 7.4.215 preconnect 138 - 7.4.216 print 138 - 7.4.217 print_command 138 - 7.4.218 print_decode 138 - 7.4.219 print_split 139 - 7.4.220 prompt_after 139 - 7.4.221 query_command 139 - 7.4.222 quit 139 + 7.4.170 pager_index_lines 127 + 7.4.171 pager_stop 128 + 7.4.172 pgp_auto_decode 128 + 7.4.173 pgp_autoinline 128 + 7.4.174 pgp_check_exit 128 + 7.4.175 pgp_clearsign_command 129 + 7.4.176 pgp_decode_command 129 + 7.4.177 pgp_decrypt_command 129 + 7.4.178 pgp_encrypt_only_command 130 + 7.4.179 pgp_encrypt_sign_command 130 + 7.4.180 pgp_entry_format 130 + 7.4.181 pgp_export_command 131 + 7.4.182 pgp_getkeys_command 131 + 7.4.183 pgp_good_sign 131 + 7.4.184 pgp_ignore_subkeys 131 + 7.4.185 pgp_import_command 131 + 7.4.186 pgp_list_pubring_command 131 + 7.4.187 pgp_list_secring_command 132 + 7.4.188 pgp_long_ids 132 + 7.4.189 pgp_mime_auto 132 + 7.4.190 pgp_replyinline 132 + 7.4.191 pgp_retainable_sigs 133 + 7.4.192 pgp_show_unusable 133 + 7.4.193 pgp_sign_as 133 + 7.4.194 pgp_sign_command 133 + 7.4.195 pgp_sort_keys 133 + 7.4.196 pgp_strict_enc 134 + 7.4.197 pgp_timeout 134 + 7.4.198 pgp_use_gpg_agent 134 + 7.4.199 pgp_verify_command 134 + 7.4.200 pgp_verify_key_command 135 + 7.4.201 pipe_decode 135 + 7.4.202 pipe_sep 135 + 7.4.203 pipe_split 135 + 7.4.204 pop_auth_try_all 135 + 7.4.205 pop_authenticators 136 + 7.4.206 pop_delete 136 + 7.4.207 pop_host 136 + 7.4.208 pop_last 136 + 7.4.209 pop_mail_check 137 + 7.4.210 pop_pass 137 + 7.4.211 pop_reconnect 137 + 7.4.212 pop_user 137 + 7.4.213 post_indent_string 137 + 7.4.214 postpone 138 + 7.4.215 postponed 138 + 7.4.216 preconnect 138 + 7.4.217 print 138 + 7.4.218 print_command 139 + 7.4.219 print_decode 139 + 7.4.220 print_split 139 + 7.4.221 prompt_after 139 + 7.4.222 query_command 139 vii - 7.4.223 quote_empty 140 - 7.4.224 quote_quoted 140 - 7.4.225 quote_regexp 140 - 7.4.226 read_inc 140 - 7.4.227 read_only 140 - 7.4.228 realname 141 - 7.4.229 recall 141 - 7.4.230 record 141 - 7.4.231 reply_regexp 141 - 7.4.232 reply_self 142 - 7.4.233 reply_to 142 - 7.4.234 resolve 142 - 7.4.235 reverse_alias 142 - 7.4.236 reverse_name 143 - 7.4.237 reverse_realname 143 - 7.4.238 rfc2047_parameters 143 - 7.4.239 save_address 143 - 7.4.240 save_empty 144 - 7.4.241 save_name 144 - 7.4.242 score 144 - 7.4.243 score_threshold_delete 144 - 7.4.244 score_threshold_flag 145 - 7.4.245 score_threshold_read 145 - 7.4.246 send_charset 145 - 7.4.247 sendmail 145 - 7.4.248 sendmail_wait 145 - 7.4.249 shell 146 - 7.4.250 sidebar_boundary 146 - 7.4.251 sidebar_delim 146 - 7.4.252 sidebar_newmail_only 146 - 7.4.253 sidebar_number_format 146 - 7.4.254 sidebar_shorten_hierarchy 147 - 7.4.255 sidebar_visible 147 - 7.4.256 sidebar_width 148 - 7.4.257 sig_dashes 148 - 7.4.258 sig_on_top 148 - 7.4.259 signature 148 - 7.4.260 signoff_string 148 - 7.4.261 simple_search 149 - 7.4.262 sleep_time 149 - 7.4.263 smart_wrap 149 - 7.4.264 smileys 149 - 7.4.265 smime_ask_cert_label 149 - 7.4.266 smime_ca_location 150 - 7.4.267 smime_certificates 150 - 7.4.268 smime_decrypt_command 150 - 7.4.269 smime_decrypt_use_default_key 151 - 7.4.270 smime_default_key 151 - 7.4.271 smime_encrypt_command 151 - 7.4.272 smime_encrypt_with 151 - 7.4.273 smime_get_cert_command 152 - 7.4.274 smime_get_cert_email_command 152 - 7.4.275 smime_get_signer_cert_command 152 + 7.4.223 quit 140 + 7.4.224 quote_empty 140 + 7.4.225 quote_quoted 140 + 7.4.226 quote_regexp 140 + 7.4.227 read_inc 140 + 7.4.228 read_only 141 + 7.4.229 realname 141 + 7.4.230 recall 141 + 7.4.231 record 141 + 7.4.232 reply_regexp 142 + 7.4.233 reply_self 142 + 7.4.234 reply_to 142 + 7.4.235 resolve 142 + 7.4.236 reverse_alias 142 + 7.4.237 reverse_name 143 + 7.4.238 reverse_realname 143 + 7.4.239 rfc2047_parameters 143 + 7.4.240 save_address 144 + 7.4.241 save_empty 144 + 7.4.242 save_name 144 + 7.4.243 score 144 + 7.4.244 score_threshold_delete 145 + 7.4.245 score_threshold_flag 145 + 7.4.246 score_threshold_read 145 + 7.4.247 send_charset 145 + 7.4.248 sendmail 145 + 7.4.249 sendmail_wait 146 + 7.4.250 shell 146 + 7.4.251 sidebar_boundary 146 + 7.4.252 sidebar_delim 146 + 7.4.253 sidebar_newmail_only 147 + 7.4.254 sidebar_number_format 147 + 7.4.255 sidebar_shorten_hierarchy 147 + 7.4.256 sidebar_visible 148 + 7.4.257 sidebar_width 148 + 7.4.258 sig_dashes 148 + 7.4.259 sig_on_top 148 + 7.4.260 signature 148 + 7.4.261 signoff_string 149 + 7.4.262 simple_search 149 + 7.4.263 sleep_time 149 + 7.4.264 smart_wrap 149 + 7.4.265 smileys 150 + 7.4.266 smime_ask_cert_label 150 + 7.4.267 smime_ca_location 150 + 7.4.268 smime_certificates 150 + 7.4.269 smime_decrypt_command 150 + 7.4.270 smime_decrypt_use_default_key 151 + 7.4.271 smime_default_key 151 + 7.4.272 smime_encrypt_command 151 + 7.4.273 smime_encrypt_with 152 + 7.4.274 smime_get_cert_command 152 + 7.4.275 smime_get_cert_email_command 152 viii - 7.4.276 smime_import_cert_command 152 - 7.4.277 smime_is_default 152 - 7.4.278 smime_keys 152 - 7.4.279 smime_pk7out_command 153 - 7.4.280 smime_sign_command 153 - 7.4.281 smime_sign_opaque_command 153 - 7.4.282 smime_timeout 153 - 7.4.283 smime_verify_command 153 - 7.4.284 smime_verify_opaque_command 154 - 7.4.285 smtp_envelope 154 - 7.4.286 smtp_host 154 - 7.4.287 smtp_pass 154 - 7.4.288 smtp_port 155 - 7.4.289 smtp_use_tls 155 - 7.4.290 smtp_user 155 - 7.4.291 sort 155 - 7.4.292 sort_alias 156 - 7.4.293 sort_aux 156 - 7.4.294 sort_browser 157 - 7.4.295 sort_re 157 - 7.4.296 spam_separator 157 - 7.4.297 spoolfile 157 - 7.4.298 ssl_ca_certificates_file 158 - 7.4.299 ssl_client_cert 158 - 7.4.300 ssl_force_tls 158 - 7.4.301 ssl_min_dh_prime_bits 158 - 7.4.302 ssl_starttls 158 - 7.4.303 ssl_use_sslv2 159 - 7.4.304 ssl_use_sslv3 159 - 7.4.305 ssl_use_tlsv1 159 - 7.4.306 ssl_usesystemcerts 159 - 7.4.307 status_chars 159 - 7.4.308 status_format 160 - 7.4.309 status_on_top 162 - 7.4.310 strict_mailto 162 - 7.4.311 strict_mime 162 - 7.4.312 strict_threads 163 - 7.4.313 strip_was 163 - 7.4.314 strip_was_regex 163 - 7.4.315 stuff_quoted 163 - 7.4.316 suspend 164 - 7.4.317 text_flowed 164 - 7.4.318 thorough_search 164 - 7.4.319 thread_received 164 - 7.4.320 tilde 164 - 7.4.321 timeout 165 - 7.4.322 tmpdir 165 - 7.4.323 to_chars 165 - 7.4.324 trash 165 - 7.4.325 tunnel 165 - 7.4.326 umask 166 - 7.4.327 uncollapse_jump 166 - 7.4.328 use_8bitmime 166 + 7.4.276 smime_get_signer_cert_command 152 + 7.4.277 smime_import_cert_command 152 + 7.4.278 smime_is_default 152 + 7.4.279 smime_keys 153 + 7.4.280 smime_pk7out_command 153 + 7.4.281 smime_sign_command 153 + 7.4.282 smime_sign_opaque_command 153 + 7.4.283 smime_timeout 154 + 7.4.284 smime_verify_command 154 + 7.4.285 smime_verify_opaque_command 154 + 7.4.286 smtp_envelope 154 + 7.4.287 smtp_host 154 + 7.4.288 smtp_pass 155 + 7.4.289 smtp_port 155 + 7.4.290 smtp_use_tls 155 + 7.4.291 smtp_user 155 + 7.4.292 sort 156 + 7.4.293 sort_alias 156 + 7.4.294 sort_aux 156 + 7.4.295 sort_browser 157 + 7.4.296 sort_re 157 + 7.4.297 spam_separator 157 + 7.4.298 spoolfile 158 + 7.4.299 ssl_ca_certificates_file 158 + 7.4.300 ssl_client_cert 158 + 7.4.301 ssl_force_tls 158 + 7.4.302 ssl_min_dh_prime_bits 158 + 7.4.303 ssl_starttls 159 + 7.4.304 ssl_use_sslv2 159 + 7.4.305 ssl_use_sslv3 159 + 7.4.306 ssl_use_tlsv1 159 + 7.4.307 ssl_usesystemcerts 159 + 7.4.308 status_chars 160 + 7.4.309 status_format 160 + 7.4.310 status_on_top 162 + 7.4.311 strict_mailto 162 + 7.4.312 strict_mime 163 + 7.4.313 strict_threads 163 + 7.4.314 strip_was 163 + 7.4.315 strip_was_regex 163 + 7.4.316 stuff_quoted 164 + 7.4.317 suspend 164 + 7.4.318 text_flowed 164 + 7.4.319 thorough_search 164 + 7.4.320 thread_received 164 + 7.4.321 tilde 165 + 7.4.322 timeout 165 + 7.4.323 tmpdir 165 + 7.4.324 to_chars 165 + 7.4.325 trash 165 + 7.4.326 tunnel 166 + 7.4.327 umask 166 + 7.4.328 uncollapse_jump 166 ix - 7.4.329 use_domain 166 - 7.4.330 use_from 166 - 7.4.331 use_idn 167 - 7.4.332 use_ipv6 167 - 7.4.333 user_agent 167 - 7.4.334 visual 167 - 7.4.335 wait_key 167 - 7.4.336 weed 168 - 7.4.337 wrap_search 168 - 7.4.338 wrapmargin 168 - 7.4.339 write_bcc 168 - 7.4.340 write_inc 168 - 7.4.341 xterm_icon 169 - 7.4.342 xterm_leave 169 - 7.4.343 xterm_set_titles 169 - 7.4.344 xterm_title 169 + 7.4.329 use_8bitmime 166 + 7.4.330 use_domain 166 + 7.4.331 use_from 167 + 7.4.332 use_idn 167 + 7.4.333 use_ipv6 167 + 7.4.334 user_agent 167 + 7.4.335 visual 167 + 7.4.336 wait_key 168 + 7.4.337 weed 168 + 7.4.338 wrap_search 168 + 7.4.339 wrapmargin 168 + 7.4.340 write_bcc 168 + 7.4.341 write_inc 169 + 7.4.342 xterm_icon 169 + 7.4.343 xterm_leave 169 + 7.4.344 xterm_set_titles 169 + 7.4.345 xterm_title 169 7.5 Functions ....................................................... 170 7.5.1 generic 170 - 7.5.2 index 170 - 7.5.3 pager 172 - 7.5.4 alias 174 - 7.5.5 query 174 - 7.5.6 attach 174 - 7.5.7 compose 175 - 7.5.8 postpone 176 - 7.5.9 browser 176 - 7.5.10 pgp 177 - 7.5.11 editor 177 - - 8. Miscellany ............................................................ 177 - 8.1 Acknowledgments ................................................. 178 - 8.2 About this document ............................................. 180 + 7.5.2 index 171 + 7.5.3 pager 173 + 7.5.4 alias 175 + 7.5.5 query 175 + 7.5.6 attach 175 + 7.5.7 compose 176 + 7.5.8 postpone 177 + 7.5.9 browser 177 + 7.5.10 pgp 178 + 7.5.11 editor 178 + + 8. Miscellany ............................................................ 178 + 8.1 Acknowledgments ................................................. 179 + 8.2 About this document ............................................. 181 x diff --git a/globals.h b/globals.h index 6c079be..f6894b3 100644 --- a/globals.h +++ b/globals.h @@ -229,6 +229,7 @@ WHERE short Timeout; WHERE short Umask INITVAL (0077); WHERE short WrapMargin; WHERE short WriteInc; +WHERE short MaxDispRecips; WHERE short MaxLineLength; WHERE short ScoreThresholdDelete; diff --git a/init.h b/init.h index 3e53b34..1e13e52 100644 --- a/init.h +++ b/init.h @@ -1235,7 +1235,15 @@ struct option_t MuttVars[] = { ** from (instead to the author only). Setting this option to ``\fIask-yes\fP'' or ** ``\fIask-no\fP'' will ask if you really intended to reply to the author only. */ - {"max_line_length", DT_NUM, R_NONE, UL &MaxLineLength, 0}, + {"max_display_recips", DT_NUM, R_PAGER, UL &MaxDispRecips, 0}, + /* + ** .pp + ** When set non-zero, this specifies the maximum number of recipient header + ** lines (\fTTo:\fP, \fTCc:\fP and \fTBcc:\fP) to display in the pager if header + ** weeding is turned on. In case the number of lines exeeds its value, the + ** last line will have 3 dots appended. + */ + {"max_line_length", DT_NUM, R_PAGER, UL &MaxLineLength, 0}, /* ** .pp ** When \fIset\fP, the maximum line length for displaying ``format = flowed'' messages is limited