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