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