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