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