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