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