Nico Golde:
[apps/madmutt.git] / init.h
1 /*
2  * Copyright (C) 1996-2002 Michael R. Elkins <me@mutt.org>
3  * Copyright (C) 2004 g10 Code GmbH
4  * 
5  *     This program is free software; you can redistribute it and/or modify
6  *     it under the terms of the GNU General Public License as published by
7  *     the Free Software Foundation; either version 2 of the License, or
8  *     (at your option) any later version.
9  * 
10  *     This program is distributed in the hope that it will be useful,
11  *     but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  *     GNU General Public License for more details.
14  * 
15  *     You should have received a copy of the GNU General Public License
16  *     along with this program; if not, write to the Free Software
17  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
18  */ 
19
20 #ifdef _MAKEDOC
21 # include "config.h"
22 #else
23 # include "sort.h"
24 #endif
25
26 #include "buffy.h"
27
28 #ifndef _MAKEDOC
29 #define DT_MASK         0x0f
30 #define DT_BOOL         1 /* boolean option */
31 #define DT_NUM          2 /* a number */
32 #define DT_STR          3 /* a string */
33 #define DT_PATH         4 /* a pathname */
34 #define DT_QUAD         5 /* quad-option (yes/no/ask-yes/ask-no) */
35 #define DT_SORT         6 /* sorting methods */
36 #define DT_RX           7 /* regular expressions */
37 #define DT_MAGIC        8 /* mailbox type */
38 #define DT_SYN          9 /* synonym for another variable */
39 #define DT_ADDR        10 /* e-mail address */
40
41 #define DTYPE(x) ((x) & DT_MASK)
42
43 /* subtypes */
44 #define DT_SUBTYPE_MASK 0xf0
45 #define DT_SORT_ALIAS   0x10
46 #define DT_SORT_BROWSER 0x20
47 #define DT_SORT_KEYS    0x40
48 #define DT_SORT_AUX     0x80
49
50 /* flags to parse_set() */
51 #define M_SET_INV       (1<<0)  /* default is to invert all vars */
52 #define M_SET_UNSET     (1<<1)  /* default is to unset all vars */
53 #define M_SET_RESET     (1<<2)  /* default is to reset all vars to default */
54
55 /* forced redraw/resort types */
56 #define R_NONE          0
57 #define R_INDEX         (1<<0)
58 #define R_PAGER         (1<<1)
59 #define R_RESORT        (1<<2)  /* resort the mailbox */
60 #define R_RESORT_SUB    (1<<3)  /* resort subthreads */
61 #define R_RESORT_INIT   (1<<4)  /* resort from scratch */
62 #define R_TREE          (1<<5)  /* redraw the thread tree */
63 #define R_BOTH          (R_INDEX | R_PAGER)
64 #define R_RESORT_BOTH   (R_RESORT | R_RESORT_SUB)
65
66 struct option_t
67 {
68   char *option;
69   short type;
70   short flags;
71   unsigned long data;
72   unsigned long init; /* initial value */
73 };
74
75 struct feature_t
76 {
77   char* name;
78   short builtin;
79 };
80
81 #define UL (unsigned long)
82
83 #endif /* _MAKEDOC */
84
85 #ifndef ISPELL
86 #define ISPELL "ispell"
87 #endif
88
89 /* build complete documentation */
90
91 #ifdef _MAKEDOC
92 # ifndef USE_IMAP
93 #  define USE_IMAP
94 # endif
95 # ifndef MIXMASTER
96 #  define MIXMASTER "mixmaster"
97 # endif
98 # ifndef USE_POP
99 #  define USE_POP
100 # endif
101 # ifndef USE_SSL
102 #  define USE_SSL
103 # endif
104 # ifndef USE_SOCKET
105 #  define USE_SOCKET
106 # endif
107 # ifndef USE_LIBESMTP
108 #  define USE_LIBESMTP
109 # endif
110 # ifndef USE_NNTP
111 #  define USE_NNTP
112 # endif
113 # ifndef USE_GNUTLS
114 #  define USE_GNUTLS
115 # endif
116 #endif
117
118 struct option_t MuttVars[] = {
119   /*++*/
120   { "abort_nosubject",  DT_QUAD, R_NONE, OPT_SUBJECT, M_ASKYES },
121   /*
122   ** .pp
123   ** If set to \fIyes\fP, when composing messages and no subject is given
124   ** at the subject prompt, composition will be aborted.  If set to
125   ** \fIno\fP, composing messages with no subject given at the subject
126   ** prompt will never be aborted.
127   */
128   { "abort_unmodified", DT_QUAD, R_NONE, OPT_ABORT, M_YES },
129   /*
130   ** .pp
131   ** If set to \fIyes\fP, composition will automatically abort after
132   ** editing the message body if no changes are made to the file (this
133   ** check only happens after the \fIfirst\fP edit of the file).  When set
134   ** to \fIno\fP, composition will never be aborted.
135   */
136   { "alias_file",       DT_PATH, R_NONE, UL &AliasFile, UL "~/.muttngrc" },
137   /*
138   ** .pp
139   ** The default file in which to save aliases created by the 
140   ** ``$create-alias'' function.
141   ** .pp
142   ** \fBNote:\fP Mutt-ng will not automatically source this file; you must
143   ** explicitly use the ``$source'' command for it to be executed.
144   */
145   { "alias_format",     DT_STR,  R_NONE, UL &AliasFmt, UL "%4n %2f %t %-10a   %r" },
146   /*
147   ** .pp
148   ** Specifies the format of the data displayed for the `alias' menu.  The
149   ** following printf(3)-style sequences are available:
150   ** .pp
151   ** .dl
152   ** .dt %a .dd alias name
153   ** .dt %f .dd flags - currently, a "d" for an alias marked for deletion
154   ** .dt %n .dd index number
155   ** .dt %r .dd address which alias expands to
156   ** .dt %t .dd character which indicates if the alias is tagged for inclusion
157   ** .de
158   */
159   { "allow_8bit",       DT_BOOL, R_NONE, OPTALLOW8BIT, 1 },
160   /*
161   ** .pp
162   ** Controls whether 8-bit data is converted to 7-bit using either Quoted-
163   ** Printable or Base64 encoding when sending mail.
164   */
165   { "allow_ansi",      DT_BOOL, R_NONE, OPTALLOWANSI, 0 },
166   /*
167   ** .pp
168   ** Controls whether ANSI color codes in messages (and color tags in 
169   ** rich text messages) are to be interpreted.
170   ** Messages containing these codes are rare, but if this option is set,
171   ** their text will be colored accordingly. Note that this may override
172   ** your color choices, and even present a security problem, since a
173   ** message could include a line like "[-- PGP output follows ..." and
174   ** give it the same color as your attachment color.
175   */
176   { "arrow_cursor",     DT_BOOL, R_BOTH, OPTARROWCURSOR, 0 },
177   /*
178   ** .pp
179   ** When set, an arrow (``->'') will be used to indicate the current entry
180   ** in menus instead of highlighting the whole line.  On slow network or modem
181   ** links this will make response faster because there is less that has to
182   ** be redrawn on the screen when moving to the next or previous entries
183   ** in the menu.
184   */
185   { "ascii_chars",      DT_BOOL, R_BOTH, OPTASCIICHARS, 0 },
186   /*
187   ** .pp
188   ** If set, Mutt-ng will use plain ASCII characters when displaying thread
189   ** and attachment trees, instead of the default \fIACS\fP characters.
190   */
191   { "askbcc",           DT_BOOL, R_NONE, OPTASKBCC, 0 },
192   /*
193   ** .pp
194   ** If set, Mutt-ng will prompt you for blind-carbon-copy (Bcc) recipients
195   ** before editing an outgoing message.
196   */
197   { "askcc",            DT_BOOL, R_NONE, OPTASKCC, 0 },
198   /*
199   ** .pp
200   ** If set, Mutt-ng will prompt you for carbon-copy (Cc) recipients before
201   ** editing the body of an outgoing message.
202   */  
203   { "assumed_charset", DT_STR, R_NONE, UL &AssumedCharset, UL "us-ascii"},
204   /*
205   ** .pp
206   ** This variable is a colon-separated list of character encoding
207   ** schemes for messages without character encoding indication.
208   ** Header field values and message body content without character encoding
209   ** indication would be assumed that they are written in one of this list.
210   ** By default, all the header fields and message body without any charset
211   ** indication are assumed to be in "us-ascii".
212   ** .pp
213   ** For example, Japanese users might prefer this:
214   ** .pp
215   **   set assumed_charset="iso-2022-jp:euc-jp:shift_jis:utf-8"
216   ** .pp
217   ** However, only the first content is valid for the message body.
218   ** This variable is valid only if $$strict_mime is unset.
219   */
220 #ifdef USE_NNTP
221   { "ask_follow_up",    DT_BOOL, R_NONE, OPTASKFOLLOWUP, 0 },
222   /*
223   ** .pp
224   ** Availability: NNTP
225   **
226   ** .pp
227   ** If set, Mutt-ng will prompt you for follow-up groups before editing
228   ** the body of an outgoing message.
229   */  
230   { "ask_x_comment_to", DT_BOOL, R_NONE, OPTASKXCOMMENTTO, 0 },
231   /*
232   ** .pp
233   ** Availability: NNTP
234   **
235   ** .pp
236   ** If set, Mutt-ng will prompt you for x-comment-to field before editing
237   ** the body of an outgoing message.
238   */  
239 #endif
240   { "attach_format",    DT_STR,  R_NONE, UL &AttachFormat, UL "%u%D%I %t%4n %T%.40d%> [%.7m/%.10M, %.6e%?C?, %C?, %s] " },
241   /*
242   ** .pp
243   ** This variable describes the format of the `attachment' menu.  The
244   ** following printf-style sequences are understood:
245   ** .pp
246   ** .dl
247   ** .dt %C  .dd charset
248   ** .dt %c  .dd requires charset conversion (n or c)
249   ** .dt %D  .dd deleted flag
250   ** .dt %d  .dd description
251   ** .dt %e  .dd MIME content-transfer-encoding
252   ** .dt %f  .dd filename
253   ** .dt %I  .dd disposition (I=inline, A=attachment)
254   ** .dt %m  .dd major MIME type
255   ** .dt %M  .dd MIME subtype
256   ** .dt %n  .dd attachment number
257   ** .dt %s  .dd size
258   ** .dt %t  .dd tagged flag
259   ** .dt %T  .dd graphic tree characters
260   ** .dt %u  .dd unlink (=to delete) flag
261   ** .dt %>X .dd right justify the rest of the string and pad with character "X"
262   ** .dt %|X .dd pad to the end of the line with character "X"
263   ** .de
264   */
265   { "attach_sep",       DT_STR,  R_NONE, UL &AttachSep, UL "\n" },
266   /*
267   ** .pp
268   ** The separator to add between attachments when operating (saving,
269   ** printing, piping, etc) on a list of tagged attachments.
270   */
271   { "attach_split",     DT_BOOL, R_NONE, OPTATTACHSPLIT, 1 },
272   /*
273   ** .pp
274   ** If this variable is unset, when operating (saving, printing, piping,
275   ** etc) on a list of tagged attachments, Mutt-ng will concatenate the
276   ** attachments and will operate on them as a single attachment. The
277   ** ``$$attach_sep'' separator is added after each attachment. When set,
278   ** Mutt-ng will operate on the attachments one by one.
279   */
280   { "attribution",      DT_STR,  R_NONE, UL &Attribution, UL "On %d, %n wrote:" },
281   /*
282   ** .pp
283   ** This is the string that will precede a message which has been included
284   ** in a reply.  For a full listing of defined printf()-like sequences see
285   ** the section on ``$$index_format''.
286   */
287   { "autoedit",         DT_BOOL, R_NONE, OPTAUTOEDIT, 0 },
288   /*
289   ** .pp
290   ** When set along with ``$$edit_headers'', Mutt-ng will skip the initial
291   ** send-menu and allow you to immediately begin editing the body of your
292   ** message.  The send-menu may still be accessed once you have finished
293   ** editing the body of your message.
294   ** .pp
295   ** Also see ``$$fast_reply''.
296   */
297   { "auto_tag",         DT_BOOL, R_NONE, OPTAUTOTAG, 0 },
298   /*
299   ** .pp
300   ** When set, functions in the \fIindex\fP menu which affect a message
301   ** will be applied to all tagged messages (if there are any).  When
302   ** unset, you must first use the tag-prefix function (default: ";") to
303   ** make the next function apply to all tagged messages.
304   */
305   { "beep",             DT_BOOL, R_NONE, OPTBEEP, 1 },
306   /*
307   ** .pp
308   ** When this variable is set, Mutt-ng will beep when an error occurs.
309   */
310   { "beep_new",         DT_BOOL, R_NONE, OPTBEEPNEW, 0 },
311   /*
312   ** .pp
313   ** When this variable is set, Mutt-ng will beep whenever it prints a message
314   ** notifying you of new mail.  This is independent of the setting of the
315   ** ``$$beep'' variable.
316   */
317   { "bounce",   DT_QUAD, R_NONE, OPT_BOUNCE, M_ASKYES },
318   /*
319   ** .pp
320   ** Controls whether you will be asked to confirm bouncing messages.
321   ** If set to \fIyes\fP you don't get asked if you want to bounce a
322   ** message. Setting this variable to \fIno\fP is not generally useful,
323   ** and thus not recommended, because you are unable to bounce messages.
324   */
325   { "bounce_delivered", DT_BOOL, R_NONE, OPTBOUNCEDELIVERED, 1 },
326   /*
327   ** .pp
328   ** When this variable is set, Mutt-ng will include Delivered-To headers when
329   ** bouncing messages.  Postfix users may wish to unset this variable.
330   */
331 #ifdef USE_NNTP
332   { "catchup_newsgroup", DT_QUAD, R_NONE, OPT_CATCHUP, M_ASKYES },
333   /*
334   ** .pp
335   ** Availability: NNTP
336   **
337   ** .pp
338   ** If this variable is \fIset\fP, Mutt-ng will mark all articles in newsgroup
339   ** as read when you quit the newsgroup (catchup newsgroup).
340   */
341 #endif
342   { "charset",          DT_STR,  R_NONE, UL &Charset, UL 0 },
343   /*
344   ** .pp
345   ** Character set your terminal uses to display and enter textual data.
346   */
347   { "check_new",        DT_BOOL, R_NONE, OPTCHECKNEW, 1 },
348   /*
349   ** .pp
350   ** \fBNote:\fP this option only affects \fImaildir\fP and \fIMH\fP style
351   ** mailboxes.
352   ** .pp
353   ** When \fIset\fP, Mutt-ng will check for new mail delivered while the
354   ** mailbox is open.  Especially with MH mailboxes, this operation can
355   ** take quite some time since it involves scanning the directory and
356   ** checking each file to see if it has already been looked at.  If
357   ** \fIcheck_new\fP is \fIunset\fP, no check for new mail is performed
358   ** while the mailbox is open.
359   */
360   { "collapse_unread",  DT_BOOL, R_NONE, OPTCOLLAPSEUNREAD, 1 },
361   /*
362   ** .pp
363   ** When \fIunset\fP, Mutt-ng will not collapse a thread if it contains any
364   ** unread messages.
365   */
366   { "uncollapse_jump",  DT_BOOL, R_NONE, OPTUNCOLLAPSEJUMP, 0 },
367   /*
368   ** .pp
369   ** When \fIset\fP, Mutt-ng will jump to the next unread message, if any,
370   ** when the current thread is \fIun\fPcollapsed.
371   */
372   { "compose_format",   DT_STR,  R_BOTH, UL &ComposeFormat, UL "-- Mutt-ng: Compose  [Approx. msg size: %l   Atts: %a]%>-" },
373   /*
374   ** .pp
375   ** Controls the format of the status line displayed in the \fICompose\fP
376   ** menu.  This string is similar to ``$$status_format'', but has its own
377   ** set of printf()-like sequences:
378   ** .pp
379   ** .dl
380   ** .dt %a .dd total number of attachments 
381   ** .dt %h .dd local hostname
382   ** .dt %l .dd approximate size (in bytes) of the current message
383   ** .dt %v .dd Mutt-ng version string
384   ** .de
385   ** .pp
386   ** See the text describing the ``$$status_format'' option for more 
387   ** information on how to set ``$$compose_format''.
388   */
389   { "config_charset",   DT_STR,  R_NONE, UL &ConfigCharset, UL 0 },
390   /*
391   ** .pp
392   ** When defined, Mutt-ng will recode commands in rc files from this
393   ** encoding.
394   */
395   { "confirmappend",    DT_BOOL, R_NONE, OPTCONFIRMAPPEND, 1 },
396   /*
397   ** .pp
398   ** When set, Mutt-ng will prompt for confirmation when appending messages to
399   ** an existing mailbox.
400   */
401   { "confirmcreate",    DT_BOOL, R_NONE, OPTCONFIRMCREATE, 1 },
402   /*
403   ** .pp
404   ** When set, Mutt-ng will prompt for confirmation when saving messages to a
405   ** mailbox which does not yet exist before creating it.
406   */
407   { "connect_timeout",  DT_NUM, R_NONE, UL &ConnectTimeout, 30 },
408   /*
409   ** .pp
410   ** Causes Mutt-ng to timeout a network connection (for IMAP or POP) after this
411   ** many seconds if the connection is not able to be established.  A negative
412   ** value causes Mutt-ng to wait indefinitely for the connection to succeed.
413   */
414   { "content_type",     DT_STR, R_NONE, UL &ContentType, UL "text/plain" },
415   /*
416   ** .pp
417   ** Sets the default Content-Type for the body of newly composed messages.
418   */
419   { "copy",             DT_QUAD, R_NONE, OPT_COPY, M_YES },
420   /*
421   ** .pp
422   ** This variable controls whether or not copies of your outgoing messages
423   ** will be saved for later references.  Also see ``$$record'',
424   ** ``$$save_name'', ``$$force_name'' and ``$fcc-hook''.
425   */
426   
427   { "crypt_use_gpgme",  DT_BOOL, R_NONE, OPTCRYPTUSEGPGME, 0 },
428   /*
429   ** .pp
430   ** This variable controls the use the GPGME enabled crypto backends.
431   ** If it is set and Mutt-ng was build with gpgme support, the gpgme code for
432   ** S/MIME and PGP will be used instead of the classic code.  Note, that
433   ** you need to use this option in .muttrc as it won't have any effect when 
434   ** used interactively.
435   */
436   
437   { "crypt_autopgp",    DT_BOOL, R_NONE, OPTCRYPTAUTOPGP, 1 },
438   /*
439   ** .pp
440   ** This variable controls whether or not Mutt-ng may automatically enable
441   ** PGP encryption/signing for messages.  See also ``$$crypt_autoencrypt'',
442   ** ``$$crypt_replyencrypt'',
443   ** ``$$crypt_autosign'', ``$$crypt_replysign'' and ``$$smime_is_default''.
444   */
445   { "crypt_autosmime",  DT_BOOL, R_NONE, OPTCRYPTAUTOSMIME, 1 },
446   /*
447   ** .pp
448   ** This variable controls whether or not Mutt-ng may automatically enable
449   ** S/MIME encryption/signing for messages. See also ``$$crypt_autoencrypt'',
450   ** ``$$crypt_replyencrypt'',
451   ** ``$$crypt_autosign'', ``$$crypt_replysign'' and ``$$smime_is_default''.
452   */
453   { "date_format",      DT_STR,  R_BOTH, UL &DateFmt, UL "!%a, %b %d, %Y at %I:%M:%S%p %Z" },
454   /*
455   ** .pp
456   ** This variable controls the format of the date printed by the ``%d''
457   ** sequence in ``$$index_format''.  This is passed to the \fIstrftime\fP
458   ** call to process the date. See the man page for \fIstrftime(3)\fP for
459   ** the proper syntax.
460   ** .pp
461   ** Unless the first character in the string is a bang (``!''), the month
462   ** and week day names are expanded according to the locale specified in
463   ** the variable ``$$locale''. If the first character in the string is a
464   ** bang, the bang is discarded, and the month and week day names in the
465   ** rest of the string are expanded in the \fIC\fP locale (that is in US
466   ** English).
467   */  
468   { "default_hook",     DT_STR,  R_NONE, UL &DefaultHook, UL "~f %s !~P | (~P ~C %s)" },
469   /*
470   ** .pp
471   ** This variable controls how send-hooks, message-hooks, save-hooks,
472   ** and fcc-hooks will
473   ** be interpreted if they are specified with only a simple regexp,
474   ** instead of a matching pattern.  The hooks are expanded when they are
475   ** declared, so a hook will be interpreted according to the value of this
476   ** variable at the time the hook is declared.  The default value matches
477   ** if the message is either from a user matching the regular expression
478   ** given, or if it is from you (if the from address matches
479   ** ``alternates'') and is to or cc'ed to a user matching the given
480   ** regular expression.
481   */
482   { "delete",           DT_QUAD, R_NONE, OPT_DELETE, M_ASKYES },
483   /*
484   ** .pp
485   ** Controls whether or not messages are really deleted when closing or
486   ** synchronizing a mailbox.  If set to \fIyes\fP, messages marked for
487   ** deleting will automatically be purged without prompting.  If set to
488   ** \fIno\fP, messages marked for deletion will be kept in the mailbox.
489   */
490   { "delete_untag",     DT_BOOL, R_NONE, OPTDELETEUNTAG, 1 },
491   /*
492   ** .pp
493   ** If this option is \fIset\fP, Mutt-ng will untag messages when marking them
494   ** for deletion.  This applies when you either explicitly delete a message,
495   ** or when you save it to another folder.
496   */
497   { "digest_collapse",  DT_BOOL, R_NONE, OPTDIGESTCOLLAPSE, 1},
498   /*
499   ** .pp
500   ** If this option is \fIset\fP, Mutt-ng's received-attachments menu will not show the subparts of
501   ** individual messages in a multipart/digest.  To see these subparts, press 'v' on that menu.
502   */
503   { "display_filter",   DT_PATH, R_PAGER, UL &DisplayFilter, UL "" },
504   /*
505   ** .pp
506   ** When set, specifies a command used to filter messages.  When a message
507   ** is viewed it is passed as standard input to $$display_filter, and the
508   ** filtered message is read from the standard output.
509   */
510 #if defined(DL_STANDALONE) && defined(USE_DOTLOCK)
511   { "dotlock_program",  DT_PATH, R_NONE, UL &MuttDotlock, UL BINDIR "/muttng_dotlock" },
512   /*
513   ** .pp
514   ** Availability: Standalone and Dotlock
515   **
516   ** .pp
517   ** Contains the path of the muttng_dotlock (1) binary to be used by
518   ** Mutt-ng.
519   */
520 #endif
521   { "dsn_notify",       DT_STR,  R_NONE, UL &DsnNotify, UL "" },
522   /*
523   ** .pp
524   ** \fBNote:\fP you should not enable this unless you are using Sendmail
525   ** 8.8.x or greater.
526   ** .pp
527   ** This variable sets the request for when notification is returned.  The
528   ** string consists of a comma separated list (no spaces!) of one or more
529   ** of the following: \fInever\fP, to never request notification,
530   ** \fIfailure\fP, to request notification on transmission failure,
531   ** \fIdelay\fP, to be notified of message delays, \fIsuccess\fP, to be
532   ** notified of successful transmission.
533   ** .pp
534   ** Example: set dsn_notify="failure,delay"
535   */
536   { "dsn_return",       DT_STR,  R_NONE, UL &DsnReturn, UL "" },
537   /*
538   ** .pp
539   ** \fBNote:\fP you should not enable this unless you are using Sendmail
540   ** 8.8.x or greater.
541   ** .pp
542   ** This variable controls how much of your message is returned in DSN
543   ** messages.  It may be set to either \fIhdrs\fP to return just the
544   ** message header, or \fIfull\fP to return the full message.
545   ** .pp
546   ** Example: set dsn_return=hdrs
547   */
548   { "duplicate_threads",        DT_BOOL, R_RESORT|R_RESORT_INIT|R_INDEX, OPTDUPTHREADS, 1 },
549   /*
550   ** .pp
551   ** This variable controls whether Mutt-ng, when sorting by threads, threads
552   ** messages with the same message-id together.  If it is set, it will indicate
553   ** that it thinks they are duplicates of each other with an equals sign
554   ** in the thread diagram.
555   */
556   { "edit_headers",     DT_BOOL, R_NONE, OPTEDITHDRS, 0 },
557   /*
558   ** .pp
559   ** This option allows you to edit the header of your outgoing messages
560   ** along with the body of your message.
561   */
562   { "edit_hdrs",        DT_SYN,  R_NONE, UL "edit_headers", 0 },
563   /*
564   */  
565   { "editor",           DT_PATH, R_NONE, UL &Editor, 0 },
566   /*
567   ** .pp
568   ** This variable specifies which editor is used by Mutt-ng.
569   ** It defaults to the value of the VISUAL, or EDITOR, environment
570   ** variable, or to the string "vi" if neither of those are set.
571   */
572   { "encode_from",      DT_BOOL, R_NONE, OPTENCODEFROM, 0 },
573   /*
574   ** .pp
575   ** When \fIset\fP, Mutt-ng will quoted-printable encode messages when
576   ** they contain the string "From " in the beginning of a line.
577   ** Useful to avoid the tampering certain mail delivery and transport
578   ** agents tend to do with messages.
579   */
580   { "envelope_from",    DT_BOOL, R_NONE, OPTENVFROM, 0 },
581   /*
582   ** .pp
583   ** When \fIset\fP, Mutt-ng will try to derive the message's \fIenvelope\fP
584   ** sender from the "From:" header.  Note that this information is passed 
585   ** to sendmail command using the "-f" command line switch, so don't set this
586   ** option if you are using that switch in $$sendmail yourself,
587   ** or if the sendmail on your machine doesn't support that command
588   ** line switch.
589   */
590   { "escape",           DT_STR,  R_NONE, UL &EscChar, UL "~" },
591   /*
592   ** .pp
593   ** Escape character to use for functions in the builtin editor.
594   */
595   { "fast_reply",       DT_BOOL, R_NONE, OPTFASTREPLY, 0 },
596   /*
597   ** .pp
598   ** When set, the initial prompt for recipients and subject are skipped
599   ** when replying to messages, and the initial prompt for subject is
600   ** skipped when forwarding messages.
601   ** .pp
602   ** \fBNote:\fP this variable has no effect when the ``$$autoedit''
603   ** variable is set.
604   */
605   { "fcc_attach",       DT_BOOL, R_NONE, OPTFCCATTACH, 1 },
606   /*
607   ** .pp
608   ** This variable controls whether or not attachments on outgoing messages
609   ** are saved along with the main body of your message.
610   */
611   { "fcc_clear",        DT_BOOL, R_NONE, OPTFCCCLEAR, 0 },
612   /*
613   ** .pp
614   ** When this variable is set, FCCs will be stored unencrypted and
615   ** unsigned, even when the actual message is encrypted and/or
616   ** signed.
617   ** (PGP only)
618   */
619   { "file_charset",    DT_STR,  R_NONE, UL &FileCharset, UL 0 },
620   /*
621   ** .pp
622   ** This variable is a colon-separated list of character encoding
623   ** schemes for text file attatchments.
624   ** If unset, $$charset value will be used instead.
625   ** For example, the following configuration would work for Japanese
626   ** text handling:
627   ** .pp
628   **   set file_charset="iso-2022-jp:euc-jp:shift_jis:utf-8"
629   ** .pp
630   ** Note: "iso-2022-*" must be put at the head of the value as shown above
631   ** if included.
632   */
633   { "folder",           DT_PATH, R_NONE, UL &Maildir, UL "~/Mail" },
634   /*
635   ** .pp
636   ** Specifies the default location of your mailboxes.  A `+' or `=' at the
637   ** beginning of a pathname will be expanded to the value of this
638   ** variable.  Note that if you change this variable from the default
639   ** value you need to make sure that the assignment occurs \fIbefore\fP
640   ** you use `+' or `=' for any other variables since expansion takes place
641   ** during the `set' command.
642   */
643   { "folder_format",    DT_STR,  R_INDEX, UL &FolderFormat, UL "%2C %t %N %F %2l %-8.8u %-8.8g %8s %d %f" },
644   /*
645   ** .pp
646   ** This variable allows you to customize the file browser display to your
647   ** personal taste.  This string is similar to ``$$index_format'', but has
648   ** its own set of printf()-like sequences:
649   ** .pp
650   ** .dl
651   ** .dt %C  .dd current file number
652   ** .dt %d  .dd date/time folder was last modified
653   ** .dt %f  .dd filename
654   ** .dt %F  .dd file permissions
655   ** .dt %g  .dd group name (or numeric gid, if missing)
656   ** .dt %l  .dd number of hard links
657   ** .dt %N  .dd N if folder has new mail, blank otherwise
658   ** .dt %s  .dd size in bytes
659   ** .dt %t  .dd * if the file is tagged, blank otherwise
660   ** .dt %u  .dd owner name (or numeric uid, if missing)
661   ** .dt %>X .dd right justify the rest of the string and pad with character "X"
662   ** .dt %|X .dd pad to the end of the line with character "X"
663   ** .de
664   */
665   { "followup_to",      DT_BOOL, R_NONE, OPTFOLLOWUPTO, 1 },
666   /*
667   ** .pp
668   ** Controls whether or not the \fIMail-Followup-To\fP header field is
669   ** generated when sending mail.  When \fIset\fP, Mutt-ng will generate this
670   ** field when you are replying to a known mailing list, specified with
671   ** the ``subscribe'' or ``$lists'' commands.
672   ** .pp
673   ** This field has two purposes.  First, preventing you from
674   ** receiving duplicate copies of replies to messages which you send
675   ** to mailing lists, and second, ensuring that you do get a reply
676   ** separately for any messages sent to known lists to which you are
677   ** not subscribed.  The header will contain only the list's address
678   ** for subscribed lists, and both the list address and your own
679   ** email address for unsubscribed lists.  Without this header, a
680   ** group reply to your message sent to a subscribed list will be
681   ** sent to both the list and your address, resulting in two copies
682   ** of the same email for you.
683   */
684 #ifdef USE_NNTP
685   { "followup_to_poster", DT_QUAD, R_NONE, OPT_FOLLOWUPTOPOSTER, M_ASKYES },
686   /*
687   ** .pp
688   ** Availability: NNTP
689   **
690   ** .pp
691   ** If this variable is \fIset\fP and the keyword "poster" is present in
692   ** \fIFollowup-To\fP header, follow-up to newsgroup function is not
693   ** permitted.  The message will be mailed to the submitter of the
694   ** message via mail.
695   */
696 #endif
697   { "force_name",       DT_BOOL, R_NONE, OPTFORCENAME, 0 },
698   /*
699   ** .pp
700   ** This variable is similar to ``$$save_name'', except that Mutt-ng will
701   ** store a copy of your outgoing message by the username of the address
702   ** you are sending to even if that mailbox does not exist.
703   ** .pp
704   ** Also see the ``$$record'' variable.
705   */
706   { "force_buffy_check", DT_BOOL, R_NONE, OPTFORCEBUFFYCHECK, 0 },
707   /*
708   ** .pp
709   ** When \fIset\fP, it causes Mutt-ng to check for new mail when the
710   ** \fIbuffy-list\fP command is invoked. When \fIunset\fP, \fIbuffy_list\fP
711   ** will just list all mailboxes which are already known to have new mail.
712   ** .pp
713   ** Also see the following variables: ``$$timeout'', ``$$mail_check'' and
714   ** ``$$imap_mail_check''.
715   */
716   { "forward_decode",   DT_BOOL, R_NONE, OPTFORWDECODE, 1 },
717   /*
718   ** .pp
719   ** Controls the decoding of complex MIME messages into text/plain when
720   ** forwarding a message.  The message header is also RFC2047 decoded.
721   ** This variable is only used, if ``$$mime_forward'' is \fIunset\fP,
722   ** otherwise ``$$mime_forward_decode'' is used instead.
723   */
724   { "forw_decode",      DT_SYN,  R_NONE, UL "forward_decode", 0 },
725   /*
726   */
727   { "forward_edit",     DT_QUAD, R_NONE, OPT_FORWEDIT, M_YES },
728   /*
729   ** .pp
730   ** This quadoption controls whether or not the user is automatically
731   ** placed in the editor when forwarding messages.  For those who always want
732   ** to forward with no modification, use a setting of ``no''.
733   */
734   { "forward_format",   DT_STR,  R_NONE, UL &ForwFmt, UL "[%a: %s]" },
735   /*
736   ** .pp
737   ** This variable controls the default subject when forwarding a message.
738   ** It uses the same format sequences as the ``$$index_format'' variable.
739   */
740   { "forw_format",      DT_SYN,  R_NONE, UL "forward_format", 0 },  
741   /*
742   */
743   { "forward_quote",    DT_BOOL, R_NONE, OPTFORWQUOTE, 0 },
744   /*
745   ** .pp
746   ** When \fIset\fP forwarded messages included in the main body of the
747   ** message (when ``$$mime_forward'' is \fIunset\fP) will be quoted using
748   ** ``$$indent_string''.
749   */
750   { "forw_quote",       DT_SYN,  R_NONE, UL "forward_quote", 0 },
751   /*
752   */
753   { "from",             DT_ADDR, R_NONE, UL &From, UL 0 },
754   /*
755   ** .pp
756   ** This variable contains a default from address.  It
757   ** can be overridden using my_hdr (including from send-hooks) and
758   ** ``$$reverse_name''.  This variable is ignored if ``$$use_from''
759   ** is unset.
760   ** E.g. you can use 
761   ** send-hook Mutt-ng-devel@lists.berlios.de 'my_hdr From: Foo Bar <foo@bar.fb>'
762   ** when replying to Mutt-ng-devel and Mutt-ng takes this email address.
763   ** .pp
764   ** Defaults to the contents of the environment variable EMAIL.
765   */
766   { "gecos_mask",       DT_RX,   R_NONE, UL &GecosMask, UL "^[^,]*" },
767   /*
768   ** .pp
769   ** A regular expression used by Mutt-ng to parse the GECOS field of a password
770   ** entry when expanding the alias.  By default the regular expression is set
771   ** to "^[^,]*" which will return the string up to the first "," encountered.
772   ** If the GECOS field contains a string like "lastname, firstname" then you
773   ** should set the gecos_mask=".*".
774   ** .pp
775   ** This can be useful if you see the following behavior: you address a e-mail
776   ** to user ID stevef whose full name is Steve Franklin.  If Mutt-ng expands 
777   ** stevef to "Franklin" stevef@foo.bar then you should set the gecos_mask to
778   ** a regular expression that will match the whole name so Mutt-ng will expand
779   ** "Franklin" to "Franklin, Steve".
780   */
781 #ifdef USE_NNTP
782   { "group_index_format", DT_STR, R_BOTH, UL &GroupFormat, UL "%4C %M%N %5s  %-45.45f %d" },
783   /*
784   ** .pp
785   ** Availability: NNTP
786   **
787   ** .pp
788   ** This variable allows you to customize the newsgroup browser display to
789   ** your personal taste.  This string is similar to ``$index_format'', but
790   ** has its own set of printf()-like sequences:
791   ** .pp
792   ** .ts
793   ** %C      current newsgroup number
794   ** %d      description of newsgroup (becomes from server)
795   ** %f      newsgroup name
796   ** %M      - if newsgroup not allowed for direct post (moderated for example)
797   ** %N      N if newsgroup is new, u if unsubscribed, blank otherwise
798   ** %n      number of new articles in newsgroup
799   ** %s      number of unread articles in newsgroup
800   ** %>X     right justify the rest of the string and pad with character "X"
801   ** %|X     pad to the end of the line with character "X"
802   ** .te
803   */
804 #endif
805   { "hdr_format",       DT_SYN,  R_NONE, UL "index_format", 0 },
806   /*
807   */
808   { "hdrs",             DT_BOOL, R_NONE, OPTHDRS, 1 },
809   /*
810   ** .pp
811   ** When unset, the header fields normally added by the ``$my_hdr''
812   ** command are not created.  This variable \fImust\fP be unset before
813   ** composing a new message or replying in order to take effect.  If set,
814   ** the user defined header fields are added to every new message.
815   */
816   { "header",           DT_BOOL, R_NONE, OPTHEADER, 0 },
817   /*
818   ** .pp
819   ** When set, this variable causes Mutt-ng to include the header
820   ** of the message you are replying to into the edit buffer.
821   ** The ``$$weed'' setting applies.
822   */  
823   { "help",             DT_BOOL, R_BOTH, OPTHELP, 1 },
824   /*
825   ** .pp
826   ** When set, help lines describing the bindings for the major functions
827   ** provided by each menu are displayed on the first line of the screen.
828   ** .pp
829   ** \fBNote:\fP The binding will not be displayed correctly if the
830   ** function is bound to a sequence rather than a single keystroke.  Also,
831   ** the help line may not be updated if a binding is changed while Mutt-ng is
832   ** running.  Since this variable is primarily aimed at new users, neither
833   ** of these should present a major problem.
834   */
835   { "hidden_host",      DT_BOOL, R_NONE, OPTHIDDENHOST, 0 },
836   /*
837   ** .pp
838   ** When set, Mutt-ng will skip the host name part of ``$$hostname'' variable
839   ** when adding the domain part to addresses.  This variable does not
840   ** affect the generation of Message-IDs, and it will not lead to the 
841   ** cut-off of first-level domains.
842   */
843   { "hide_limited",     DT_BOOL, R_TREE|R_INDEX, OPTHIDELIMITED, 0 },
844   /*
845   ** .pp
846   ** When set, Mutt-ng will not show the presence of messages that are hidden
847   ** by limiting, in the thread tree.
848   */
849   { "hide_missing",     DT_BOOL, R_TREE|R_INDEX, OPTHIDEMISSING, 1 },
850   /*
851   ** .pp
852   ** When set, Mutt-ng will not show the presence of missing messages in the
853   ** thread tree.
854   */
855   { "hide_thread_subject", DT_BOOL, R_TREE|R_INDEX, OPTHIDETHREADSUBJECT, 1 },
856   /*
857   ** .pp
858   ** When set, Mutt-ng will not show the subject of messages in the thread
859   ** tree that have the same subject as their parent or closest previously
860   ** displayed sibling.
861   */
862   { "hide_top_limited", DT_BOOL, R_TREE|R_INDEX, OPTHIDETOPLIMITED, 0 },
863   /*
864   ** .pp
865   ** When set, Mutt-ng will not show the presence of messages that are hidden
866   ** by limiting, at the top of threads in the thread tree.  Note that when
867   ** $$hide_missing is set, this option will have no effect.
868   */
869   { "hide_top_missing", DT_BOOL, R_TREE|R_INDEX, OPTHIDETOPMISSING, 1 },
870   /*
871   ** .pp
872   ** When set, Mutt-ng will not show the presence of missing messages at the
873   ** top of threads in the thread tree.  Note that when $$hide_limited is
874   ** set, this option will have no effect.
875   */
876   { "history",          DT_NUM,  R_NONE, UL &HistSize, 10 },
877   /*
878   ** .pp
879   ** This variable controls the size (in number of strings remembered) of
880   ** the string history buffer. The buffer is cleared each time the
881   ** variable is set.
882   */
883   { "honor_followup_to", DT_QUAD, R_NONE, OPT_MFUPTO, M_YES },
884   /*
885   ** .pp
886   ** This variable controls whether or not a Mail-Followup-To header is
887   ** honored when group-replying to a message.
888   */
889   { "hostname",         DT_STR,  R_NONE, UL &Fqdn, 0 },
890   /*
891   ** .pp
892   ** Specifies the hostname to use after the ``@'' in local e-mail
893   ** addresses.  This overrides the compile time definition obtained from
894   ** /etc/resolv.conf.
895   */
896   { "ignore_list_reply_to", DT_BOOL, R_NONE, OPTIGNORELISTREPLYTO, 0 },
897   /*
898   ** .pp
899   ** Affects the behaviour of the \fIreply\fP function when replying to
900   ** messages from mailing lists.  When set, if the ``Reply-To:'' field is
901   ** set to the same value as the ``To:'' field, Mutt-ng assumes that the
902   ** ``Reply-To:'' field was set by the mailing list to automate responses
903   ** to the list, and will ignore this field.  To direct a response to the
904   ** mailing list when this option is set, use the \fIlist-reply\fP
905   ** function; \fIgroup-reply\fP will reply to both the sender and the
906   ** list.
907   */
908 #ifdef USE_IMAP
909   { "imap_authenticators", DT_STR, R_NONE, UL &ImapAuthenticators, UL 0 },
910   /*
911   ** .pp
912   ** Availability: IMAP
913   **
914   ** .pp
915   ** This is a colon-delimited list of authentication methods Mutt-ng may
916   ** attempt to use to log in to an IMAP server, in the order Mutt-ng should
917   ** try them.  Authentication methods are either 'login' or the right
918   ** side of an IMAP 'AUTH=xxx' capability string, eg 'digest-md5', 'gssapi'
919   ** or 'cram-md5'. This parameter is case-insensitive. If this
920   ** parameter is unset (the default) Mutt-ng will try all available methods,
921   ** in order from most-secure to least-secure.
922   ** .pp
923   ** Example: set imap_authenticators="gssapi:cram-md5:login"
924   ** .pp
925   ** \fBNote:\fP Mutt-ng will only fall back to other authentication methods if
926   ** the previous methods are unavailable. If a method is available but
927   ** authentication fails, Mutt-ng will not connect to the IMAP server.
928   */
929   { "imap_delim_chars",         DT_STR, R_NONE, UL &ImapDelimChars, UL "/." },
930   /*
931   ** .pp
932   ** Availability: IMAP
933   **
934   ** .pp
935   ** This contains the list of characters which you would like to treat
936   ** as folder separators for displaying IMAP paths. In particular it
937   ** helps in using the '=' shortcut for your \fIfolder\fP variable.
938   */
939 # if defined(USE_SSL) || defined(USE_GNUTLS)
940   { "imap_force_ssl",           DT_BOOL, R_NONE, OPTIMAPFORCESSL, 0 },
941   /*
942   ** .pp
943   ** Availability: IMAP and SSL or IMAP and GNUTLS
944   **
945   ** .pp
946   ** If this variable is set, Mutt-ng will always use SSL when
947   ** connecting to IMAP servers.
948   */
949 # endif
950   { "imap_headers",     DT_STR, R_INDEX, UL &ImapHeaders, UL 0},
951   /*
952   ** .pp
953   ** Availability: IMAP
954   **
955   ** .pp
956   ** Mutt-ng requests these header fields in addition to the default headers
957   ** ("DATE FROM SUBJECT TO CC MESSAGE-ID REFERENCES CONTENT-TYPE
958   ** CONTENT-DESCRIPTION IN-REPLY-TO REPLY-TO LINES X-LABEL") from IMAP
959   ** servers before displaying the index menu. You may want to add more
960   ** headers for spam detection. \fBNote:\fP This is a space separated list.
961   */
962   { "imap_home_namespace",      DT_STR, R_NONE, UL &ImapHomeNamespace, UL 0},
963   /*
964   ** .pp
965   ** Availability: IMAP
966   **
967   ** .pp
968   ** You normally want to see your personal folders alongside
969   ** your INBOX in the IMAP browser. If you see something else, you may set
970   ** this variable to the IMAP path to your folders.
971   */
972   { "imap_keepalive",           DT_NUM,  R_NONE, UL &ImapKeepalive, 900 },
973   /*
974   ** .pp
975   ** Availability: IMAP
976   **
977   ** .pp
978   ** This variable specifies the maximum amount of time in seconds that Mutt-ng
979   ** will wait before polling open IMAP connections, to prevent the server
980   ** from closing them before Mutt-ng has finished with them. The default is
981   ** well within the RFC-specified minimum amount of time (30 minutes) before
982   ** a server is allowed to do this, but in practice the RFC does get
983   ** violated every now and then. Reduce this number if you find yourself
984   ** getting disconnected from your IMAP server due to inactivity.
985   */
986   { "imap_list_subscribed",     DT_BOOL, R_NONE, OPTIMAPLSUB, 0 },
987   /*
988   ** .pp
989   ** Availability: IMAP
990   **
991   ** .pp
992   ** This variable configures whether IMAP folder browsing will look for
993   ** only subscribed folders or all folders.  This can be toggled in the
994   ** IMAP browser with the \fItoggle-subscribed\fP function.
995   */
996   { "imap_mail_check",  DT_NUM,  R_NONE, UL &ImapBuffyTimeout, 5 },
997   /*
998   ** .pp
999   ** This variable configures how often (in seconds) Mutt-ng should look for
1000   ** new mail in IMAP folders. This is split from the ``$mail_check'' variable
1001   ** to generate less traffic and get more accurate information for local folders.
1002   ** .pp
1003   ** It defaults to the default value of ``$mail_check'' which is 5 seconds. But
1004   ** you may want to increase it.
1005   */
1006   { "imap_pass",        DT_STR,  R_NONE, UL &ImapPass, UL 0 },
1007   /*
1008   ** .pp
1009   ** Availability: IMAP
1010   **
1011   ** .pp
1012   ** Specifies the password for your IMAP account.  If unset, Mutt-ng will
1013   ** prompt you for your password when you invoke the fetch-mail function.
1014   ** \fBWarning\fP: you should only use this option when you are on a
1015   ** fairly secure machine, because the superuser can read your muttngrc even
1016   ** if you are the only one who can read the file.
1017   */
1018   { "imap_passive",             DT_BOOL, R_NONE, OPTIMAPPASSIVE, 1 },
1019   /*
1020   ** .pp
1021   ** Availability: IMAP
1022   **
1023   ** .pp
1024   ** When set, Mutt-ng will not open new IMAP connections to check for new
1025   ** mail.  Mutt-ng will only check for new mail over existing IMAP
1026   ** connections.  This is useful if you don't want to be prompted to
1027   ** user/password pairs on Mutt-ng invocation, or if opening the connection
1028   ** is slow.
1029   */
1030   { "imap_peek", DT_BOOL, R_NONE, OPTIMAPPEEK, 1 },
1031   /*
1032   ** .pp
1033   ** Availability: IMAP
1034   **
1035   ** .pp
1036   ** If set, Mutt-ng will avoid implicitly marking your mail as read whenever
1037   ** you fetch a message from the server. This is generally a good thing,
1038   ** but can make closing an IMAP folder somewhat slower. This option
1039   ** exists to appease speed freaks.
1040   */
1041   { "imap_reconnect",   DT_QUAD, R_NONE, OPT_IMAPRECONNECT, M_ASKYES },
1042   /*
1043   ** .pp
1044   ** Availability: IMAP
1045   **
1046   ** .pp
1047   ** Controls whether or not Mutt-ng will try to reconnect to IMAP server when
1048   ** the connection is lost.
1049   */
1050   { "imap_servernoise",         DT_BOOL, R_NONE, OPTIMAPSERVERNOISE, 1 },
1051   /*
1052   ** .pp
1053   ** Availability: IMAP
1054   **
1055   ** .pp
1056   ** When set, Mutt-ng will display warning messages from the IMAP
1057   ** server as error messages. Since these messages are often
1058   ** harmless, or generated due to configuration problems on the
1059   ** server which are out of the users' hands, you may wish to suppress
1060   ** them at some point.
1061   */
1062   { "imap_user",        DT_STR,  R_NONE, UL &ImapUser, UL 0 },
1063   /*
1064   ** .pp
1065   ** Availability: IMAP
1066   **
1067   ** .pp
1068   ** Your login name on the IMAP server.
1069   ** .pp
1070   ** This variable defaults to your user name on the local machine.
1071   */
1072 #endif
1073   { "implicit_autoview", DT_BOOL,R_NONE, OPTIMPLICITAUTOVIEW, 0},
1074   /*
1075   ** .pp
1076   ** If set to ``yes'', Mutt-ng will look for a mailcap entry with the
1077   ** copiousoutput flag set for \fIevery\fP MIME attachment it doesn't have
1078   ** an internal viewer defined for.  If such an entry is found, Mutt-ng will
1079   ** use the viewer defined in that entry to convert the body part to text
1080   ** form.
1081   */
1082   { "include",          DT_QUAD, R_NONE, OPT_INCLUDE, M_ASKYES },
1083   /*
1084   ** .pp
1085   ** Controls whether or not a copy of the message(s) you are replying to
1086   ** is included in your reply.
1087   */
1088   { "include_onlyfirst",        DT_BOOL, R_NONE, OPTINCLUDEONLYFIRST, 0},
1089   /*
1090   ** .pp
1091   ** Controls whether or not Mutt-ng includes only the first attachment
1092   ** of the message you are replying.
1093   */
1094   { "indent_string",    DT_STR,  R_NONE, UL &Prefix, UL "> " },
1095   /*
1096   ** .pp
1097   ** Specifies the string to prepend to each line of text quoted in a
1098   ** message to which you are replying.  You are strongly encouraged not to
1099   ** change this value, as it tends to agitate the more fanatical netizens.
1100   */
1101   { "indent_str",       DT_SYN,  R_NONE, UL "indent_string", 0 },
1102   /*
1103   */
1104   { "index_format",     DT_STR,  R_BOTH, UL &HdrFmt, UL "%4C %Z %{%b %d} %-15.15L (%?l?%4l&%4c?) %s" },
1105   /*
1106   ** .pp
1107   ** This variable allows you to customize the message index display to
1108   ** your personal taste.
1109   ** .pp
1110   ** ``Format strings'' are similar to the strings used in the ``C''
1111   ** function printf to format output (see the man page for more detail).
1112   ** The following sequences are defined in Mutt-ng:
1113   ** .pp
1114   ** .dl
1115   ** .dt %a .dd address of the author
1116   ** .dt %A .dd reply-to address (if present; otherwise: address of author)
1117   ** .dt %b .dd filename of the original message folder (think mailBox)
1118   ** .dt %B .dd the list to which the letter was sent, or else the folder name (%b).
1119   ** .dt %c .dd number of characters (bytes) in the message
1120   ** .dt %C .dd current message number
1121   ** .dt %d .dd date and time of the message in the format specified by
1122   **            ``date_format'' converted to sender's time zone
1123   ** .dt %D .dd date and time of the message in the format specified by
1124   **            ``date_format'' converted to the local time zone
1125   ** .dt %e .dd current message number in thread
1126   ** .dt %E .dd number of messages in current thread
1127   ** .dt %f .dd entire From: line (address + real name)
1128   ** .dt %F .dd author name, or recipient name if the message is from you
1129   ** .dt %H .dd spam attribute(s) of this message
1130   ** .dt %g .dd newsgroup name (if compiled with nntp support)
1131   ** .dt %i .dd message-id of the current message
1132   ** .dt %l .dd number of lines in the message (does not work with maildir,
1133   **            mh, and possibly IMAP folders)
1134   ** .dt %L .dd If an address in the To or CC header field matches an address
1135   **            defined by the users ``subscribe'' command, this displays
1136   **            "To <list-name>", otherwise the same as %F.
1137   ** .dt %m .dd total number of message in the mailbox
1138   ** .dt %M .dd number of hidden messages if the thread is collapsed.
1139   ** .dt %N .dd message score
1140   ** .dt %n .dd author's real name (or address if missing)
1141   ** .dt %O .dd (_O_riginal save folder)  Where Mutt-ng would formerly have
1142   **            stashed the message: list name or recipient name if no list
1143   ** .dt %s .dd subject of the message
1144   ** .dt %S .dd status of the message (N/D/d/!/r/\(as)
1145   ** .dt %t .dd `to:' field (recipients)
1146   ** .dt %T .dd the appropriate character from the $$to_chars string
1147   ** .dt %u .dd user (login) name of the author
1148   ** .dt %v .dd first name of the author, or the recipient if the message is from you
1149   ** .dt %W .dd name of organization of author (`organization:' field)
1150   ** .dt %y .dd `x-label:' field, if present
1151   ** .dt %Y .dd `x-label' field, if present, and (1) not at part of a thread tree,
1152   **            (2) at the top of a thread, or (3) `x-label' is different from
1153   **            preceding message's `x-label'.
1154   ** .dt %Z .dd message status flags
1155   ** .dt %{fmt} .dd the date and time of the message is converted to sender's
1156   **                time zone, and ``fmt'' is expanded by the library function
1157   **                ``strftime''; a leading bang disables locales
1158   ** .dt %[fmt] .dd the date and time of the message is converted to the local
1159   **                time zone, and ``fmt'' is expanded by the library function
1160   **                ``strftime''; a leading bang disables locales
1161   ** .dt %(fmt) .dd the local date and time when the message was received.
1162   **                ``fmt'' is expanded by the library function ``strftime'';
1163   **                a leading bang disables locales
1164   ** .dt %<fmt> .dd the current local time. ``fmt'' is expanded by the library
1165   **                function ``strftime''; a leading bang disables locales.
1166   ** .dt %>X    .dd right justify the rest of the string and pad with character "X"
1167   ** .dt %|X    .dd pad to the end of the line with character "X"
1168   ** .de
1169   ** .pp
1170   ** See also: ``$$to_chars''.
1171   */
1172 #ifdef USE_NNTP
1173   { "inews",          DT_PATH, R_NONE, UL &Inews, UL "" },
1174   /*
1175   ** .pp
1176   ** Availability: NNTP
1177   **
1178   ** .pp
1179   ** If set, specifies the program and arguments used to deliver news posted
1180   ** by Mutt-ng.  Otherwise, Mutt-ng posts article using current connection to
1181   ** news server.  The following printf-style sequence is understood:
1182   ** .pp
1183   ** .ts
1184   ** %s      newsserver name
1185   ** .te
1186   ** .pp
1187   ** Example: set inews="/usr/local/bin/inews -hS"
1188   */
1189 #endif
1190   { "ispell",           DT_PATH, R_NONE, UL &Ispell, UL ISPELL },
1191   /*
1192   ** .pp
1193   ** How to invoke ispell (GNU's spell-checking software).
1194   */
1195   { "keep_flagged", DT_BOOL, R_NONE, OPTKEEPFLAGGED, 0 },
1196   /*
1197   ** .pp
1198   ** If set, read messages marked as flagged will not be moved
1199   ** from your spool mailbox to your ``$$mbox'' mailbox, or as a result of
1200   ** a ``$mbox-hook'' command.
1201   */
1202   { "locale",           DT_STR,  R_BOTH, UL &Locale, UL "C" },
1203   /*
1204   ** .pp
1205   ** The locale used by \fIstrftime(3)\fP to format dates. Legal values are
1206   ** the strings your system accepts for the locale variable \fILC_TIME\fP.
1207   */
1208   { "list_reply",       DT_QUAD, R_NONE, OPT_LISTREPLY, M_NO },
1209   /*
1210   ** .pp
1211   ** When set, address replies to the mailing list the original message came
1212   ** from (instead to the author only). Setting this option to ``ask-yes'' or
1213   ** ``ask-no'' will ask if you really intended to reply to the author only.
1214   */
1215   { "max_line_length",  DT_NUM, R_NONE, UL &MaxLineLength, 0 },
1216   /*
1217   ** .pp
1218   ** When set, the maximum line length for displaying f=f messages is limited
1219   ** to this length. A value of 0 (which is also the default) means that the
1220   ** maximum line length is determined by the terminal width and $$wrapmargin.
1221   */
1222   { "mail_check",       DT_NUM,  R_NONE, UL &BuffyTimeout, 5 },
1223   /*
1224   ** .pp
1225   ** This variable configures how often (in seconds) Mutt-ng should look for
1226   ** new mail.
1227   */
1228   { "mailcap_path",     DT_STR,  R_NONE, UL &MailcapPath, 0 },
1229   /*
1230   ** .pp
1231   ** This variable specifies which files to consult when attempting to
1232   ** display MIME bodies not directly supported by Mutt-ng.
1233   */
1234   { "mailcap_sanitize", DT_BOOL, R_NONE, OPTMAILCAPSANITIZE, 1 },
1235   /*
1236   ** .pp
1237   ** If set, Mutt-ng will restrict possible characters in mailcap % expandos
1238   ** to a well-defined set of safe characters.  This is the safe setting,
1239   ** but we are not sure it doesn't break some more advanced MIME stuff.
1240   ** .pp
1241   ** \fBDON'T CHANGE THIS SETTING UNLESS YOU ARE REALLY SURE WHAT YOU ARE
1242   ** DOING!\fP
1243   */
1244 #if USE_HCACHE
1245
1246   { "header_cache", DT_PATH, R_NONE, UL &HeaderCache, 0 },
1247   /*
1248   ** .pp
1249   ** Availability: Header Cache
1250   **
1251   ** .pp
1252   ** The header_cache variable points to the header cache database.
1253   ** If header_cache points to a directory it will contain a header cache
1254   ** database  per folder. If header_cache points to a file that file will
1255   ** be a single global header cache. By default it is unset and so no
1256   ** header caching will be used.
1257   */
1258   { "maildir_header_cache_verify", DT_BOOL, R_NONE, OPTHCACHEVERIFY, 1 },
1259   /*
1260   ** .pp
1261   ** Availability: Header Cache
1262   **
1263   ** .pp
1264   ** Check for Maildir unaware programs other than Mutt-ng having modified maildir
1265   ** files when the header cache is in use.  This incurs one stat(2) per
1266   ** message every time the folder is opened.
1267   */
1268   { "header_cache_pagesize", DT_STR, R_NONE, UL &HeaderCachePageSize, UL "16384" },
1269   /*
1270   ** .pp
1271   ** Availability: Header Cache
1272   **
1273   ** .pp
1274   ** Change the maildir header cache database page size.  Too large
1275   ** or too small of a page size for the common header can waste
1276   ** space, memory effectiveness, or CPU time. The default should be more or
1277   ** less the best you can get. For details google after Mutt-ng maildir header
1278   ** cache (first hit).
1279   */
1280 #endif /* USE_HCACHE */
1281   { "maildir_trash", DT_BOOL, R_NONE, OPTMAILDIRTRASH, 0 },
1282   /*
1283   ** .pp
1284   ** If set, messages marked as deleted will be saved with the maildir
1285   ** (T)rashed flag instead of unlinked.  \fBNOTE:\fP this only applies
1286   ** to maildir-style mailboxes.  Setting it will have no effect on other
1287   ** mailbox types.
1288   ** It is similiar to the trash option.
1289   */
1290   { "mark_old",         DT_BOOL, R_BOTH, OPTMARKOLD, 1 },
1291   /*
1292   ** .pp
1293   ** Controls whether or not Mutt-ng marks \fInew\fP \fBunread\fP
1294   ** messages as \fIold\fP if you exit a mailbox without reading them.
1295   ** With this option set, the next time you start Mutt-ng, the messages
1296   ** will show up with an "O" next to them in the index menu,
1297   ** indicating that they are old.
1298   */
1299   { "markers",          DT_BOOL, R_PAGER, OPTMARKERS, 1 },
1300   /*
1301   ** .pp
1302   ** Controls the display of wrapped lines in the internal pager. If set, a
1303   ** ``+'' marker is displayed at the beginning of wrapped lines. Also see
1304   ** the ``$$smart_wrap'' variable.
1305   */
1306   { "mask",             DT_RX,   R_NONE, UL &Mask, UL "!^\\.[^.]" },
1307   /*
1308   ** .pp
1309   ** A regular expression used in the file browser, optionally preceded by
1310   ** the \fInot\fP operator ``!''.  Only files whose names match this mask
1311   ** will be shown. The match is always case-sensitive.
1312   */
1313   { "mbox",             DT_PATH, R_BOTH, UL &Inbox, UL "~/mbox" },
1314   /*
1315   ** .pp
1316   ** This specifies the folder into which read mail in your ``$$spoolfile''
1317   ** folder will be appended.
1318   */
1319   { "operating_system",  DT_STR, R_NONE, UL&OperatingSystem, 0 },
1320   /*
1321   ** .pp
1322   ** This specifies the operating system name for the User-Agent header. If
1323   ** this is unset, it will be set to the operating system name that uname(2)
1324   ** returns. If uname(2) fails, "UNIX" will be used.
1325   ** It looks like this Mutt-ng version (specified string)
1326   */
1327   { "sidebar_delim", DT_STR, R_BOTH, UL &SidebarDelim, UL "|" },
1328   /*
1329   ** .pp
1330   ** This specifies the delimiter between the sidebar (if visible) and 
1331   ** other screens.
1332   */
1333   { "sidebar_visible", DT_BOOL, R_BOTH, OPTMBOXPANE, 0 },
1334   /*
1335   ** .pp
1336   ** This specifies whether or not to show the mailbox list pane (left sidebar).
1337   */
1338   { "sidebar_width", DT_NUM, R_BOTH, UL &SidebarWidth, 0 },
1339   /*
1340   ** .pp
1341   ** The width of the mailbox list pane (left sidebar like in GUIs).
1342   */
1343   { "sidebar_newmail_only", DT_BOOL, R_BOTH, OPTSIDEBARNEWMAILONLY, 0 },
1344   /*
1345   ** .pp
1346   ** If set, only folders with new mail will be shown in the sidebar.
1347   */
1348   { "mbox_type",        DT_MAGIC,R_NONE, UL &DefaultMagic, M_MBOX },
1349   /*
1350   ** .pp
1351   ** The default mailbox type used when creating new folders. May be any of
1352   ** mbox, MMDF, MH and Maildir.
1353   */
1354   { "metoo",            DT_BOOL, R_NONE, OPTMETOO, 0 },
1355   /*
1356   ** .pp
1357   ** If unset, Mutt-ng will remove your address (see the ``alternates''
1358   ** command) from the list of recipients when replying to a message.
1359   */
1360   { "menu_context",     DT_NUM,  R_NONE, UL &MenuContext, 0 },
1361   /*
1362   ** .pp
1363   ** This variable controls the number of lines of context that are given
1364   ** when scrolling through menus. (Similar to ``$$pager_context''.)
1365   */
1366   { "menu_move_off",    DT_BOOL, R_NONE, OPTMENUMOVEOFF, 0 },
1367   /*
1368   ** .pp
1369   ** When \fIunset\fP, the bottom entry of menus will never scroll up past
1370   ** the bottom of the screen, unless there are less entries than lines.
1371   ** When \fIset\fP, the bottom entry may move off the bottom.
1372   */
1373   { "menu_scroll",      DT_BOOL, R_NONE, OPTMENUSCROLL, 0 },
1374   /*
1375   ** .pp
1376   ** When \fIset\fP, menus will be scrolled up or down one line when you
1377   ** attempt to move across a screen boundary.  If \fIunset\fP, the screen
1378   ** is cleared and the next or previous page of the menu is displayed
1379   ** (useful for slow links to avoid many redraws).
1380   */
1381   { "meta_key",         DT_BOOL, R_NONE, OPTMETAKEY, 0 },
1382   /*
1383   ** .pp
1384   ** If set, forces Mutt-ng to interpret keystrokes with the high bit (bit 8)
1385   ** set as if the user had pressed the ESC key and whatever key remains
1386   ** after having the high bit removed.  For example, if the key pressed
1387   ** has an ASCII value of 0xf4, then this is treated as if the user had
1388   ** pressed ESC then ``x''.  This is because the result of removing the
1389   ** high bit from ``0xf4'' is ``0x74'', which is the ASCII character
1390   ** ``x''.
1391   */
1392   { "mh_purge",         DT_BOOL, R_NONE, OPTMHPURGE, 0 },
1393   /*
1394   ** .pp
1395   ** When unset, Mutt-ng will mimic mh's behaviour and rename deleted messages
1396   ** to \fI,<old file name>\fP in mh folders instead of really deleting
1397   ** them.  If the variable is set, the message files will simply be
1398   ** deleted.
1399   */
1400   { "mh_seq_flagged",   DT_STR, R_NONE, UL &MhFlagged, UL "flagged" },
1401   /*
1402   ** .pp
1403   ** The name of the MH sequence used for flagged messages.
1404   */
1405   { "mh_seq_replied",   DT_STR, R_NONE, UL &MhReplied, UL "replied" },
1406   /*
1407   ** .pp
1408   ** The name of the MH sequence used to tag replied messages.
1409   */
1410   { "mh_seq_unseen",    DT_STR, R_NONE, UL &MhUnseen, UL "unseen" },
1411   /*
1412   ** .pp
1413   ** The name of the MH sequence used for unseen messages.
1414   */
1415   { "mime_forward",     DT_QUAD, R_NONE, OPT_MIMEFWD, M_NO },
1416   /*
1417   ** .pp
1418   ** When set, the message you are forwarding will be attached as a
1419   ** separate MIME part instead of included in the main body of the
1420   ** message.  This is useful for forwarding MIME messages so the receiver
1421   ** can properly view the message as it was delivered to you. If you like
1422   ** to switch between MIME and not MIME from mail to mail, set this
1423   ** variable to ask-no or ask-yes.
1424   ** .pp
1425   ** Also see ``$$forward_decode'' and ``$$mime_forward_decode''.
1426   */
1427   { "mime_forward_decode", DT_BOOL, R_NONE, OPTMIMEFORWDECODE, 0 },
1428   /*
1429   ** .pp
1430   ** Controls the decoding of complex MIME messages into text/plain when
1431   ** forwarding a message while ``$$mime_forward'' is \fIset\fP. Otherwise
1432   ** ``$$forward_decode'' is used instead.
1433   */
1434   { "mime_fwd",         DT_SYN,  R_NONE, UL "mime_forward", 0 },
1435   /*
1436   */
1437
1438   { "mime_forward_rest", DT_QUAD, R_NONE, OPT_MIMEFWDREST, M_YES },
1439   /*
1440   ** .pp
1441   ** When forwarding multiple attachments of a MIME message from the recvattach
1442   ** menu, attachments which cannot be decoded in a reasonable manner will
1443   ** be attached to the newly composed message if this option is set.
1444   */
1445
1446 #ifdef USE_NNTP
1447   { "mime_subject",   DT_BOOL, R_NONE, OPTMIMESUBJECT, 1 },
1448   /*
1449   ** .pp
1450   ** Availability: NNTP
1451   **
1452   ** .pp
1453   ** If \fIunset\fP, 8-bit ``subject:'' line in article header will not be
1454   ** encoded according to RFC2047 to base64.  This is useful when message
1455   ** is Usenet article, because MIME for news is nonstandard feature.
1456   */
1457 #endif
1458
1459 #ifdef MIXMASTER
1460   { "mix_entry_format", DT_STR,  R_NONE, UL &MixEntryFormat, UL "%4n %c %-16s %a" },
1461   /*
1462   ** .pp
1463   ** Availability: Mixmaster
1464   **
1465   ** .pp
1466   ** This variable describes the format of a remailer line on the mixmaster
1467   ** chain selection screen.  The following printf-like sequences are 
1468   ** supported:
1469   ** .pp
1470   ** .dl
1471   ** .dt %n .dd The running number on the menu.
1472   ** .dt %c .dd Remailer capabilities.
1473   ** .dt %s .dd The remailer's short name.
1474   ** .dt %a .dd The remailer's e-mail address.
1475   ** .de
1476   */
1477   { "mixmaster",        DT_PATH, R_NONE, UL &Mixmaster, UL MIXMASTER },
1478   /*
1479   ** .pp
1480   ** Availability: Mixmaster
1481   **
1482   ** .pp
1483   ** This variable contains the path to the Mixmaster binary on your
1484   ** system.  It is used with various sets of parameters to gather the
1485   ** list of known remailers, and to finally send a message through the
1486   ** mixmaster chain.
1487   */
1488 #endif
1489   { "move",             DT_QUAD, R_NONE, OPT_MOVE, M_ASKNO },
1490   /*
1491   ** .pp
1492   ** Controls whether or not Mutt-ng will move read messages
1493   ** from your spool mailbox to your ``$$mbox'' mailbox, or as a result of
1494   ** a ``$mbox-hook'' command.
1495   */
1496   { "message_format",   DT_STR,  R_NONE, UL &MsgFmt, UL "%s" },
1497   /*
1498   ** .pp
1499   ** This is the string displayed in the ``attachment'' menu for
1500   ** attachments of type message/rfc822.  For a full listing of defined
1501   ** printf()-like sequences see the section on ``$$index_format''.
1502   */
1503   { "msg_format",       DT_SYN,  R_NONE, UL "message_format", 0 },
1504   /*
1505   */
1506   { "msgid_format",     DT_STR, R_NONE, UL &MsgIdFormat, UL "%Y%m%d%h%M%s.G%P%p" },
1507   /*
1508   ** .pp
1509   ** This is the format for the ``local part'' of the message-IDs generated
1510   ** by Mutt-ng. The format string contains of one or more characters. The '%'
1511   ** character marks that certain data will be added to the string, similar to
1512   ** printf(). The following characters are allowed:
1513   ** .pp
1514   ** .dl
1515   ** .dt %d .dd the current day of month
1516   ** .dt %h .dd the current hour
1517   ** .dt %m .dd the current month
1518   ** .dt %M .dd the current minute
1519   ** .dt %O .dd the current UNIX timestamp (octal)
1520   ** .dt %p .dd the process ID
1521   ** .dt %P .dd the current message-ID prefix (a character rotating with 
1522   **            every message-ID being generated)
1523   ** .dt %r .dd a random integer value (decimal)
1524   ** .dt %R .dd a random integer value (hexadecimal)
1525   ** .dt %s .dd the current second
1526   ** .dt %T .dd the current UNIX timestamp (decimal)
1527   ** .dt %X .dd the current UNIX timestamp (hexadecimal)
1528   ** .dt %Y .dd the current year (Y2K compliant)
1529   ** .dt %% .dd the '%' character
1530   ** .de
1531   */
1532   { "narrow_tree",      DT_BOOL, R_TREE|R_INDEX, OPTNARROWTREE, 0 },
1533   /*
1534   ** .pp
1535   ** This variable, when set, makes the thread tree narrower, allowing
1536   ** deeper threads to fit on the screen.
1537   */
1538 #ifdef USE_NNTP
1539   { "news_cache_dir", DT_PATH, R_NONE, UL &NewsCacheDir, UL "~/.mutt" },
1540   /*
1541   ** .pp
1542   ** Availability: NNTP
1543   **
1544   ** .pp
1545   ** This variable pointing to directory where Mutt-ng will save cached news
1546   ** articles headers in. If \fIunset\fP, headers will not be saved at all
1547   ** and will be reloaded each time when you enter to newsgroup.
1548   */
1549   { "news_server",    DT_STR,  R_NONE, UL &NewsServer, 0 },
1550   /*
1551   ** .pp
1552   ** Availability: NNTP
1553   **
1554   ** .pp
1555   ** This variable specifies domain name or address of NNTP server. It
1556   ** defaults to the newsserver specified in the environment variable
1557   ** $$$NNTPSERVER or contained in the file /etc/nntpserver.  You can also
1558   ** specify username and an alternative port for each newsserver, ie:
1559   ** .pp
1560   ** [nntp[s]://][username[:password]@]newsserver[:port]
1561   */
1562   { "newsrc",         DT_PATH, R_NONE, UL &NewsRc, UL "~/.newsrc" },
1563   /*
1564   ** .pp
1565   ** Availability: NNTP
1566   **
1567   ** .pp
1568   ** The file, containing info about subscribed newsgroups - names and
1569   ** indexes of read articles.  The following printf-style sequence
1570   ** is understood:
1571   ** .pp
1572   ** .ts
1573   ** %s      newsserver name
1574   ** .te
1575   */
1576   { "nntp_context",   DT_NUM,  R_NONE, UL &NntpContext, 1000 },
1577   /*
1578   ** .pp
1579   ** Availability: NNTP
1580   **
1581   ** .pp
1582   ** This variable defines number of articles which will be in index when
1583   ** newsgroup entered.  If active newsgroup have more articles than this
1584   ** number, oldest articles will be ignored.  Also controls how many
1585   ** articles headers will be saved in cache when you quit newsgroup.
1586   */
1587   { "nntp_load_description", DT_BOOL, R_NONE, OPTLOADDESC, 1 },
1588   /*
1589   ** .pp
1590   ** Availability: NNTP
1591   **
1592   ** .pp
1593   ** This variable controls whether or not descriptions for each newsgroup
1594   ** must be loaded when newsgroup is added to list (first time list
1595   ** loading or new newsgroup adding).
1596   */
1597   { "nntp_user",      DT_STR,  R_NONE, UL &NntpUser, UL "" },
1598   /*
1599   ** .pp
1600   ** Availability: NNTP
1601   **
1602   ** .pp
1603   ** Your login name on the NNTP server.  If \fIunset\fP and NNTP server requires
1604   ** authentification, Mutt-ng will prompt you for your account name when you
1605   ** connect to newsserver.
1606   */
1607   { "nntp_pass",      DT_STR,  R_NONE, UL &NntpPass, UL "" },
1608   /*
1609   ** .pp
1610   ** Availability: NNTP
1611   **
1612   ** .pp
1613   ** Your password for NNTP account.
1614   */
1615   { "nntp_poll",      DT_NUM,  R_NONE, UL &NewsPollTimeout, 60 },
1616   /*
1617   ** .pp
1618   ** Availability: NNTP
1619   **
1620   ** .pp
1621   ** The time in seconds until any operations on newsgroup except post new
1622   ** article will cause recheck for new news.  If set to 0, Mutt-ng will
1623   ** recheck newsgroup on each operation in index (stepping, read article,
1624   ** etc.).
1625   */
1626   { "nntp_reconnect", DT_QUAD, R_NONE, OPT_NNTPRECONNECT, M_ASKYES },
1627   /*
1628   ** .pp
1629   ** Availability: NNTP
1630   **
1631   ** .pp
1632   ** Controls whether or not Mutt-ng will try to reconnect to newsserver when
1633   ** connection lost.
1634   */
1635 #endif
1636   { "pager",            DT_PATH, R_NONE, UL &Pager, UL "builtin" },
1637   /*
1638   ** .pp
1639   ** This variable specifies which pager you would like to use to view
1640   ** messages.  builtin means to use the builtin pager, otherwise this
1641   ** variable should specify the pathname of the external pager you would
1642   ** like to use.
1643   ** .pp
1644   ** Using an external pager may have some disadvantages: Additional
1645   ** keystrokes are necessary because you can't call Mutt-ng functions
1646   ** directly from the pager, and screen resizes cause lines longer than
1647   ** the screen width to be badly formatted in the help menu.
1648   */
1649   { "pager_context",    DT_NUM,  R_NONE, UL &PagerContext, 0 },
1650   /*
1651   ** .pp
1652   ** This variable controls the number of lines of context that are given
1653   ** when displaying the next or previous page in the internal pager.  By
1654   ** default, Mutt-ng will display the line after the last one on the screen
1655   ** at the top of the next page (0 lines of context).
1656   */
1657   { "pager_format",     DT_STR,  R_PAGER, UL &PagerFmt, UL "-%Z- %C/%m: %-20.20n   %s" },
1658   /*
1659   ** .pp
1660   ** This variable controls the format of the one-line message ``status''
1661   ** displayed before each message in either the internal or an external
1662   ** pager.  The valid sequences are listed in the ``$$index_format''
1663   ** section.
1664   */
1665   { "pager_index_lines",DT_NUM,  R_PAGER, UL &PagerIndexLines, 0 },
1666   /*
1667   ** .pp
1668   ** Determines the number of lines of a mini-index which is shown when in
1669   ** the pager.  The current message, unless near the top or bottom of the
1670   ** folder, will be roughly one third of the way down this mini-index,
1671   ** giving the reader the context of a few messages before and after the
1672   ** message.  This is useful, for example, to determine how many messages
1673   ** remain to be read in the current thread.  One of the lines is reserved
1674   ** for the status bar from the index, so a \fIpager_index_lines\fP of 6
1675   ** will only show 5 lines of the actual index.  A value of 0 results in
1676   ** no index being shown.  If the number of messages in the current folder
1677   ** is less than \fIpager_index_lines\fP, then the index will only use as
1678   ** many lines as it needs.
1679   */
1680   { "pager_stop",       DT_BOOL, R_NONE, OPTPAGERSTOP, 0 },
1681   /*
1682   ** .pp
1683   ** When set, the internal-pager will \fBnot\fP move to the next message
1684   ** when you are at the end of a message and invoke the \fInext-page\fP
1685   ** function.
1686   */
1687   { "pgp_autosign",     DT_SYN,  R_NONE, UL "crypt_autosign", 0 },
1688   { "crypt_autosign",   DT_BOOL, R_NONE, OPTCRYPTAUTOSIGN, 0 },
1689   /*
1690   ** .pp
1691   ** Setting this variable will cause Mutt-ng to always attempt to
1692   ** cryptographically sign outgoing messages.  This can be overridden
1693   ** by use of the \fIpgp-menu\fP, when signing is not required or
1694   ** encryption is requested as well. If ``$$smime_is_default'' is set,
1695   ** then OpenSSL is used instead to create S/MIME messages and settings can
1696   ** be overridden by use of the \fIsmime-menu\fP.
1697   ** (Crypto only)
1698   */
1699   { "pgp_autoencrypt",          DT_SYN,  R_NONE, UL "crypt_autoencrypt", 0 },
1700   { "crypt_autoencrypt",        DT_BOOL, R_NONE, OPTCRYPTAUTOENCRYPT, 0 },
1701   /*
1702   ** .pp
1703   ** Setting this variable will cause Mutt-ng to always attempt to PGP
1704   ** encrypt outgoing messages.  This is probably only useful in
1705   ** connection to the \fIsend-hook\fP command.  It can be overridden
1706   ** by use of the \fIpgp-menu\fP, when encryption is not required or
1707   ** signing is requested as well.  IF ``$$smime_is_default'' is set,
1708   ** then OpenSSL is used instead to create S/MIME messages and
1709   ** settings can be overridden by use of the \fIsmime-menu\fP.
1710   ** (Crypto only)
1711   */
1712   { "pgp_ignore_subkeys", DT_BOOL, R_NONE, OPTPGPIGNORESUB, 1},
1713   /*
1714   ** .pp
1715   ** Setting this variable will cause Mutt-ng to ignore OpenPGP subkeys. Instead,
1716   ** the principal key will inherit the subkeys' capabilities.  Unset this
1717   ** if you want to play interesting key selection games.
1718   ** (PGP only)
1719   */
1720   { "pgp_replyencrypt",         DT_SYN,  R_NONE, UL "crypt_replyencrypt", 1  },
1721   { "crypt_replyencrypt",       DT_BOOL, R_NONE, OPTCRYPTREPLYENCRYPT, 1 },
1722   /*
1723   ** .pp
1724   ** If set, automatically PGP or OpenSSL encrypt replies to messages which are
1725   ** encrypted.
1726   ** (Crypto only)
1727   */
1728   { "pgp_replysign",    DT_SYN, R_NONE, UL "crypt_replysign", 0 },
1729   { "crypt_replysign",  DT_BOOL, R_NONE, OPTCRYPTREPLYSIGN, 0 },
1730   /*
1731   ** .pp
1732   ** If set, automatically PGP or OpenSSL sign replies to messages which are
1733   ** signed.
1734   ** .pp
1735   ** \fBNote:\fP this does not work on messages that are encrypted
1736   ** \fBand\fP signed!
1737   ** (Crypto only)
1738   */
1739   { "pgp_replysignencrypted",   DT_SYN,  R_NONE, UL "crypt_replysignencrypted", 0},
1740   { "crypt_replysignencrypted", DT_BOOL, R_NONE, OPTCRYPTREPLYSIGNENCRYPTED, 0 },
1741   /*
1742   ** .pp
1743   ** If set, automatically PGP or OpenSSL sign replies to messages
1744   ** which are encrypted. This makes sense in combination with
1745   ** ``$$crypt_replyencrypt'', because it allows you to sign all
1746   ** messages which are automatically encrypted.  This works around
1747   ** the problem noted in ``$$crypt_replysign'', that Mutt-ng is not able
1748   ** to find out whether an encrypted message is also signed.
1749   ** (Crypto only)
1750   */
1751   { "crypt_timestamp", DT_BOOL, R_NONE, OPTCRYPTTIMESTAMP, 1 },
1752   /*
1753   ** .pp
1754   ** If set, Mutt-ng will include a time stamp in the lines surrounding
1755   ** PGP or S/MIME output, so spoofing such lines is more difficult.
1756   ** If you are using colors to mark these lines, and rely on these,
1757   ** you may unset this setting.
1758   ** (Crypto only)
1759   */
1760   { "pgp_use_gpg_agent", DT_BOOL, R_NONE, OPTUSEGPGAGENT, 0},
1761   /*
1762   ** .pp
1763   ** If set, Mutt-ng will use a possibly-running gpg-agent process.
1764   ** (PGP only)
1765   */
1766   { "pgp_verify_sig",   DT_SYN,  R_NONE, UL "crypt_verify_sig", 0},
1767   { "crypt_verify_sig", DT_QUAD, R_NONE, OPT_VERIFYSIG, M_YES },
1768   /*
1769   ** .pp
1770   ** If ``yes'', always attempt to verify PGP or S/MIME signatures.
1771   ** If ``ask'', ask whether or not to verify the signature. 
1772   ** If ``no'', never attempt to verify cryptographic signatures.
1773   ** (Crypto only)
1774   */
1775   { "smime_is_default", DT_BOOL,  R_NONE, OPTSMIMEISDEFAULT, 0},
1776   /*
1777   ** .pp
1778   ** The default behaviour of Mutt-ng is to use PGP on all auto-sign/encryption
1779   ** operations. To override and to use OpenSSL instead this must be set.
1780   ** However, this has no effect while replying, since Mutt-ng will automatically 
1781   ** select the same application that was used to sign/encrypt the original
1782   ** message.  (Note that this variable can be overridden by unsetting $$crypt_autosmime.)
1783   ** (S/MIME only)
1784   */
1785   { "smime_ask_cert_label",     DT_BOOL, R_NONE, OPTASKCERTLABEL, 1 },
1786   /*
1787   ** .pp
1788   ** This flag controls whether you want to be asked to enter a label
1789   ** for a certificate about to be added to the database or not. It is
1790   ** set by default.
1791   ** (S/MIME only)
1792   */
1793   { "smime_decrypt_use_default_key",    DT_BOOL, R_NONE, OPTSDEFAULTDECRYPTKEY, 1 },
1794   /*
1795   ** .pp
1796   ** If set (default) this tells Mutt-ng to use the default key for decryption. Otherwise,
1797   ** if manage multiple certificate-key-pairs, Mutt-ng will try to use the mailbox-address
1798   ** to determine the key to use. It will ask you to supply a key, if it can't find one.
1799   ** (S/MIME only)
1800   */
1801   { "pgp_entry_format", DT_STR,  R_NONE, UL &PgpEntryFormat, UL "%4n %t%f %4l/0x%k %-4a %2c %u" },
1802   /*
1803   ** .pp
1804   ** This variable allows you to customize the PGP key selection menu to
1805   ** your personal taste. This string is similar to ``$$index_format'', but
1806   ** has its own set of printf()-like sequences:
1807   ** .pp
1808   ** .dl
1809   ** .dt %n     .dd number
1810   ** .dt %k     .dd key id
1811   ** .dt %u     .dd user id
1812   ** .dt %a     .dd algorithm
1813   ** .dt %l     .dd key length
1814   ** .dt %f     .dd flags
1815   ** .dt %c     .dd capabilities
1816   ** .dt %t     .dd trust/validity of the key-uid association
1817   ** .dt %[<s>] .dd date of the key where <s> is an strftime(3) expression
1818   ** .de
1819   ** .pp
1820   ** (PGP only)
1821   */
1822   { "pgp_good_sign",    DT_RX,  R_NONE, UL &PgpGoodSign, 0 },
1823   /*
1824   ** .pp
1825   ** If you assign a text to this variable, then a PGP signature is only
1826   ** considered verified if the output from $$pgp_verify_command contains
1827   ** the text. Use this variable if the exit code from the command is 0
1828   ** even for bad signatures.
1829   ** (PGP only)
1830   */ 
1831   { "pgp_check_exit",   DT_BOOL, R_NONE, OPTPGPCHECKEXIT, 1 },
1832   /*
1833   ** .pp
1834   ** If set, Mutt-ng will check the exit code of the PGP subprocess when
1835   ** signing or encrypting.  A non-zero exit code means that the
1836   ** subprocess failed.
1837   ** (PGP only)
1838   */
1839   { "pgp_long_ids",     DT_BOOL, R_NONE, OPTPGPLONGIDS, 0 },
1840   /*
1841   ** .pp
1842   ** If set, use 64 bit PGP key IDs. Unset uses the normal 32 bit Key IDs.
1843   ** (PGP only)
1844   */
1845   { "pgp_retainable_sigs", DT_BOOL, R_NONE, OPTPGPRETAINABLESIG, 0 },
1846   /*
1847   ** .pp
1848   ** If set, signed and encrypted messages will consist of nested
1849   ** multipart/signed and multipart/encrypted body parts.
1850   ** .pp
1851   ** This is useful for applications like encrypted and signed mailing
1852   ** lists, where the outer layer (multipart/encrypted) can be easily
1853   ** removed, while the inner multipart/signed part is retained.
1854   ** (PGP only)
1855   */
1856   { "pgp_create_traditional",   DT_SYN, R_NONE, UL "pgp_autoinline", 0 },
1857   { "pgp_autoinline",           DT_BOOL, R_NONE, OPTPGPAUTOINLINE, 0 },
1858   /*
1859   ** .pp
1860   ** This option controls whether Mutt-ng generates old-style inline
1861   ** (traditional) PGP encrypted or signed messages under certain
1862   ** circumstances.  This can be overridden by use of the \fIpgp-menu\fP,
1863   ** when inline is not required.
1864   ** .pp
1865   ** Note that Mutt-ng might automatically use PGP/MIME for messages
1866   ** which consist of more than a single MIME part.  Mutt-ng can be
1867   ** configured to ask before sending PGP/MIME messages when inline
1868   ** (traditional) would not work.
1869   ** See also: ``$$pgp_mime_auto''.
1870   ** .pp
1871   ** Also note that using the old-style PGP message format is \fBstrongly\fP
1872   ** \fBdeprecated\fP.
1873   ** (PGP only)
1874   */
1875   { "pgp_auto_traditional",     DT_SYN, R_NONE, UL "pgp_replyinline", 0 },
1876   { "pgp_replyinline",          DT_BOOL, R_NONE, OPTPGPREPLYINLINE, 0 },
1877   /*
1878   ** .pp
1879   ** Setting this variable will cause Mutt-ng to always attempt to
1880   ** create an inline (traditional) message when replying to a
1881   ** message which is PGP encrypted/signed inline.  This can be
1882   ** overridden by use of the \fIpgp-menu\fP, when inline is not
1883   ** required.  This option does not automatically detect if the
1884   ** (replied-to) message is inline; instead it relies on Mutt-ng
1885   ** internals for previously checked/flagged messages.
1886   ** .pp
1887   ** Note that Mutt-ng might automatically use PGP/MIME for messages
1888   ** which consist of more than a single MIME part.  Mutt-ng can be
1889   ** configured to ask before sending PGP/MIME messages when inline
1890   ** (traditional) would not work.
1891   ** See also: ``$$pgp_mime_auto''.
1892   ** .pp
1893   ** Also note that using the old-style PGP message format is \fBstrongly\fP
1894   ** \fBdeprecated\fP.
1895   ** (PGP only)
1896   ** 
1897   */
1898   { "pgp_show_unusable", DT_BOOL, R_NONE, OPTPGPSHOWUNUSABLE, 1 },
1899   /*
1900   ** .pp
1901   ** If set, Mutt-ng will display non-usable keys on the PGP key selection
1902   ** menu.  This includes keys which have been revoked, have expired, or
1903   ** have been marked as ``disabled'' by the user.
1904   ** (PGP only)
1905   */
1906   { "pgp_sign_as",      DT_STR,  R_NONE, UL &PgpSignAs, 0 },
1907   /*
1908   ** .pp
1909   ** If you have more than one key pair, this option allows you to specify
1910   ** which of your private keys to use.  It is recommended that you use the
1911   ** keyid form to specify your key (e.g., ``0x00112233'').
1912   ** (PGP only)
1913   */
1914   { "pgp_strict_enc",   DT_BOOL, R_NONE, OPTPGPSTRICTENC, 1 },
1915   /*
1916   ** .pp
1917   ** If set, Mutt-ng will automatically encode PGP/MIME signed messages as
1918   ** \fIquoted-printable\fP.  Please note that unsetting this variable may
1919   ** lead to problems with non-verifyable PGP signatures, so only change
1920   ** this if you know what you are doing.
1921   ** (PGP only)
1922   */
1923   { "pgp_timeout",      DT_NUM,  R_NONE, UL &PgpTimeout, 300 },
1924   /*
1925   ** .pp
1926   ** The number of seconds after which a cached passphrase will expire if
1927   ** not used. Default: 300.
1928   ** (PGP only)
1929   */
1930   { "pgp_sort_keys",    DT_SORT|DT_SORT_KEYS, R_NONE, UL &PgpSortKeys, SORT_ADDRESS },
1931   /*
1932   ** .pp
1933   ** Specifies how the entries in the `pgp keys' menu are sorted. The
1934   ** following are legal values:
1935   ** .pp
1936   ** .dl
1937   ** .dt address .dd sort alphabetically by user id
1938   ** .dt keyid   .dd sort alphabetically by key id
1939   ** .dt date    .dd sort by key creation date
1940   ** .dt trust   .dd sort by the trust of the key
1941   ** .de
1942   ** .pp
1943   ** If you prefer reverse order of the above values, prefix it with
1944   ** `reverse-'.
1945   ** (PGP only)
1946   */
1947   { "pgp_mime_auto", DT_QUAD, R_NONE, OPT_PGPMIMEAUTO, M_ASKYES },
1948   /*
1949   ** .pp
1950   ** This option controls whether Mutt-ng will prompt you for
1951   ** automatically sending a (signed/encrypted) message using
1952   ** PGP/MIME when inline (traditional) fails (for any reason).
1953   ** .pp
1954   ** Also note that using the old-style PGP message format is \fBstrongly\fP
1955   ** \fBdeprecated\fP.
1956   ** (PGP only)
1957   */
1958   { "pgp_auto_decode", DT_BOOL, R_NONE, OPTPGPAUTODEC, 0 },
1959   /*
1960   ** .pp
1961   ** If set, Mutt-ng will automatically attempt to decrypt traditional PGP
1962   ** messages whenever the user performs an operation which ordinarily would
1963   ** result in the contents of the message being operated on.  For example,
1964   ** if the user displays a pgp-traditional message which has not been manually
1965   ** checked with the check-traditional-pgp function, Mutt-ng will automatically
1966   ** check the message for traditional pgp.
1967   */
1968
1969
1970   /* XXX Default values! */
1971   
1972   { "pgp_decode_command",       DT_STR, R_NONE, UL &PgpDecodeCommand, 0},
1973   /*
1974   ** .pp
1975   ** This format strings specifies a command which is used to decode 
1976   ** application/pgp attachments.
1977   ** .pp
1978   ** The PGP command formats have their own set of printf-like sequences:
1979   ** .pp
1980   ** .dl
1981   ** .dt %p .dd Expands to PGPPASSFD=0 when a pass phrase is needed, to an empty
1982   **            string otherwise. Note: This may be used with a %? construct.
1983   ** .dt %f .dd Expands to the name of a file containing a message.
1984   ** .dt %s .dd Expands to the name of a file containing the signature part
1985   ** .          of a multipart/signed attachment when verifying it.
1986   ** .dt %a .dd The value of $$pgp_sign_as.
1987   ** .dt %r .dd One or more key IDs.
1988   ** .de
1989   ** .pp
1990   ** For examples on how to configure these formats for the various versions
1991   ** of PGP which are floating around, see the pgp*.rc and gpg.rc files in
1992   ** the samples/ subdirectory which has been installed on your system
1993   ** alongside the documentation.
1994   ** (PGP only)
1995   */
1996   { "pgp_getkeys_command",      DT_STR, R_NONE, UL &PgpGetkeysCommand, 0},
1997   /*
1998   ** .pp
1999   ** This command is invoked whenever Mutt-ng will need public key information.
2000   ** %r is the only printf-like sequence used with this format.
2001   ** (PGP only)
2002   */
2003   { "pgp_verify_command",       DT_STR, R_NONE, UL &PgpVerifyCommand, 0},
2004   /*
2005   ** .pp
2006   ** This command is used to verify PGP signatures.
2007   ** (PGP only)
2008   */
2009   { "pgp_decrypt_command",      DT_STR, R_NONE, UL &PgpDecryptCommand, 0},
2010   /*
2011   ** .pp
2012   ** This command is used to decrypt a PGP encrypted message.
2013   ** (PGP only)
2014   */  
2015   { "pgp_clearsign_command",    DT_STR, R_NONE, UL &PgpClearSignCommand, 0 },
2016   /*
2017   ** .pp
2018   ** This format is used to create a old-style "clearsigned" PGP
2019   ** message.  Note that the use of this format is \fBstrongly\fP
2020   ** \fBdeprecated\fP.
2021   ** (PGP only)
2022   */
2023   { "pgp_sign_command",         DT_STR, R_NONE, UL &PgpSignCommand, 0},
2024   /*
2025   ** .pp
2026   ** This command is used to create the detached PGP signature for a 
2027   ** multipart/signed PGP/MIME body part.
2028   ** (PGP only)
2029   */  
2030   { "pgp_encrypt_sign_command", DT_STR, R_NONE, UL &PgpEncryptSignCommand, 0},
2031   /*
2032   ** .pp
2033   ** This command is used to both sign and encrypt a body part.
2034   ** (PGP only)
2035   */  
2036   { "pgp_encrypt_only_command", DT_STR, R_NONE, UL &PgpEncryptOnlyCommand, 0},
2037   /*
2038   ** .pp
2039   ** This command is used to encrypt a body part without signing it.
2040   ** (PGP only)
2041   */  
2042   { "pgp_import_command",       DT_STR, R_NONE, UL &PgpImportCommand, 0},
2043   /*
2044   ** .pp
2045   ** This command is used to import a key from a message into 
2046   ** the user's public key ring.
2047   ** (PGP only)
2048   */  
2049   { "pgp_export_command",       DT_STR, R_NONE, UL &PgpExportCommand, 0},
2050   /*
2051   ** .pp
2052   ** This command is used to export a public key from the user's
2053   ** key ring.
2054   ** (PGP only)
2055   */  
2056   { "pgp_verify_key_command",   DT_STR, R_NONE, UL &PgpVerifyKeyCommand, 0},
2057   /*
2058   ** .pp
2059   ** This command is used to verify key information from the key selection
2060   ** menu.
2061   ** (PGP only)
2062   */  
2063   { "pgp_list_secring_command", DT_STR, R_NONE, UL &PgpListSecringCommand, 0},
2064   /*
2065   ** .pp
2066   ** This command is used to list the secret key ring's contents.  The
2067   ** output format must be analogous to the one used by 
2068   ** gpg --list-keys --with-colons.
2069   ** .pp
2070   ** This format is also generated by the pgpring utility which comes 
2071   ** with Mutt-ng.
2072   ** (PGP only)
2073   */  
2074   { "pgp_list_pubring_command", DT_STR, R_NONE, UL &PgpListPubringCommand, 0},
2075   /*
2076   ** .pp
2077   ** This command is used to list the public key ring's contents.  The
2078   ** output format must be analogous to the one used by 
2079   ** gpg --list-keys --with-colons.
2080   ** .pp
2081   ** This format is also generated by the pgpring utility which comes 
2082   ** with Mutt-ng.
2083   ** (PGP only)
2084   */  
2085   { "forward_decrypt",  DT_BOOL, R_NONE, OPTFORWDECRYPT, 1 },
2086   /*
2087   ** .pp
2088   ** Controls the handling of encrypted messages when forwarding a message.
2089   ** When set, the outer layer of encryption is stripped off.  This
2090   ** variable is only used if ``$$mime_forward'' is \fIset\fP and
2091   ** ``$$mime_forward_decode'' is \fIunset\fP.
2092   ** (PGP only)
2093   */
2094   { "forw_decrypt",     DT_SYN,  R_NONE, UL "forward_decrypt", 0 },
2095   /*
2096   */
2097   
2098   { "smime_timeout",            DT_NUM,  R_NONE, UL &SmimeTimeout, 300 },
2099   /*
2100   ** .pp
2101   ** The number of seconds after which a cached passphrase will expire if
2102   ** not used.
2103   ** (S/MIME only)
2104   */
2105   { "smime_encrypt_with",       DT_STR,  R_NONE, UL &SmimeCryptAlg, 0 },
2106   /*
2107   ** .pp
2108   ** This sets the algorithm that should be used for encryption.
2109   ** Valid choices are "des", "des3", "rc2-40", "rc2-64", "rc2-128".
2110   ** If unset "3des" (TripleDES) is used.
2111   ** (S/MIME only)
2112   */
2113   { "smime_keys",               DT_PATH, R_NONE, UL &SmimeKeys, 0 },
2114   /*
2115   ** .pp
2116   ** Since there is no pubring/secring as with PGP, Mutt-ng has to handle
2117   ** storage ad retrieval of keys/certs by itself. This is very basic right now,
2118   ** and stores keys and certificates in two different directories, both
2119   ** named as the hash-value retrieved from OpenSSL. There is an index file
2120   ** which contains mailbox-address keyid pair, and which can be manually
2121   ** edited. This one points to the location of the private keys.
2122   ** (S/MIME only)
2123   */
2124   { "smime_ca_location",        DT_PATH, R_NONE, UL &SmimeCALocation, 0 },
2125   /*
2126   ** .pp
2127   ** This variable contains the name of either a directory, or a file which
2128   ** contains trusted certificates for use with OpenSSL.
2129   ** (S/MIME only)
2130   */
2131   { "smime_certificates",       DT_PATH, R_NONE, UL &SmimeCertificates, 0 },
2132   /*
2133   ** .pp
2134   ** Since there is no pubring/secring as with PGP, Mutt-ng has to handle
2135   ** storage and retrieval of keys by itself. This is very basic right
2136   ** now, and keys and certificates are stored in two different
2137   ** directories, both named as the hash-value retrieved from
2138   ** OpenSSL. There is an index file which contains mailbox-address
2139   ** keyid pairs, and which can be manually edited. This one points to
2140   ** the location of the certificates.
2141   ** (S/MIME only)
2142   */
2143   { "smime_decrypt_command",    DT_STR, R_NONE, UL &SmimeDecryptCommand, 0},
2144   /*
2145   ** .pp
2146   ** This format string specifies a command which is used to decrypt
2147   ** application/x-pkcs7-mime attachments.
2148   ** .pp
2149   ** The OpenSSL command formats have their own set of printf-like sequences
2150   ** similar to PGP's:
2151   ** .pp
2152   ** .dl
2153   ** .dt %f .dd Expands to the name of a file containing a message.
2154   ** .dt %s .dd Expands to the name of a file containing the signature part
2155   ** .          of a multipart/signed attachment when verifying it.
2156   ** .dt %k .dd The key-pair specified with $$smime_default_key
2157   ** .dt %c .dd One or more certificate IDs.
2158   ** .dt %a .dd The algorithm used for encryption.
2159   ** .dt %C .dd CA location:  Depending on whether $$smime_ca_location
2160   ** .          points to a directory or file, this expands to 
2161   ** .          "-CApath $$smime_ca_location" or "-CAfile $$smime_ca_location".
2162   ** .de
2163   ** .pp
2164   ** For examples on how to configure these formats, see the smime.rc in
2165   ** the samples/ subdirectory which has been installed on your system
2166   ** alongside the documentation.
2167   ** (S/MIME only)
2168   */
2169   { "smime_verify_command",     DT_STR, R_NONE, UL &SmimeVerifyCommand, 0},
2170   /*
2171   ** .pp
2172   ** This command is used to verify S/MIME signatures of type multipart/signed.
2173   ** (S/MIME only)
2174   */
2175   { "smime_verify_opaque_command",      DT_STR, R_NONE, UL &SmimeVerifyOpaqueCommand, 0},
2176   /*
2177   ** .pp
2178   ** This command is used to verify S/MIME signatures of type
2179   ** application/x-pkcs7-mime.
2180   ** (S/MIME only)
2181   */
2182   { "smime_sign_command",       DT_STR, R_NONE, UL &SmimeSignCommand, 0},
2183   /*
2184   ** .pp
2185   ** This command is used to created S/MIME signatures of type
2186   ** multipart/signed, which can be read by all mail clients.
2187   ** (S/MIME only)
2188   */
2189   { "smime_sign_opaque_command",        DT_STR, R_NONE, UL &SmimeSignOpaqueCommand, 0},
2190   /*
2191   ** .pp
2192   ** This command is used to created S/MIME signatures of type
2193   ** application/x-pkcs7-signature, which can only be handled by mail
2194   ** clients supporting the S/MIME extension.
2195   ** (S/MIME only)
2196   */
2197   { "smime_encrypt_command",    DT_STR, R_NONE, UL &SmimeEncryptCommand, 0},
2198   /*
2199   ** .pp
2200   ** This command is used to create encrypted S/MIME messages.
2201   ** (S/MIME only)
2202   */
2203   { "smime_pk7out_command",     DT_STR, R_NONE, UL &SmimePk7outCommand, 0},
2204   /*
2205   ** .pp
2206   ** This command is used to extract PKCS7 structures of S/MIME signatures,
2207   ** in order to extract the public X509 certificate(s).
2208   ** (S/MIME only)
2209   */
2210   { "smime_get_cert_command",   DT_STR, R_NONE, UL &SmimeGetCertCommand, 0},
2211   /*
2212   ** .pp
2213   ** This command is used to extract X509 certificates from a PKCS7 structure.
2214   ** (S/MIME only)
2215   */
2216   { "smime_get_signer_cert_command",    DT_STR, R_NONE, UL &SmimeGetSignerCertCommand, 0},
2217   /*
2218   ** .pp
2219   ** This command is used to extract only the signers X509 certificate from a S/MIME
2220   ** signature, so that the certificate's owner may get compared to the
2221   ** email's 'From'-field.
2222   ** (S/MIME only)
2223   */
2224   { "smime_import_cert_command",        DT_STR, R_NONE, UL &SmimeImportCertCommand, 0},
2225   /*
2226   ** .pp
2227   ** This command is used to import a certificate via smime_keys.
2228   ** (S/MIME only)
2229   */
2230   { "smime_get_cert_email_command",     DT_STR, R_NONE, UL &SmimeGetCertEmailCommand, 0},
2231   /*
2232   ** .pp
2233   ** This command is used to extract the mail address(es) used for storing
2234   ** X509 certificates, and for verification purposes (to check whether the
2235   ** certificate was issued for the sender's mailbox).
2236   ** (S/MIME only)
2237   */
2238   { "smime_sign_as",                    DT_SYN,  R_NONE, UL "smime_default_key", 0 },
2239   { "smime_default_key",                DT_STR,  R_NONE, UL &SmimeDefaultKey, 0 },
2240   /*
2241   ** .pp
2242   ** This is the default key-pair to use for signing. This must be set to the
2243   ** keyid (the hash-value that OpenSSL generates) to work properly
2244   ** (S/MIME only)
2245   */
2246 #if defined(USE_LIBESMTP)
2247   { "smtp_auth_username", DT_STR, R_NONE, UL &SmtpAuthUser, 0 },
2248   /*
2249   ** .pp
2250   ** Availability: SMTP
2251   **
2252   ** .pp
2253   ** Defines the username to use with SMTP AUTH.  Setting this variable will
2254   ** cause Mutt-ng to attempt to use SMTP AUTH when sending.
2255   */
2256   { "smtp_auth_password", DT_STR, R_NONE, UL &SmtpAuthPass, 0 },
2257   /*
2258   ** .pp
2259   ** Availability: SMTP
2260   **
2261   ** .pp
2262   ** Defines the password to use with SMTP AUTH.  If ``$$smtp_auth_username''
2263   ** is set, but this variable is not, you will be prompted for a password
2264   ** when sending.
2265   */
2266   { "smtp_host", DT_STR, R_NONE, UL &SmtpHost, 0 },
2267   /*
2268   ** .pp
2269   ** Availability: SMTP
2270   **
2271   ** .pp
2272   ** Defines the SMTP host which will be used to deliver mail, as opposed
2273   ** to invoking the sendmail binary.  Setting this variable overrides the
2274   ** value of ``$$sendmail'', and any associated variables.
2275   */
2276   { "smtp_port", DT_NUM, R_NONE, UL &SmtpPort, 25 },
2277   /*
2278   ** .pp
2279   ** Availability: SMTP
2280   **
2281   ** .pp
2282   ** Defines the port that the SMTP host is listening on for mail delivery.
2283   ** Must be specified as a number.
2284   ** .pp
2285   ** Defaults to 25, the standard SMTP port, but RFC 2476-compliant SMTP
2286   ** servers will probably desire 587, the mail submission port.
2287   */
2288 #endif
2289 #if defined(USE_SSL)||defined(USE_NSS)||defined(USE_GNUTLS)
2290 #ifdef USE_SSL
2291   { "ssl_client_cert", DT_PATH, R_NONE, UL &SslClientCert, 0 },
2292   /*
2293   ** .pp
2294   ** Availability: SSL
2295   **
2296   ** .pp
2297   ** The file containing a client certificate and its associated private
2298   ** key.
2299   */
2300 #endif
2301 # if defined(USE_SSL)||defined(USE_GNUTLS)
2302   { "ssl_starttls", DT_QUAD, R_NONE, OPT_SSLSTARTTLS, M_YES },
2303   /*
2304   ** .pp
2305   ** Availability: SSL or GNUTLS
2306   **
2307   ** .pp
2308   ** If set (the default), Mutt-ng will attempt to use STARTTLS on servers
2309   ** advertising the capability. When unset, Mutt-ng will not attempt to
2310   ** use STARTTLS regardless of the server's capabilities.
2311   */
2312 # endif  
2313   { "certificate_file", DT_PATH, R_NONE, UL &SslCertFile, UL "~/.mutt_certificates" },
2314   /*
2315   ** .pp
2316   ** Availability: SSL or NSS or GNUTLS
2317   **
2318   ** .pp
2319   ** This variable specifies the file where the certificates you trust
2320   ** are saved. When an unknown certificate is encountered, you are asked
2321   ** if you accept it or not. If you accept it, the certificate can also 
2322   ** be saved in this file and further connections are automatically 
2323   ** accepted.
2324   ** .pp
2325   ** You can also manually add CA certificates in this file. Any server
2326   ** certificate that is signed with one of these CA certificates are 
2327   ** also automatically accepted.
2328   ** .pp
2329   ** Example: set certificate_file=~/.mutt/certificates
2330   */
2331 # ifndef USE_GNUTLS
2332   { "ssl_usesystemcerts", DT_BOOL, R_NONE, OPTSSLSYSTEMCERTS, 1 },
2333   /*
2334   ** .pp
2335   ** Availability: SSL or NSS
2336   **
2337   ** .pp
2338   ** If set to \fIyes\fP, Mutt-ng will use CA certificates in the
2339   ** system-wide certificate store when checking if server certificate 
2340   ** is signed by a trusted CA.
2341   */
2342   { "entropy_file",     DT_PATH, R_NONE, UL &SslEntropyFile, 0 },
2343   /*
2344   ** .pp
2345   ** Availability: SSL or NSS
2346   **
2347   ** .pp
2348   ** The file which includes random data that is used to initialize SSL
2349   ** library functions.
2350    */
2351   { "ssl_use_sslv2", DT_BOOL, R_NONE, OPTSSLV2, 1 },
2352   /*
2353   ** .pp
2354   ** Availability: SSL or NSS
2355   **
2356   ** .pp
2357   ** This variables specifies whether to attempt to use SSLv2 in the
2358   ** SSL authentication process.
2359   */
2360 # endif
2361   { "ssl_use_sslv3", DT_BOOL, R_NONE, OPTSSLV3, 1 },
2362   /*
2363   ** .pp
2364   ** Availability: SSL or NSS or GNUTLS
2365   **
2366   ** .pp
2367   ** This variables specifies whether to attempt to use SSLv3 in the
2368   ** SSL authentication process.
2369   */
2370   { "ssl_use_tlsv1", DT_BOOL, R_NONE, OPTTLSV1, 1 },
2371   /*
2372   ** .pp
2373   ** Availability: SSL or NSS or GNUTLS
2374   **
2375   ** .pp
2376   ** This variables specifies whether to attempt to use TLSv1 in the
2377   ** SSL authentication process.
2378   */
2379 #ifdef USE_GNUTLS
2380   { "ssl_min_dh_prime_bits", DT_NUM, R_NONE, UL &SslDHPrimeBits, 0 },
2381   /*
2382   ** .pp
2383   ** Availability: GNUTLS
2384   **
2385   ** .pp
2386   ** This variable specifies the minimum acceptable prime size (in bits)
2387   ** for use in any Diffie-Hellman key exchange. A value of 0 will use
2388   ** the default from the GNUTLS library.
2389   */
2390   { "ssl_ca_certificates_file", DT_PATH, R_NONE, UL &SslCACertFile, 0 },
2391   /*
2392   ** .pp
2393   ** This variable specifies a file containing trusted CA certificates.
2394   ** Any server certificate that is signed with one of these CA
2395   ** certificates are also automatically accepted.
2396   ** .pp
2397   ** Example: set ssl_ca_certificates_file=/etc/ssl/certs/ca-certificates.crt
2398   */
2399 #endif
2400 #endif
2401   { "pipe_split",       DT_BOOL, R_NONE, OPTPIPESPLIT, 0 },
2402   /*
2403   ** .pp
2404   ** Used in connection with the \fIpipe-message\fP command and the ``tag-
2405   ** prefix'' operator.  If this variable is unset, when piping a list of
2406   ** tagged messages Mutt-ng will concatenate the messages and will pipe them
2407   ** as a single folder.  When set, Mutt-ng will pipe the messages one by one.
2408   ** In both cases the messages are piped in the current sorted order,
2409   ** and the ``$$pipe_sep'' separator is added after each message.
2410   */
2411   { "pipe_decode",      DT_BOOL, R_NONE, OPTPIPEDECODE, 0 },
2412   /*
2413   ** .pp
2414   ** Used in connection with the \fIpipe-message\fP command.  When unset,
2415   ** Mutt-ng will pipe the messages without any preprocessing. When set, Mutt-ng
2416   ** will weed headers and will attempt to PGP/MIME decode the messages
2417   ** first.
2418   */
2419   { "pipe_sep",         DT_STR,  R_NONE, UL &PipeSep, UL "\n" },
2420   /*
2421   ** .pp
2422   ** The separator to add between messages when piping a list of tagged
2423   ** messages to an external Unix command.
2424   */
2425 #ifdef USE_POP
2426   { "pop_authenticators", DT_STR, R_NONE, UL &PopAuthenticators, UL 0 },
2427   /*
2428   ** .pp
2429   ** Availability: POP
2430   **
2431   ** .pp
2432   ** This is a colon-delimited list of authentication methods Mutt-ng may
2433   ** attempt to use to log in to an POP server, in the order Mutt-ng should
2434   ** try them.  Authentication methods are either 'user', 'apop' or any
2435   ** SASL mechanism, eg 'digest-md5', 'gssapi' or 'cram-md5'.
2436   ** This parameter is case-insensitive. If this parameter is unset
2437   ** (the default) Mutt-ng will try all available methods, in order from
2438   ** most-secure to least-secure.
2439   ** .pp
2440   ** Example: set pop_authenticators="digest-md5:apop:user"
2441   */
2442   { "pop_auth_try_all", DT_BOOL, R_NONE, OPTPOPAUTHTRYALL, 1 },
2443   /*
2444   ** .pp
2445   ** Availability: POP
2446   **
2447   ** .pp
2448   ** If set, Mutt-ng will try all available methods. When unset, Mutt-ng will
2449   ** only fall back to other authentication methods if the previous
2450   ** methods are unavailable. If a method is available but authentication
2451   ** fails, Mutt-ng will not connect to the POP server.
2452   */
2453   { "pop_checkinterval", DT_NUM, R_NONE, UL &PopCheckTimeout, 60 },
2454   /*
2455   ** .pp
2456   ** Availability: POP
2457   **
2458   ** .pp
2459   ** This variable configures how often (in seconds) POP should look for
2460   ** new mail.
2461   */
2462   { "pop_delete",       DT_QUAD, R_NONE, OPT_POPDELETE, M_ASKNO },
2463   /*
2464   ** .pp
2465   ** Availability: POP
2466   **
2467   ** .pp
2468   ** If set, Mutt-ng will delete successfully downloaded messages from the POP
2469   ** server when using the fetch-mail function.  When unset, Mutt-ng will
2470   ** download messages but also leave them on the POP server.
2471   */
2472   { "pop_host",         DT_STR,  R_NONE, UL &PopHost, UL "" },
2473   /*
2474   ** .pp
2475   ** Availability: POP
2476   **
2477   ** .pp
2478   ** The name of your POP server for the fetch-mail function.  You
2479   ** can also specify an alternative port, username and password, ie:
2480   ** .pp
2481   ** [pop[s]://][username[:password]@]popserver[:port]
2482   */
2483   { "pop_last",         DT_BOOL, R_NONE, OPTPOPLAST, 0 },
2484   /*
2485   ** .pp
2486   ** Availability: POP
2487   **
2488   ** .pp
2489   ** If this variable is set, Mutt-ng will try to use the "LAST" POP command
2490   ** for retrieving only unread messages from the POP server when using
2491   ** the fetch-mail function.
2492   */
2493   { "pop_reconnect",    DT_QUAD, R_NONE, OPT_POPRECONNECT, M_ASKYES },
2494   /*
2495   ** .pp
2496   ** Availability: POP
2497   **
2498   ** .pp
2499   ** Controls whether or not Mutt-ng will try to reconnect to POP server when
2500   ** connection lost.
2501   */
2502   { "pop_user",         DT_STR,  R_NONE, UL &PopUser, 0 },
2503   /*
2504   ** .pp
2505   ** Availability: POP
2506   **
2507   ** .pp
2508   ** Your login name on the POP server.
2509   ** .pp
2510   ** This variable defaults to your user name on the local machine.
2511   */
2512   { "pop_pass",         DT_STR,  R_NONE, UL &PopPass, UL "" },
2513   /*
2514   ** .pp
2515   ** Availability: POP
2516   **
2517   ** .pp
2518   ** Specifies the password for your POP account.  If unset, Mutt-ng will
2519   ** prompt you for your password when you open POP mailbox.
2520   ** \fBWarning\fP: you should only use this option when you are on a
2521   ** fairly secure machine, because the superuser can read your muttngrc
2522   ** even if you are the only one who can read the file.
2523   */
2524 #endif /* USE_POP */
2525   { "post_indent_string",DT_STR, R_NONE, UL &PostIndentString, UL "" },
2526   /*
2527   ** .pp
2528   ** Similar to the ``$$attribution'' variable, Mutt-ng will append this
2529   ** string after the inclusion of a message which is being replied to.
2530   */
2531   { "post_indent_str",  DT_SYN,  R_NONE, UL "post_indent_string", 0 },
2532   /*
2533   */
2534 #ifdef USE_NNTP
2535   { "post_moderated", DT_QUAD, R_NONE, OPT_TOMODERATED, M_ASKYES },
2536   /*
2537   ** .pp
2538   ** Availability: NNTP
2539   **
2540   ** .pp
2541   ** If set to \fIyes\fP, Mutt-ng will post article to newsgroup that have
2542   ** not permissions to posting (e.g. moderated).  \fBNote:\fP if newsserver
2543   ** does not support posting to that newsgroup or totally read-only, that
2544   ** posting will not have an effect.
2545   */
2546 #endif
2547   { "postpone",         DT_QUAD, R_NONE, OPT_POSTPONE, M_ASKYES },
2548   /*
2549   ** .pp
2550   ** Controls whether or not messages are saved in the ``$$postponed''
2551   ** mailbox when you elect not to send immediately.
2552   */
2553   { "postponed",        DT_PATH, R_NONE, UL &Postponed, UL "~/postponed" },
2554   /*
2555   ** .pp
2556   ** Mutt-ng allows you to indefinitely ``$postpone sending a message'' which
2557   ** you are editing.  When you choose to postpone a message, Mutt-ng saves it
2558   ** in the mailbox specified by this variable.  Also see the ``$$postpone''
2559   ** variable.
2560   */
2561 #ifdef USE_SOCKET
2562   { "preconnect",       DT_STR, R_NONE, UL &Preconnect, UL 0},
2563   /*
2564   ** .pp
2565   ** If set, a shell command to be executed if Mutt-ng fails to establish
2566   ** a connection to the server. This is useful for setting up secure
2567   ** connections, e.g. with ssh(1). If the command returns a  nonzero
2568   ** status, Mutt-ng gives up opening the server. Example:
2569   ** .pp
2570   ** preconnect="ssh -f -q -L 1234:mailhost.net:143 mailhost.net
2571   **                   sleep 20 < /dev/null > /dev/null"
2572   ** .pp
2573   ** Mailbox 'foo' on mailhost.net can now be reached
2574   ** as '{localhost:1234}foo'.
2575   ** .pp
2576   ** NOTE: For this example to work, you must be able to log in to the
2577   ** remote machine without having to enter a password.
2578   */
2579 #endif /* USE_SOCKET */
2580   { "print",            DT_QUAD, R_NONE, OPT_PRINT, M_ASKNO },
2581   /*
2582   ** .pp
2583   ** Controls whether or not Mutt-ng really prints messages.
2584   ** This is set to \fIask-no\fP by default, because some people
2585   ** accidentally hit ``p'' often (like me).
2586   */
2587   { "print_command",    DT_PATH, R_NONE, UL &PrintCmd, UL "lpr" },
2588   /*
2589   ** .pp
2590   ** This specifies the command pipe that should be used to print messages.
2591   */
2592   { "print_cmd",        DT_SYN,  R_NONE, UL "print_command", 0 },
2593   /*
2594   */
2595   { "print_decode",     DT_BOOL, R_NONE, OPTPRINTDECODE, 1 },
2596   /*
2597   ** .pp
2598   ** Used in connection with the print-message command.  If this
2599   ** option is set, the message is decoded before it is passed to the
2600   ** external command specified by $$print_command.  If this option
2601   ** is unset, no processing will be applied to the message when
2602   ** printing it.  The latter setting may be useful if you are using
2603   ** some advanced printer filter which is able to properly format
2604   ** e-mail messages for printing.
2605   */
2606   { "print_split",      DT_BOOL, R_NONE, OPTPRINTSPLIT,  0 },
2607   /*
2608   ** .pp
2609   ** Used in connection with the print-message command.  If this option
2610   ** is set, the command specified by $$print_command is executed once for
2611   ** each message which is to be printed.  If this option is unset, 
2612   ** the command specified by $$print_command is executed only once, and
2613   ** all the messages are concatenated, with a form feed as the message
2614   ** separator.
2615   ** .pp
2616   ** Those who use the \fBenscript\fP(1) program's mail-printing mode will
2617   ** most likely want to set this option.
2618   */
2619   { "prompt_after",     DT_BOOL, R_NONE, OPTPROMPTAFTER, 1 },
2620   /*
2621   ** .pp
2622   ** If you use an \fIexternal\fP ``$$pager'', setting this variable will
2623   ** cause Mutt-ng to prompt you for a command when the pager exits rather
2624   ** than returning to the index menu.  If unset, Mutt-ng will return to the
2625   ** index menu when the external pager exits.
2626   */
2627   { "query_command",    DT_PATH, R_NONE, UL &QueryCmd, UL "" },
2628   /*
2629   ** .pp
2630   ** This specifies the command that Mutt-ng will use to make external address
2631   ** queries.  The string should contain a %s, which will be substituted
2632   ** with the query string the user types.  See ``$query'' for more
2633   ** information.
2634   */
2635   { "quit",             DT_QUAD, R_NONE, OPT_QUIT, M_YES },
2636   /*
2637   ** .pp
2638   ** This variable controls whether ``quit'' and ``exit'' actually quit
2639   ** from Mutt-ng.  If it set to yes, they do quit, if it is set to no, they
2640   ** have no effect, and if it is set to ask-yes or ask-no, you are
2641   ** prompted for confirmation when you try to quit.
2642   */
2643   { "quote_empty",      DT_BOOL, R_NONE, OPTQUOTEEMPTY, 1 },
2644   /*
2645   ** .pp
2646   ** Controls whether or not empty lines will be quoted using
2647   ** ``$indent_string''.
2648   */
2649   { "quote_quoted",     DT_BOOL, R_NONE, OPTQUOTEQUOTED, 0 },
2650   /*
2651   ** .pp
2652   ** Controls how quoted lines will be quoted. If set, one quote
2653   ** character will be added to the end of existing prefix.  Otherwise,
2654   ** quoted lines will be prepended by ``$indent_string''.
2655   */
2656   { "quote_regexp",     DT_RX,   R_PAGER, UL &QuoteRegexp, UL "^([ \t]*[|>:}#])+" },
2657   /*
2658   ** .pp
2659   ** A regular expression used in the internal-pager to determine quoted
2660   ** sections of text in the body of a message.
2661   ** .pp
2662   ** \fBNote:\fP In order to use the \fIquoted\fP\fBx\fP patterns in the
2663   ** internal pager, you need to set this to a regular expression that
2664   ** matches \fIexactly\fP the quote characters at the beginning of quoted
2665   ** lines.
2666   */
2667   { "read_inc",         DT_NUM,  R_NONE, UL &ReadInc, 10 },
2668   /*
2669   ** .pp
2670   ** If set to a value greater than 0, Mutt-ng will display which message it
2671   ** is currently on when reading a mailbox.  The message is printed after
2672   ** \fIread_inc\fP messages have been read (e.g., if set to 25, Mutt-ng will
2673   ** print a message when it reads message 25, and then again when it gets
2674   ** to message 50).  This variable is meant to indicate progress when
2675   ** reading large mailboxes which may take some time.
2676   ** When set to 0, only a single message will appear before the reading
2677   ** the mailbox.
2678   ** .pp
2679   ** Also see the ``$$write_inc'' variable.
2680   */
2681   { "read_only",        DT_BOOL, R_NONE, OPTREADONLY, 0 },
2682   /*
2683   ** .pp
2684   ** If set, all folders are opened in read-only mode.
2685   */
2686   { "realname",         DT_STR,  R_BOTH, UL &Realname, 0 },
2687   /*
2688   ** .pp
2689   ** This variable specifies what "real" or "personal" name should be used
2690   ** when sending messages.
2691   ** .pp
2692   ** By default, this is the GECOS field from /etc/passwd.  Note that this
2693   ** variable will \fInot\fP be used when the user has set a real name
2694   ** in the $$from variable.
2695   */
2696   { "recall",           DT_QUAD, R_NONE, OPT_RECALL, M_ASKYES },
2697   /*
2698   ** .pp
2699   ** Controls whether or not Mutt-ng recalls postponed messages
2700   ** when composing a new message.  Also see ``$$postponed''.
2701   ** .pp
2702   ** Setting this variable to ``yes'' is not generally useful, and thus not
2703   ** recommended.
2704   */
2705   { "record",           DT_PATH, R_NONE, UL &Outbox, UL "" },
2706   /*
2707   ** .pp
2708   ** This specifies the file into which your outgoing messages should be
2709   ** appended.  (This is meant as the primary method for saving a copy of
2710   ** your messages, but another way to do this is using the ``$my_hdr''
2711   ** command to create a \fIBcc:\fP field with your email address in it.)
2712   ** .pp
2713   ** The value of \fI$$record\fP is overridden by the ``$$force_name'' and
2714   ** ``$$save_name'' variables, and the ``$fcc-hook'' command.
2715   */
2716   { "reply_regexp",     DT_RX,   R_INDEX|R_RESORT, UL &ReplyRegexp, UL "^(re([\\[0-9\\]+])*|aw):[ \t]*" },
2717   /*
2718   ** .pp
2719   ** A regular expression used to recognize reply messages when threading
2720   ** and replying. The default value corresponds to the English "Re:" and
2721   ** the German "Aw:".
2722   */
2723   { "reply_self",       DT_BOOL, R_NONE, OPTREPLYSELF, 0 },
2724   /*
2725   ** .pp
2726   ** If unset and you are replying to a message sent by you, Mutt-ng will
2727   ** assume that you want to reply to the recipients of that message rather
2728   ** than to yourself.
2729   */
2730   { "reply_to",         DT_QUAD, R_NONE, OPT_REPLYTO, M_ASKYES },
2731   /*
2732   ** .pp
2733   ** If set, when replying to a message, Mutt-ng will use the address listed
2734   ** in the Reply-to: header as the recipient of the reply.  If unset,
2735   ** it will use the address in the From: header field instead.  This
2736   ** option is useful for reading a mailing list that sets the Reply-To:
2737   ** header field to the list address and you want to send a private
2738   ** message to the author of a message.
2739   */
2740   { "resolve",          DT_BOOL, R_NONE, OPTRESOLVE, 1 },
2741   /*
2742   ** .pp
2743   ** When set, the cursor will be automatically advanced to the next
2744   ** (possibly undeleted) message whenever a command that modifies the
2745   ** current message is executed.
2746   */
2747   { "reverse_alias",    DT_BOOL, R_BOTH, OPTREVALIAS, 0 },
2748   /*
2749   ** .pp
2750   ** This variable controls whether or not Mutt-ng will display the "personal"
2751   ** name from your aliases in the index menu if it finds an alias that
2752   ** matches the message's sender.  For example, if you have the following
2753   ** alias:
2754   ** .pp
2755   ** .ts
2756   **  alias juser abd30425@somewhere.net (Joe User)
2757   ** .te
2758   ** .pp
2759   ** and then you receive mail which contains the following header:
2760   ** .pp
2761   ** .ts
2762   **  From: abd30425@somewhere.net
2763   ** .te
2764   ** .pp
2765   ** It would be displayed in the index menu as ``Joe User'' instead of
2766   ** ``abd30425@somewhere.net.''  This is useful when the person's e-mail
2767   ** address is not human friendly (like CompuServe addresses).
2768   */
2769   { "reverse_name",     DT_BOOL, R_BOTH, OPTREVNAME, 0 },
2770   /*
2771   ** .pp
2772   ** It may sometimes arrive that you receive mail to a certain machine,
2773   ** move the messages to another machine, and reply to some the messages
2774   ** from there.  If this variable is set, the default \fIFrom:\fP line of
2775   ** the reply messages is built using the address where you received the
2776   ** messages you are replying to \fBif\fP that address matches your
2777   ** alternates.  If the variable is unset, or the address that would be
2778   ** used doesn't match your alternates, the \fIFrom:\fP line will use
2779   ** your address on the current machine.
2780   */
2781   { "reverse_realname", DT_BOOL, R_BOTH, OPTREVREAL, 1 },
2782   /*
2783   ** .pp
2784   ** This variable fine-tunes the behaviour of the $reverse_name feature.
2785   ** When it is set, Mutt-ng will use the address from incoming messages as-is,
2786   ** possibly including eventual real names.  When it is unset, Mutt-ng will
2787   ** override any such real names with the setting of the $realname variable.
2788   */
2789   { "rfc2047_parameters", DT_BOOL, R_NONE, OPTRFC2047PARAMS, 0 },
2790   /*
2791   ** .pp
2792   ** When this variable is set, Mutt-ng will decode RFC-2047-encoded MIME 
2793   ** parameters. You want to set this variable when Mutt-ng suggests you
2794   ** to save attachments to files named like this: 
2795   ** =?iso-8859-1?Q?file=5F=E4=5F991116=2Ezip?=
2796   ** .pp
2797   ** When this variable is set interactively, the change doesn't have
2798   ** the desired effect before you have changed folders.
2799   ** .pp
2800   ** Note that this use of RFC 2047's encoding is explicitly,
2801   ** prohibited by the standard, but nevertheless encountered in the
2802   ** wild.
2803   ** Also note that setting this parameter will \fInot\fP have the effect 
2804   ** that Mutt-ng \fIgenerates\fP this kind of encoding.  Instead, Mutt-ng will
2805   ** unconditionally use the encoding specified in RFC 2231.
2806   */
2807   { "save_address",     DT_BOOL, R_NONE, OPTSAVEADDRESS, 0 },
2808   /*
2809   ** .pp
2810   ** If set, Mutt-ng will take the sender's full address when choosing a
2811   ** default folder for saving a mail. If ``$$save_name'' or ``$$force_name''
2812   ** is set too, the selection of the fcc folder will be changed as well.
2813   */
2814   { "save_empty",       DT_BOOL, R_NONE, OPTSAVEEMPTY, 1 },
2815   /*
2816   ** .pp
2817   ** When unset, mailboxes which contain no saved messages will be removed
2818   ** when closed (the exception is ``$$spoolfile'' which is never removed).
2819   ** If set, mailboxes are never removed.
2820   ** .pp
2821   ** \fBNote:\fP This only applies to mbox and MMDF folders, Mutt-ng does not
2822   ** delete MH and Maildir directories.
2823   */
2824   { "save_name",        DT_BOOL, R_NONE, OPTSAVENAME, 0 },
2825   /*
2826   ** .pp
2827   ** This variable controls how copies of outgoing messages are saved.
2828   ** When set, a check is made to see if a mailbox specified by the
2829   ** recipient address exists (this is done by searching for a mailbox in
2830   ** the ``$$folder'' directory with the \fIusername\fP part of the
2831   ** recipient address).  If the mailbox exists, the outgoing message will
2832   ** be saved to that mailbox, otherwise the message is saved to the
2833   ** ``$$record'' mailbox.
2834   ** .pp
2835   ** Also see the ``$$force_name'' variable.
2836   */
2837   { "score",            DT_BOOL, R_NONE, OPTSCORE, 1 },
2838   /*
2839   ** .pp
2840   ** When this variable is \fIunset\fP, scoring is turned off.  This can
2841   ** be useful to selectively disable scoring for certain folders when the
2842   ** ``$$score_threshold_delete'' variable and friends are used.
2843   **
2844   */
2845   { "score_threshold_delete", DT_NUM, R_NONE, UL &ScoreThresholdDelete, UL -1 },
2846   /*
2847   ** .pp
2848   ** Messages which have been assigned a score equal to or lower than the value
2849   ** of this variable are automatically marked for deletion by Mutt-ng.  Since
2850   ** Mutt-ng scores are always greater than or equal to zero, the default setting
2851   ** of this variable will never mark a message for deletion.
2852   */
2853   { "score_threshold_flag", DT_NUM, R_NONE, UL &ScoreThresholdFlag, 9999 },
2854   /* 
2855   ** .pp
2856   ** Messages which have been assigned a score greater than or equal to this 
2857   ** variable's value are automatically marked "flagged".
2858   */
2859   { "score_threshold_read", DT_NUM, R_NONE, UL &ScoreThresholdRead, UL -1 },
2860   /*
2861   ** .pp
2862   ** Messages which have been assigned a score equal to or lower than the value
2863   ** of this variable are automatically marked as read by Mutt-ng.  Since
2864   ** Mutt-ng scores are always greater than or equal to zero, the default setting
2865   ** of this variable will never mark a message read.
2866   */
2867   { "send_charset",     DT_STR,  R_NONE, UL &SendCharset, UL "us-ascii:iso-8859-1:utf-8" },
2868   /*
2869   ** .pp
2870   ** A list of character sets for outgoing messages. Mutt-ng will use the
2871   ** first character set into which the text can be converted exactly.
2872   ** If your ``$$charset'' is not iso-8859-1 and recipients may not
2873   ** understand UTF-8, it is advisable to include in the list an
2874   ** appropriate widely used standard character set (such as
2875   ** iso-8859-2, koi8-r or iso-2022-jp) either instead of or after
2876   ** "iso-8859-1".
2877   */
2878   { "sendmail",         DT_PATH, R_NONE, UL &Sendmail, UL SENDMAIL " -oem -oi" },
2879   /*
2880   ** .pp
2881   ** Specifies the program and arguments used to deliver mail sent by Mutt-ng.
2882   ** Mutt-ng expects that the specified program interprets additional
2883   ** arguments as recipient addresses.
2884   */
2885   { "sendmail_wait",    DT_NUM,  R_NONE, UL &SendmailWait, 0 },
2886   /*
2887   ** .pp
2888   ** Specifies the number of seconds to wait for the ``$$sendmail'' process
2889   ** to finish before giving up and putting delivery in the background.
2890   ** .pp
2891   ** Mutt-ng interprets the value of this variable as follows:
2892   ** .dl
2893   ** .dt >0 .dd number of seconds to wait for sendmail to finish before continuing
2894   ** .dt 0  .dd wait forever for sendmail to finish
2895   ** .dt <0 .dd always put sendmail in the background without waiting
2896   ** .de
2897   ** .pp
2898   ** Note that if you specify a value other than 0, the output of the child
2899   ** process will be put in a temporary file.  If there is some error, you
2900   ** will be informed as to where to find the output.
2901   */
2902   { "shell",            DT_PATH, R_NONE, UL &Shell, 0 },
2903   /*
2904   ** .pp
2905   ** Command to use when spawning a subshell.  By default, the user's login
2906   ** shell from /etc/passwd is used.
2907   */
2908 #ifdef USE_NNTP
2909   { "save_unsubscribed",DT_BOOL, R_NONE, OPTSAVEUNSUB, 0 },
2910   /*
2911   ** .pp
2912   ** Availability: NNTP
2913   **
2914   ** .pp
2915   ** When \fIset\fP, info about unsubscribed newsgroups will be saved into
2916   ** ``newsrc'' file and into cache.
2917   */
2918 #endif
2919   { "shorten_hierarchy", DT_BOOL, R_NONE, OPTSHORTENHIERARCHY, 0 },
2920   /*
2921   ** .pp
2922   ** When \fIset\fP, the "hierarchy" of the sidebar entries will be shortened
2923   ** only if they cannot be printed in full length (because ``$$sidebar_width''
2924   ** is set to a too low value). For example, if the newsgroup name 
2925   ** ``de.alt.sysadmin.recovery'' doesn't fit on the screen, it'll get shortened
2926   ** ``d.a.s.recovery'' while ``de.alt.d0'' still would and thus will not get 
2927   ** shortened.
2928   */
2929 #ifdef USE_NNTP
2930   { "show_new_news",  DT_BOOL, R_NONE, OPTSHOWNEWNEWS, 1 },
2931   /*
2932   ** .pp
2933   ** Availability: NNTP
2934   **
2935   ** .pp
2936   ** If \fIset\fP, newsserver will be asked for new newsgroups on entering
2937   ** the browser.  Otherwise, it will be done only once for a newsserver.
2938   ** Also controls whether or not number of new articles of subscribed
2939   ** newsgroups will be then checked.
2940   */
2941   { "show_only_unread",  DT_BOOL, R_NONE, OPTSHOWONLYUNREAD, 0 },
2942   /*
2943   ** .pp
2944   ** Availability: NNTP
2945   **
2946   ** .pp
2947   ** If \fIset\fP, only subscribed newsgroups that contain unread articles
2948   ** will be displayed in browser.
2949   */
2950 #endif
2951   { "sig_dashes",       DT_BOOL, R_NONE, OPTSIGDASHES, 1 },
2952   /*
2953   ** .pp
2954   ** If set, a line containing ``-- '' will be inserted before your
2955   ** ``$$signature''.  It is \fBstrongly\fP recommended that you not unset
2956   ** this variable unless your ``signature'' contains just your name.  The
2957   ** reason for this is because many software packages use ``-- \n'' to
2958   ** detect your signature.  For example, Mutt-ng has the ability to highlight
2959   ** the signature in a different color in the builtin pager.
2960   */
2961   { "sig_on_top",       DT_BOOL, R_NONE, OPTSIGONTOP, 0},
2962   /*
2963   ** .pp
2964   ** If set, the signature will be included before any quoted or forwarded
2965   ** text.  It is \fBstrongly\fP recommended that you do not set this variable
2966   ** unless you really know what you are doing, and are prepared to take
2967   ** some heat from netiquette guardians.
2968   */
2969   { "signature",        DT_PATH, R_NONE, UL &Signature, UL "~/.signature" },
2970   /*
2971   ** .pp
2972   ** Specifies the filename of your signature, which is appended to all
2973   ** outgoing messages.   If the filename ends with a pipe (``|''), it is
2974   ** assumed that filename is a shell command and input should be read from
2975   ** its stdout.
2976   */
2977   { "signoff_string",   DT_STR, R_NONE, UL &SignOffString, UL 0 },
2978   /*
2979   ** .pp
2980   ** If set, this string will be inserted before the signature. This is useful
2981   ** for people that want to sign off every message they send with their name.
2982   ** .pp
2983   ** If you want to insert your website's URL, additional contact information or 
2984   ** witty quotes into your mails, better use a signature file instead of
2985   ** the signoff string.
2986   */
2987   { "simple_search",    DT_STR,  R_NONE, UL &SimpleSearch, UL "~f %s | ~s %s" },
2988   /*
2989   ** .pp
2990   ** Specifies how Mutt-ng should expand a simple search into a real search
2991   ** pattern.  A simple search is one that does not contain any of the ~
2992   ** operators.  See ``$patterns'' for more information on search patterns.
2993   ** .pp
2994   ** For example, if you simply type joe at a search or limit prompt, Mutt-ng
2995   ** will automatically expand it to the value specified by this variable.
2996   ** For the default value it would be:
2997   ** .pp
2998   ** ~f joe | ~s joe
2999   */
3000   { "smart_wrap",       DT_BOOL, R_PAGER, OPTWRAP, 1 },
3001   /*
3002   ** .pp
3003   ** Controls the display of lines longer than the screen width in the
3004   ** internal pager. If set, long lines are wrapped at a word boundary.  If
3005   ** unset, lines are simply wrapped at the screen edge. Also see the
3006   ** ``$$markers'' variable.
3007   */
3008   { "smileys",          DT_RX,   R_PAGER, UL &Smileys, UL "(>From )|(:[-^]?[][)(><}{|/DP])" },
3009   /*
3010   ** .pp
3011   ** The \fIpager\fP uses this variable to catch some common false
3012   ** positives of ``$$quote_regexp'', most notably smileys in the beginning
3013   ** of a line
3014   */
3015   { "sleep_time",       DT_NUM, R_NONE, UL &SleepTime, 1 },
3016   /*
3017   ** .pp
3018   ** Specifies time, in seconds, to pause while displaying certain informational
3019   ** messages, while moving from folder to folder and after expunging
3020   ** messages from the current folder.  The default is to pause one second, so 
3021   ** a value of zero for this option suppresses the pause.
3022   */
3023   { "sort",             DT_SORT, R_INDEX|R_RESORT, UL &Sort, SORT_DATE },
3024   /*
3025   ** .pp
3026   ** Specifies how to sort messages in the \fIindex\fP menu.  Valid values
3027   ** are:
3028   ** .pp
3029   ** .ts
3030   ** .  date or date-sent
3031   ** .  date-received
3032   ** .  from
3033   ** .  mailbox-order (unsorted)
3034   ** .  score
3035   ** .  size
3036   ** .  spam
3037   ** .  subject
3038   ** .  threads
3039   ** .  to
3040   ** .te
3041   ** .pp
3042   ** You may optionally use the reverse- prefix to specify reverse sorting
3043   ** order (example: set sort=reverse-date-sent).
3044   */
3045   { "sort_alias",       DT_SORT|DT_SORT_ALIAS,  R_NONE, UL &SortAlias, SORT_ALIAS },
3046   /*
3047   ** .pp
3048   ** Specifies how the entries in the `alias' menu are sorted.  The
3049   ** following are legal values:
3050   ** .pp
3051   ** .ts
3052   ** .  address (sort alphabetically by email address)
3053   ** .  alias (sort alphabetically by alias name)
3054   ** .  unsorted (leave in order specified in .muttrc)
3055   ** .te
3056   */
3057   { "sort_aux",         DT_SORT|DT_SORT_AUX, R_INDEX|R_RESORT_BOTH, UL &SortAux, SORT_DATE },
3058   /*
3059   ** .pp
3060   ** When sorting by threads, this variable controls how threads are sorted
3061   ** in relation to other threads, and how the branches of the thread trees
3062   ** are sorted.  This can be set to any value that ``$$sort'' can, except
3063   ** threads (in that case, Mutt-ng will just use date-sent).  You can also
3064   ** specify the last- prefix in addition to the reverse- prefix, but last-
3065   ** must come after reverse-.  The last- prefix causes messages to be
3066   ** sorted against its siblings by which has the last descendant, using
3067   ** the rest of sort_aux as an ordering.  For instance, set sort_aux=last-
3068   ** date-received would mean that if a new message is received in a
3069   ** thread, that thread becomes the last one displayed (or the first, if
3070   ** you have set sort=reverse-threads.) Note: For reversed ``$$sort''
3071   ** order $$sort_aux is reversed again (which is not the right thing to do,
3072   ** but kept to not break any existing configuration setting).
3073   */
3074   { "sort_browser",     DT_SORT|DT_SORT_BROWSER, R_NONE, UL &BrowserSort, SORT_ALPHA },
3075   /*
3076   ** .pp
3077   ** Specifies how to sort entries in the file browser.  By default, the
3078   ** entries are sorted alphabetically.  Valid values:
3079   ** .pp
3080   ** .ts
3081   ** .  alpha (alphabetically)
3082   ** .  date
3083   ** .  size
3084   ** .  unsorted
3085   ** .te
3086   ** .pp
3087   ** You may optionally use the reverse- prefix to specify reverse sorting
3088   ** order (example: set sort_browser=reverse-date).
3089   */
3090   { "sort_re",          DT_BOOL, R_INDEX|R_RESORT|R_RESORT_INIT, OPTSORTRE, 1 },
3091   /*
3092   ** .pp
3093   ** This variable is only useful when sorting by threads with
3094   ** ``$$strict_threads'' unset.  In that case, it changes the heuristic
3095   ** Mutt-ng uses to thread messages by subject.  With sort_re set, Mutt-ng will
3096   ** only attach a message as the child of another message by subject if
3097   ** the subject of the child message starts with a substring matching the
3098   ** setting of ``$$reply_regexp''.  With sort_re unset, Mutt-ng will attach
3099   ** the message whether or not this is the case, as long as the
3100   ** non-``$$reply_regexp'' parts of both messages are identical.
3101   */
3102   { "spam_separator",   DT_STR, R_NONE, UL &SpamSep, UL "," },
3103   /*
3104   ** .pp
3105   ** ``$spam_separator'' controls what happens when multiple spam headers
3106   ** are matched: if unset, each successive header will overwrite any
3107   ** previous matches value for the spam label. If set, each successive
3108   ** match will append to the previous, using ``$spam_separator'' as a
3109   ** separator.
3110   */
3111   { "spoolfile",        DT_PATH, R_NONE, UL &Spoolfile, 0 },
3112   /*
3113   ** .pp
3114   ** If your spool mailbox is in a non-default place where Mutt-ng cannot find
3115   ** it, you can specify its location with this variable.  Mutt-ng will
3116   ** automatically set this variable to the value of the environment
3117   ** variable $$$MAIL if it is not set.
3118   */
3119   { "status_chars",     DT_STR,  R_BOTH, UL &StChars, UL "-*%A" },
3120   /*
3121   ** .pp
3122   ** Controls the characters used by the "%r" indicator in
3123   ** ``$$status_format''. The first character is used when the mailbox is
3124   ** unchanged. The second is used when the mailbox has been changed, and
3125   ** it needs to be resynchronized. The third is used if the mailbox is in
3126   ** read-only mode, or if the mailbox will not be written when exiting
3127   ** that mailbox (You can toggle whether to write changes to a mailbox
3128   ** with the toggle-write operation, bound by default to "%"). The fourth
3129   ** is used to indicate that the current folder has been opened in attach-
3130   ** message mode (Certain operations like composing a new mail, replying,
3131   ** forwarding, etc. are not permitted in this mode).
3132   */
3133   { "status_format",    DT_STR,  R_BOTH, UL &Status, UL "-%r-Mutt-ng: %f [Msgs:%?M?%M/?%m%?n? New:%n?%?o? Old:%o?%?d? Del:%d?%?F? Flag:%F?%?t? Tag:%t?%?p? Post:%p?%?b? Inc:%b?%?l? %l?]---(%s/%S)-%>-(%P)---" },
3134   /*
3135   ** .pp
3136   ** Controls the format of the status line displayed in the \fIindex\fP
3137   ** menu.  This string is similar to ``$$index_format'', but has its own
3138   ** set of printf()-like sequences:
3139   ** .pp
3140   ** .dl
3141   ** .dt %b  .dd number of mailboxes with new mail *
3142   ** .dt %B  .dd the short pathname of the current mailbox
3143   ** .dt %d  .dd number of deleted messages *
3144   ** .dt %f  .dd the full pathname of the current mailbox
3145   ** .dt %F  .dd number of flagged messages *
3146   ** .dt %h  .dd local hostname
3147   ** .dt %l  .dd size (in bytes) of the current mailbox *
3148   ** .dt %L  .dd size (in bytes) of the messages shown 
3149   **             (i.e., which match the current limit) *
3150   ** .dt %m  .dd the number of messages in the mailbox *
3151   ** .dt %M  .dd the number of messages shown (i.e., which match the current limit) *
3152   ** .dt %n  .dd number of new messages in the mailbox *
3153   ** .dt %o  .dd number of old unread messages *
3154   ** .dt %p  .dd number of postponed messages *
3155   ** .dt %P  .dd percentage of the way through the index
3156   ** .dt %r  .dd modified/read-only/won't-write/attach-message indicator,
3157   **             according to $$status_chars
3158   ** .dt %s  .dd current sorting mode ($$sort)
3159   ** .dt %S  .dd current aux sorting method ($$sort_aux)
3160   ** .dt %t  .dd number of tagged messages *
3161   ** .dt %u  .dd number of unread messages *
3162   ** .dt %v  .dd Mutt-ng version string
3163   ** .dt %V  .dd currently active limit pattern, if any *
3164   ** .dt %>X .dd right justify the rest of the string and pad with "X"
3165   ** .dt %|X .dd pad to the end of the line with "X"
3166   ** .de
3167   ** .pp
3168   ** * = can be optionally printed if nonzero
3169   ** .pp
3170   ** Some of the above sequences can be used to optionally print a string
3171   ** if their value is nonzero.  For example, you may only want to see the
3172   ** number of flagged messages if such messages exist, since zero is not
3173   ** particularly meaningful.  To optionally print a string based upon one
3174   ** of the above sequences, the following construct is used
3175   ** .pp
3176   **  %?<sequence_char>?<optional_string>?
3177   ** .pp
3178   ** where \fIsequence_char\fP is a character from the table above, and
3179   ** \fIoptional_string\fP is the string you would like printed if
3180   ** \fIsequence_char\fP is nonzero.  \fIoptional_string\fP \fBmay\fP contain
3181   ** other sequences as well as normal text, but you may \fBnot\fP nest
3182   ** optional strings.
3183   ** .pp
3184   ** Here is an example illustrating how to optionally print the number of
3185   ** new messages in a mailbox:
3186   ** %?n?%n new messages.?
3187   ** .pp
3188   ** Additionally you can switch between two strings, the first one, if a
3189   ** value is zero, the second one, if the value is nonzero, by using the
3190   ** following construct:
3191   ** %?<sequence_char>?<if_string>&<else_string>?
3192   ** .pp
3193   ** You can additionally force the result of any printf-like sequence to
3194   ** be lowercase by prefixing the sequence character with an underscore
3195   ** (_) sign.  For example, if you want to display the local hostname in
3196   ** lowercase, you would use:
3197   ** %_h
3198   ** .pp
3199   ** If you prefix the sequence character with a colon (:) character, Mutt-ng
3200   ** will replace any dots in the expansion by underscores. This might be helpful 
3201   ** with IMAP folders that don't like dots in folder names.
3202   */
3203   { "status_on_top",    DT_BOOL, R_BOTH, OPTSTATUSONTOP, 0 },
3204   /*
3205   ** .pp
3206   ** Setting this variable causes the ``status bar'' to be displayed on
3207   ** the first line of the screen rather than near the bottom.
3208   */
3209   { "strict_mime",    DT_BOOL, R_NONE, OPTSTRICTMIME, 1 },
3210   /*
3211   ** .pp
3212   ** When unset, non MIME-compliant messages that doesn't have any
3213   ** charset indication in ``Content-Type'' field can be displayed
3214   ** (non MIME-compliant messages are often generated by old mailers
3215   ** or buggy mailers like MS Outlook Express).
3216   ** See also $$assumed_charset.
3217   ** .pp
3218   ** This option also replaces linear-white-space between encoded-word
3219   ** and *text to a single space to prevent the display of MIME-encoded
3220   ** ``Subject'' field from being devided into multiple lines.
3221   */
3222   { "strict_threads",   DT_BOOL, R_RESORT|R_RESORT_INIT|R_INDEX, OPTSTRICTTHREADS, 0 },
3223   /*
3224   ** .pp
3225   ** If set, threading will only make use of the ``In-Reply-To'' and
3226   ** ``References'' fields when you ``$$sort'' by message threads.  By
3227   ** default, messages with the same subject are grouped together in
3228   ** ``pseudo threads.''  This may not always be desirable, such as in a
3229   ** personal mailbox where you might have several unrelated messages with
3230   ** the subject ``hi'' which will get grouped together.
3231   */
3232   { "strip_was",        DT_BOOL, R_NONE, OPTSTRIPWAS,   0 },
3233   /**
3234   ** .pp
3235   ** When \fIset\fP, mutt-ng will remove the trailing part of the ``Subject''
3236   ** line which matches $$strip_was_regex when replying.
3237   **/
3238   { "strip_was_regex",  DT_RX,   R_NONE, UL &StripWasRegexp, UL "\\([Ww][Aa][RrSs]: .*\\)[ ]*$" },
3239   /**
3240   ** .pp
3241   ** When non-empty and $$strip_was is \fIset\fP, mutt-ng will remove this
3242   ** trailing part of the ``Subject'' line when replying if it won't be empty
3243   ** afterwards.
3244   **/
3245   { "stuff_quoted",     DT_BOOL, R_BOTH, OPTSTUFFQUOTED, 0 },
3246   /*
3247   ** .pp
3248   ** If set, attachments with flowed format will have their quoting ``stuffed'',
3249   ** i.e. a space will be inserted between the quote characters and the actual
3250   ** text.
3251   */
3252   { "suspend",          DT_BOOL, R_NONE, OPTSUSPEND, 1 },
3253   /*
3254   ** .pp
3255   ** When \fIunset\fP, Mutt-ng won't stop when the user presses the terminal's
3256   ** \fIsusp\fP key, usually ``control-Z''. This is useful if you run Mutt-ng
3257   ** inside an xterm using a command like xterm -e Mutt-ng.
3258   */
3259   { "text_flowed",      DT_BOOL, R_NONE, OPTTEXTFLOWED,  0 },
3260   /*
3261   ** .pp
3262   ** When set, Mutt-ng will generate text/plain; format=flowed attachments.
3263   ** This format is easier to handle for some mailing software, and generally
3264   ** just looks like ordinary text.  To actually make use of this format's 
3265   ** features, you'll need support in your editor.
3266   ** .pp
3267   ** Note that $$indent_string is ignored when this option is set.
3268   */
3269   { "thread_received",  DT_BOOL, R_RESORT|R_RESORT_INIT|R_INDEX, OPTTHREADRECEIVED, 0 },
3270   /*
3271   ** .pp
3272   ** When set, Mutt-ng uses the date received rather than the date sent
3273   ** to thread messages by subject.
3274   */
3275   { "thorough_search",  DT_BOOL, R_NONE, OPTTHOROUGHSRC, 0 },
3276   /*
3277   ** .pp
3278   ** Affects the \fI~b\fP and \fI~h\fP search operations described in
3279   ** section ``$patterns'' above.  If set, the headers and attachments of
3280   ** messages to be searched are decoded before searching.  If unset,
3281   ** messages are searched as they appear in the folder.
3282   */
3283   { "tilde",            DT_BOOL, R_PAGER, OPTTILDE, 0 },
3284   /*
3285   ** .pp
3286   ** When set, the internal-pager will pad blank lines to the bottom of the
3287   ** screen with a tilde (~).
3288   */
3289   { "timeout",          DT_NUM,  R_NONE, UL &Timeout, 600 },
3290   /*
3291   ** .pp
3292   ** This variable controls the \fInumber of seconds\fP Mutt-ng will wait
3293   ** for a key to be pressed in the main menu before timing out and
3294   ** checking for new mail.  A value of zero or less will cause Mutt-ng
3295   ** to never time out.
3296   */
3297   { "tmpdir",           DT_PATH, R_NONE, UL &Tempdir, 0 },
3298   /*
3299   ** .pp
3300   ** This variable allows you to specify where Mutt-ng will place its
3301   ** temporary files needed for displaying and composing messages.  If
3302   ** this variable is not set, the environment variable TMPDIR is
3303   ** used.  If TMPDIR is not set then "/tmp" is used.
3304   */
3305   { "to_chars",         DT_STR,  R_BOTH, UL &Tochars, UL " +TCFL" },
3306   /*
3307   ** .pp
3308   ** Controls the character used to indicate mail addressed to you.  The
3309   ** first character is the one used when the mail is NOT addressed to your
3310   ** address (default: space).  The second is used when you are the only
3311   ** recipient of the message (default: +).  The third is when your address
3312   ** appears in the TO header field, but you are not the only recipient of
3313   ** the message (default: T).  The fourth character is used when your
3314   ** address is specified in the CC header field, but you are not the only
3315   ** recipient.  The fifth character is used to indicate mail that was sent
3316   ** by \fIyou\fP.  The sixth character is used to indicate when a mail
3317   ** was sent to a mailing-list you subscribe to (default: L).
3318   */
3319   { "trash",            DT_PATH, R_NONE, UL &TrashPath, 0 },
3320   /*
3321   ** .pp
3322   ** If set, this variable specifies the path of the trash folder where the
3323   ** mails marked for deletion will be moved, instead of being irremediably
3324   ** purged.
3325   ** .pp
3326   ** NOTE: When you delete a message in the trash folder, it is really
3327   ** deleted, so that there is no way to recover mail.
3328   */
3329 #ifdef USE_SOCKET
3330   { "tunnel",            DT_STR, R_NONE, UL &Tunnel, UL 0 },
3331   /*
3332   ** .pp
3333   ** Setting this variable will cause Mutt-ng to open a pipe to a command
3334   ** instead of a raw socket. You may be able to use this to set up
3335   ** preauthenticated connections to your IMAP/POP3 server. Example:
3336   ** .pp
3337   ** tunnel="ssh -q mailhost.net /usr/local/libexec/imapd"
3338   ** .pp
3339   ** NOTE: For this example to work you must be able to log in to the remote
3340   ** machine without having to enter a password.
3341   */
3342 #endif
3343   { "umask",    DT_NUM, R_NONE, UL &Umask, 0077 },
3344   /*
3345   ** .pp
3346   ** This sets the umask that will be used by Mutt-ng when creating all
3347   ** kinds of files. If unset, the default value is 077.
3348   */
3349   { "use_8bitmime",     DT_BOOL, R_NONE, OPTUSE8BITMIME, 0 },
3350   /*
3351   ** .pp
3352   ** \fBWarning:\fP do not set this variable unless you are using a version
3353   ** of sendmail which supports the -B8BITMIME flag (such as sendmail
3354   ** 8.8.x) or you may not be able to send mail.
3355   ** .pp
3356   ** When \fIset\fP, Mutt-ng will invoke ``$$sendmail'' with the -B8BITMIME
3357   ** flag when sending 8-bit messages to enable ESMTP negotiation.
3358   */
3359   { "use_domain",       DT_BOOL, R_NONE, OPTUSEDOMAIN, 1 },
3360   /*
3361   ** .pp
3362   ** When set, Mutt-ng will qualify all local addresses (ones without the
3363   ** @host portion) with the value of ``$$hostname''.  If \fIunset\fP, no
3364   ** addresses will be qualified.
3365   */
3366   { "use_from",         DT_BOOL, R_NONE, OPTUSEFROM, 1 },
3367   /*
3368   ** .pp
3369   ** When \fIset\fP, Mutt-ng will generate the `From:' header field when
3370   ** sending messages.  If \fIunset\fP, no `From:' header field will be
3371   ** generated unless the user explicitly sets one using the ``$my_hdr''
3372   ** command.
3373   */
3374 #ifdef HAVE_LIBIDN
3375   { "use_idn",          DT_BOOL, R_BOTH, OPTUSEIDN, 1},
3376   /*
3377   ** .pp
3378   ** Availability: IDN
3379   **
3380   ** .pp
3381   ** When \fIset\fP, Mutt-ng will show you international domain names decoded.
3382   ** Note: You can use IDNs for addresses even if this is \fIunset\fP.
3383   ** This variable only affects decoding.
3384   */
3385 #endif /* HAVE_LIBIDN */
3386 #ifdef HAVE_GETADDRINFO
3387   { "use_ipv6",         DT_BOOL, R_NONE, OPTUSEIPV6, 1},
3388   /*
3389   ** .pp
3390   ** When \fIset\fP, Mutt-ng will look for IPv6 addresses of hosts it tries to
3391   ** contact.  If this option is unset, Mutt-ng will restrict itself to IPv4 addresses.
3392   ** Normally, the default should work.
3393   */
3394 #endif /* HAVE_GETADDRINFO */
3395   { "user_agent",       DT_BOOL, R_NONE, OPTXMAILER, 1},
3396   /*
3397   ** .pp
3398   ** When \fIset\fP, Mutt-ng will add a "User-Agent" header to outgoing
3399   ** messages, indicating which version of Mutt-ng was used for composing
3400   ** them.
3401   */
3402   { "visual",           DT_PATH, R_NONE, UL &Visual, 0 },
3403   /*
3404   ** .pp
3405   ** Specifies the visual editor to invoke when the \fI~v\fP command is
3406   ** given in the builtin editor.
3407   */
3408   { "wait_key",         DT_BOOL, R_NONE, OPTWAITKEY, 1 },
3409   /*
3410   ** .pp
3411   ** Controls whether Mutt-ng will ask you to press a key after \fIshell-
3412   ** escape\fP, \fIpipe-message\fP, \fIpipe-entry\fP, \fIprint-message\fP,
3413   ** and \fIprint-entry\fP commands.
3414   ** .pp
3415   ** It is also used when viewing attachments with ``$auto_view'', provided
3416   ** that the corresponding mailcap entry has a \fIneedsterminal\fP flag,
3417   ** and the external program is interactive.
3418   ** .pp
3419   ** When set, Mutt-ng will always ask for a key. When unset, Mutt-ng will wait
3420   ** for a key only if the external command returned a non-zero status.
3421   */
3422   { "weed",             DT_BOOL, R_NONE, OPTWEED, 1 },
3423   /*
3424   ** .pp
3425   ** When set, Mutt-ng will weed headers when displaying, forwarding,
3426   ** printing, or replying to messages.
3427   */
3428   { "wrap_search",      DT_BOOL, R_NONE, OPTWRAPSEARCH, 1 },
3429   /*
3430   ** .pp
3431   ** Controls whether searches wrap around the end of the mailbox.
3432   ** .pp
3433   ** When set, searches will wrap around the first (or last) message. When
3434   ** unset, searches will not wrap.
3435   */
3436   { "wrapmargin",       DT_NUM,  R_PAGER, UL &WrapMargin, 0 },
3437   /*
3438   ** .pp
3439   ** Controls the size of the margin remaining at the right side of
3440   ** the terminal when Mutt-ng's pager does smart wrapping.
3441   */
3442   { "write_inc",        DT_NUM,  R_NONE, UL &WriteInc, 10 },
3443   /*
3444   ** .pp
3445   ** When writing a mailbox, a message will be printed every
3446   ** \fIwrite_inc\fP messages to indicate progress.  If set to 0, only a
3447   ** single message will be displayed before writing a mailbox.
3448   ** .pp
3449   ** Also see the ``$$read_inc'' variable.
3450   */
3451   { "write_bcc",        DT_BOOL, R_NONE, OPTWRITEBCC, 1},
3452   /*
3453   ** .pp
3454   ** Controls whether Mutt-ng writes out the Bcc header when preparing
3455   ** messages to be sent.  Exim users may wish to unset this.
3456   */
3457   {"xterm_icon",       DT_STR,   R_BOTH, UL &XtermIcon,  UL "M%?n?AIL&ail?"},
3458   /*
3459   ** .pp
3460   ** Controls the format of the icon title, as long as xterm_set_titles
3461   ** is enabled. This string is identical in formatting to the one used by
3462   ** ``$$status_format''.
3463   */
3464   {"xterm_set_titles", DT_BOOL,  R_BOTH, OPTXTERMSETTITLES, 0},
3465   /*
3466   ** .pp
3467   ** Controls whether Mutt-ng sets the xterm title bar and icon name
3468   ** (as long as you're in an appropriate terminal). The default must
3469   ** be off to force in the validity checking.
3470   */
3471   {"xterm_title",      DT_STR,   R_BOTH, UL &XtermTitle, UL "Mutt-ng with %?m?%m messages&no messages?%?n? [%n New]?"},
3472   /*
3473   ** .pp
3474   ** Controls the format of the title bar of the xterm provided that
3475   ** xterm_set_titles has been set. This string is identical in formatting
3476   ** to the one used by ``$$status_format''.
3477   */
3478 #ifdef USE_NNTP
3479   { "x_comment_to",   DT_BOOL, R_NONE, OPTXCOMMENTTO, 0 },
3480   /*
3481   ** .pp
3482   ** Availability: NNTP
3483   **
3484   ** .pp
3485   ** If \fIset\fP, Mutt-ng will add ``X-Comment-To:'' field (that contains full
3486   ** name of original article author) to article that followuped to newsgroup.
3487   */
3488 #endif
3489   /*--*/
3490   { NULL }
3491 };
3492
3493 const struct feature_t Features[] = {
3494   { "ncurses", 
3495 #ifdef NCURSES_VERSION
3496     1
3497 #else
3498     0
3499 #endif
3500   }, { "slang",
3501 #ifdef USE_SLANG_CURSES
3502     1
3503 #else
3504     0
3505 #endif
3506   }, { "iconv",
3507 #ifdef _LIBICONV_VERSION
3508     1
3509 #else
3510     0
3511 #endif
3512   }, { "idn",
3513 #ifdef HAVE_LIBIDN
3514     1
3515 #else
3516     0
3517 #endif
3518   }, { "dotlock",
3519 #ifdef USE_DOTLOCK
3520     1
3521 #else
3522     0
3523 #endif
3524   }, { "standalone",
3525 #ifdef DL_STANDALONE
3526     1
3527 #else
3528     0
3529 #endif
3530   }, { "pop",
3531 #ifdef USE_POP
3532     1
3533 #else
3534     0
3535 #endif
3536   }, { "nntp",
3537 #ifdef USE_NNTP
3538     1
3539 #else
3540     0
3541 #endif
3542   }, { "imap",
3543 #ifdef USE_IMAP
3544     1
3545 #else
3546     0
3547 #endif
3548   }, { "ssl",
3549 #ifdef USE_SSL
3550     1
3551 #else
3552     0
3553 #endif
3554   }, { "gnutls",
3555 #ifdef USE_GNUTLS
3556     1
3557 #else
3558     0
3559 #endif
3560   }, { "sasl",
3561 #ifdef USE_SASL
3562     1
3563 #else
3564     0
3565 #endif
3566   }, { "sasl2",
3567 #ifdef USE_SASL2
3568     1
3569 #else
3570     0
3571 #endif
3572   }, { "libesmtp",
3573 #ifdef USE_LIBESMTP
3574     1
3575 #else
3576     0
3577 #endif
3578   }, { "compressed",
3579 #ifdef USE_COMPRESSED
3580     1
3581 #else
3582     0
3583 #endif
3584   }, { "color",
3585 #ifdef HAVE_COLOR
3586     1
3587 #else
3588     0
3589 #endif
3590   }, { "classic_pgp",
3591 #ifdef CRYPT_BACKEND_CLASSIC_PGP
3592     1
3593 #else
3594     0
3595 #endif
3596   }, { "classic_smime",
3597 #ifdef CRYPT_BACKEND_CLASSIC_SMIME
3598     1
3599 #else
3600     0
3601 #endif
3602   }, { "gpgme",
3603 #ifdef CRYPT_BACKEND_GPGME
3604     1
3605 #else
3606     0
3607 #endif
3608   }, { "header_cache",
3609 #ifdef USE_HCACHE
3610     1
3611 #else
3612     0
3613 #endif
3614   },
3615   /* last */
3616   { NULL,       0 }
3617 };
3618
3619 const struct mapping_t SortMethods[] = {
3620   { "date",             SORT_DATE },
3621   { "date-sent",        SORT_DATE },
3622   { "date-received",    SORT_RECEIVED },
3623   { "mailbox-order",    SORT_ORDER },
3624   { "subject",          SORT_SUBJECT },
3625   { "from",             SORT_FROM },
3626   { "size",             SORT_SIZE },
3627   { "threads",          SORT_THREADS },
3628   { "to",               SORT_TO },
3629   { "score",            SORT_SCORE },
3630   { "spam",             SORT_SPAM },
3631   { NULL,               0 }
3632 };
3633
3634 /* same as SortMethods, but with "threads" replaced by "date" */
3635
3636 const struct mapping_t SortAuxMethods[] = {
3637   { "date",             SORT_DATE },
3638   { "date-sent",        SORT_DATE },
3639   { "date-received",    SORT_RECEIVED },
3640   { "mailbox-order",    SORT_ORDER },
3641   { "subject",          SORT_SUBJECT },
3642   { "from",             SORT_FROM },
3643   { "size",             SORT_SIZE },
3644   { "threads",          SORT_DATE },    /* note: sort_aux == threads
3645                                          * isn't possible. 
3646                                          */
3647   { "to",               SORT_TO },
3648   { "score",            SORT_SCORE },
3649   { "spam",             SORT_SPAM },
3650   { NULL,               0 }
3651 };
3652   
3653
3654 const struct mapping_t SortBrowserMethods[] = {
3655   { "alpha",    SORT_SUBJECT },
3656   { "date",     SORT_DATE },
3657   { "size",     SORT_SIZE },
3658   { "unsorted", SORT_ORDER },
3659   { NULL }
3660 };
3661
3662 const struct mapping_t SortAliasMethods[] = {
3663   { "alias",    SORT_ALIAS },
3664   { "address",  SORT_ADDRESS },
3665   { "unsorted", SORT_ORDER },
3666   { NULL }
3667 };
3668
3669 const struct mapping_t SortKeyMethods[] = {
3670   { "address",  SORT_ADDRESS },
3671   { "date",     SORT_DATE },
3672   { "keyid",    SORT_KEYID },
3673   { "trust",    SORT_TRUST },
3674   { NULL }
3675 };
3676
3677
3678 /* functions used to parse commands in a rc file */
3679
3680 static int parse_list (BUFFER *, BUFFER *, unsigned long, BUFFER *);
3681 #if 0
3682 static int parse_rx_list (BUFFER *, BUFFER *, unsigned long, BUFFER *);
3683 static int parse_rx_unlist (BUFFER *, BUFFER *, unsigned long, BUFFER *);
3684 #endif
3685 static int parse_spam_list (BUFFER *, BUFFER *, unsigned long, BUFFER *);
3686 static int parse_unlist (BUFFER *, BUFFER *, unsigned long, BUFFER *);
3687
3688 static int parse_lists (BUFFER *, BUFFER *, unsigned long, BUFFER *);
3689 static int parse_unlists (BUFFER *, BUFFER *, unsigned long, BUFFER *);
3690 static int parse_alias (BUFFER *, BUFFER *, unsigned long, BUFFER *);
3691 static int parse_unalias (BUFFER *, BUFFER *, unsigned long, BUFFER *);
3692 static int parse_ifdef (BUFFER *, BUFFER *, unsigned long, BUFFER *);
3693 static int parse_ignore (BUFFER *, BUFFER *, unsigned long, BUFFER *);
3694 static int parse_unignore (BUFFER *, BUFFER *, unsigned long, BUFFER *);
3695 static int parse_source (BUFFER *, BUFFER *, unsigned long, BUFFER *);
3696 static int parse_set (BUFFER *, BUFFER *, unsigned long, BUFFER *);
3697 static int parse_my_hdr (BUFFER *, BUFFER *, unsigned long, BUFFER *);
3698 static int parse_unmy_hdr (BUFFER *, BUFFER *, unsigned long, BUFFER *);
3699 static int parse_subscribe (BUFFER *, BUFFER *, unsigned long, BUFFER *);
3700 static int parse_unsubscribe (BUFFER *, BUFFER *, unsigned long, BUFFER *);
3701
3702 static int parse_alternates (BUFFER *, BUFFER *, unsigned long, BUFFER *);
3703 static int parse_unalternates (BUFFER *, BUFFER *, unsigned long, BUFFER *);
3704
3705 struct command_t
3706 {
3707   char *name;
3708   int (*func) (BUFFER *, BUFFER *, unsigned long, BUFFER *);
3709   unsigned long data;
3710   unsigned long data1;
3711 };
3712
3713 struct command_t Commands[] = {
3714   { "alternates",       parse_alternates,       0 },
3715   { "unalternates",     parse_unalternates,     0 },
3716 #ifdef USE_SOCKET
3717   { "account-hook",     mutt_parse_hook,        M_ACCOUNTHOOK },
3718 #endif
3719   { "alias",            parse_alias,            0 },
3720   { "auto_view",        parse_list,             UL &AutoViewList },
3721   { "alternative_order",        parse_list,     UL &AlternativeOrderList},
3722   { "bind",             mutt_parse_bind,        0 },
3723   { "charset-hook",     mutt_parse_hook,        M_CHARSETHOOK },
3724 #ifdef HAVE_COLOR
3725   { "color",            mutt_parse_color,       0 },
3726   { "uncolor",          mutt_parse_uncolor,     0 },
3727 #endif
3728   { "exec",             mutt_parse_exec,        0 },
3729   { "fcc-hook",         mutt_parse_hook,        M_FCCHOOK },
3730   { "fcc-save-hook",    mutt_parse_hook,        M_FCCHOOK | M_SAVEHOOK },
3731   { "folder-hook",      mutt_parse_hook,        M_FOLDERHOOK },
3732 #ifdef USE_COMPRESSED
3733   { "open-hook",        mutt_parse_hook,        M_OPENHOOK },
3734   { "close-hook",       mutt_parse_hook,        M_CLOSEHOOK },
3735   { "append-hook",      mutt_parse_hook,        M_APPENDHOOK },
3736 #endif
3737   { "hdr_order",        parse_list,             UL &HeaderOrderList },
3738   { "ifdef",            parse_ifdef,            1 },
3739   { "ifndef",           parse_ifdef,            0 },
3740 #ifdef HAVE_ICONV
3741   { "iconv-hook",       mutt_parse_hook,        M_ICONVHOOK }, 
3742 #endif
3743   { "ignore",           parse_ignore,           0 },
3744   { "lists",            parse_lists,            0 },
3745   { "macro",            mutt_parse_macro,       0 },
3746   { "mailboxes",        mutt_parse_mailboxes,   M_MAILBOXES },
3747   { "unmailboxes",      mutt_parse_mailboxes,   M_UNMAILBOXES },
3748   { "message-hook",     mutt_parse_hook,        M_MESSAGEHOOK },
3749   { "mbox-hook",        mutt_parse_hook,        M_MBOXHOOK },
3750   { "mime_lookup",      parse_list,     UL &MimeLookupList },
3751   { "unmime_lookup",    parse_unlist,   UL &MimeLookupList },
3752   { "mono",             mutt_parse_mono,        0 },
3753   { "my_hdr",           parse_my_hdr,           0 },
3754   { "pgp-hook",         mutt_parse_hook,        M_CRYPTHOOK },
3755   { "crypt-hook",       mutt_parse_hook,        M_CRYPTHOOK },
3756   { "push",             mutt_parse_push,        0 },
3757   { "reply-hook",       mutt_parse_hook,        M_REPLYHOOK },
3758   { "reset",            parse_set,              M_SET_RESET },
3759   { "save-hook",        mutt_parse_hook,        M_SAVEHOOK },
3760   { "score",            mutt_parse_score,       0 },
3761   { "send-hook",        mutt_parse_hook,        M_SENDHOOK },
3762   { "send2-hook",       mutt_parse_hook,        M_SEND2HOOK },
3763   { "set",              parse_set,              0 },
3764   { "source",           parse_source,           0 },
3765   { "spam",             parse_spam_list,        M_SPAM },
3766   { "nospam",           parse_spam_list,        M_NOSPAM },
3767   { "subscribe",        parse_subscribe,        0 },
3768   { "toggle",           parse_set,              M_SET_INV },
3769   { "unalias",          parse_unalias,          0 },
3770   { "unalternative_order",parse_unlist,         UL &AlternativeOrderList },
3771   { "unauto_view",      parse_unlist,           UL &AutoViewList },
3772   { "unhdr_order",      parse_unlist,           UL &HeaderOrderList },
3773   { "unhook",           mutt_parse_unhook,      0 },
3774   { "unignore",         parse_unignore,         0 },
3775   { "unlists",          parse_unlists,          0 },
3776   { "unmono",           mutt_parse_unmono,      0 },
3777   { "unmy_hdr",         parse_unmy_hdr,         0 },
3778   { "unscore",          mutt_parse_unscore,     0 },
3779   { "unset",            parse_set,              M_SET_UNSET },
3780   { "unsubscribe",      parse_unsubscribe,      0 },
3781   { NULL }
3782 };