Andreas Krennmair:
[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: 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_scroll",      DT_BOOL, R_NONE, OPTMENUSCROLL, 0 },
1206   /*
1207   ** .pp
1208   ** When \fIset\fP, menus will be scrolled up or down one line when you
1209   ** attempt to move across a screen boundary.  If \fIunset\fP, the screen
1210   ** is cleared and the next or previous page of the menu is displayed
1211   ** (useful for slow links to avoid many redraws).
1212   */
1213   { "meta_key",         DT_BOOL, R_NONE, OPTMETAKEY, 0 },
1214   /*
1215   ** .pp
1216   ** If set, forces Mutt to interpret keystrokes with the high bit (bit 8)
1217   ** set as if the user had pressed the ESC key and whatever key remains
1218   ** after having the high bit removed.  For example, if the key pressed
1219   ** has an ASCII value of 0xf4, then this is treated as if the user had
1220   ** pressed ESC then ``x''.  This is because the result of removing the
1221   ** high bit from ``0xf4'' is ``0x74'', which is the ASCII character
1222   ** ``x''.
1223   */
1224   { "mh_purge",         DT_BOOL, R_NONE, OPTMHPURGE, 0 },
1225   /*
1226   ** .pp
1227   ** When unset, mutt will mimic mh's behaviour and rename deleted messages
1228   ** to \fI,<old file name>\fP in mh folders instead of really deleting
1229   ** them.  If the variable is set, the message files will simply be
1230   ** deleted.
1231   */
1232   { "mh_seq_flagged",   DT_STR, R_NONE, UL &MhFlagged, UL "flagged" },
1233   /*
1234   ** .pp
1235   ** The name of the MH sequence used for flagged messages.
1236   */
1237   { "mh_seq_replied",   DT_STR, R_NONE, UL &MhReplied, UL "replied" },
1238   /*
1239   ** .pp
1240   ** The name of the MH sequence used to tag replied messages.
1241   */
1242   { "mh_seq_unseen",    DT_STR, R_NONE, UL &MhUnseen, UL "unseen" },
1243   /*
1244   ** .pp
1245   ** The name of the MH sequence used for unseen messages.
1246   */
1247   { "mime_forward",     DT_QUAD, R_NONE, OPT_MIMEFWD, M_NO },
1248   /*
1249   ** .pp
1250   ** When set, the message you are forwarding will be attached as a
1251   ** separate MIME part instead of included in the main body of the
1252   ** message.  This is useful for forwarding MIME messages so the receiver
1253   ** can properly view the message as it was delivered to you. If you like
1254   ** to switch between MIME and not MIME from mail to mail, set this
1255   ** variable to ask-no or ask-yes.
1256   ** .pp
1257   ** Also see ``$$forward_decode'' and ``$$mime_forward_decode''.
1258   */
1259   { "mime_forward_decode", DT_BOOL, R_NONE, OPTMIMEFORWDECODE, 0 },
1260   /*
1261   ** .pp
1262   ** Controls the decoding of complex MIME messages into text/plain when
1263   ** forwarding a message while ``$$mime_forward'' is \fIset\fP. Otherwise
1264   ** ``$$forward_decode'' is used instead.
1265   */
1266   { "mime_fwd",         DT_SYN,  R_NONE, UL "mime_forward", 0 },
1267   /*
1268   */
1269
1270   { "mime_forward_rest", DT_QUAD, R_NONE, OPT_MIMEFWDREST, M_YES },
1271   /*
1272   ** .pp
1273   ** When forwarding multiple attachments of a MIME message from the recvattach
1274   ** menu, attachments which cannot be decoded in a reasonable manner will
1275   ** be attached to the newly composed message if this option is set.
1276   */
1277
1278 #ifdef USE_NNTP
1279   { "mime_subject",   DT_BOOL, R_NONE, OPTMIMESUBJECT, 1 },
1280   /*
1281   ** .pp
1282   ** If \fIunset\fP, 8-bit ``subject:'' line in article header will not be
1283   ** encoded according to RFC2047 to base64.  This is useful when message
1284   ** is Usenet article, because MIME for news is nonstandard feature.
1285   */
1286 #endif
1287
1288 #ifdef MIXMASTER
1289   { "mix_entry_format", DT_STR,  R_NONE, UL &MixEntryFormat, UL "%4n %c %-16s %a" },
1290   /*
1291   ** .pp
1292   ** This variable describes the format of a remailer line on the mixmaster
1293   ** chain selection screen.  The following printf-like sequences are 
1294   ** supported:
1295   ** .pp
1296   ** .dl
1297   ** .dt %n .dd The running number on the menu.
1298   ** .dt %c .dd Remailer capabilities.
1299   ** .dt %s .dd The remailer's short name.
1300   ** .dt %a .dd The remailer's e-mail address.
1301   ** .de
1302   */
1303   { "mixmaster",        DT_PATH, R_NONE, UL &Mixmaster, UL MIXMASTER },
1304   /*
1305   ** .pp
1306   ** This variable contains the path to the Mixmaster binary on your
1307   ** system.  It is used with various sets of parameters to gather the
1308   ** list of known remailers, and to finally send a message through the
1309   ** mixmaster chain.
1310   */
1311 #endif
1312
1313
1314   { "move",             DT_QUAD, R_NONE, OPT_MOVE, M_ASKNO },
1315   /*
1316   ** .pp
1317   ** Controls whether you will be asked to confirm moving read messages
1318   ** from your spool mailbox to your ``$$mbox'' mailbox, or as a result of
1319   ** a ``$mbox-hook'' command.
1320   */
1321   { "message_format",   DT_STR,  R_NONE, UL &MsgFmt, UL "%s" },
1322   /*
1323   ** .pp
1324   ** This is the string displayed in the ``attachment'' menu for
1325   ** attachments of type message/rfc822.  For a full listing of defined
1326   ** printf()-like sequences see the section on ``$$index_format''.
1327   */
1328   { "msg_format",       DT_SYN,  R_NONE, UL "message_format", 0 },
1329   /*
1330   */
1331   { "msgid_format",     DT_STR, R_NONE, UL &MsgIdFormat, UL "%Y%m%d%h%M%s.G%P%p" },
1332   /*
1333   ** .pp
1334   ** This is the format for the ``local part'' of the message-IDs generated
1335   ** by Mutt-ng. The format string contains of one or more characters. The '%'
1336   ** character marks that certain data will be added to the string, similar to
1337   ** printf(). The following characters are allowed:
1338   ** .pp
1339   ** .dl
1340   ** .dt %d .dd the current day of month
1341   ** .dt %h .dd the current hour
1342   ** .dt %m .dd the current month
1343   ** .dt %M .dd the current minute
1344   ** .dt %O .dd the current UNIX timestamp (octal)
1345   ** .dt %p .dd the process ID
1346   ** .dt %P .dd the current message-ID prefix (a character rotating with 
1347   **            every message-ID being generated)
1348   ** .dt %r .dd a random integer value (decimal)
1349   ** .dt %R .dd a random integer value (hexadecimal)
1350   ** .dt %s .dd the current second
1351   ** .dt %T .dd the current UNIX timestamp (decimal)
1352   ** .dt %X .dd the current UNIX timestamp (hexadecimal)
1353   ** .dt %Y .dd the current year (Y2K compliant)
1354   ** .dt %% .dd the '%' character
1355   ** .de
1356   */
1357   { "narrow_tree",      DT_BOOL, R_TREE|R_INDEX, OPTNARROWTREE, 0 },
1358   /*
1359   ** .pp
1360   ** This variable, when set, makes the thread tree narrower, allowing
1361   ** deeper threads to fit on the screen.
1362   */
1363 #ifdef USE_NNTP
1364   { "news_cache_dir", DT_PATH, R_NONE, UL &NewsCacheDir, UL "~/.mutt" },
1365   /*
1366   ** .pp
1367   ** This variable pointing to directory where Mutt will save cached news
1368   ** articles headers in. If \fIunset\fP, headers will not be saved at all
1369   ** and will be reloaded each time when you enter to newsgroup.
1370   */
1371   { "news_server",    DT_STR,  R_NONE, UL &NewsServer, 0 },
1372   /*
1373   ** .pp
1374   ** This variable specifies domain name or address of NNTP server. It
1375   ** defaults to the newsserver specified in the environment variable
1376   ** $$$NNTPSERVER or contained in the file /etc/nntpserver.  You can also
1377   ** specify username and an alternative port for each newsserver, ie:
1378   ** .pp
1379   ** [nntp[s]://][username[:password]@]newsserver[:port]
1380   */
1381   { "newsrc",         DT_PATH, R_NONE, UL &NewsRc, UL "~/.newsrc" },
1382   /*
1383   ** .pp
1384   ** The file, containing info about subscribed newsgroups - names and
1385   ** indexes of read articles.  The following printf-style sequence
1386   ** is understood:
1387   ** .pp
1388   ** .ts
1389   ** %s      newsserver name
1390   ** .te
1391   */
1392   { "nntp_context",   DT_NUM,  R_NONE, UL &NntpContext, 1000 },
1393   /*
1394   ** .pp
1395   ** This variable defines number of articles which will be in index when
1396   ** newsgroup entered.  If active newsgroup have more articles than this
1397   ** number, oldest articles will be ignored.  Also controls how many
1398   ** articles headers will be saved in cache when you quit newsgroup.
1399   */
1400   { "nntp_load_description", DT_BOOL, R_NONE, OPTLOADDESC, 1 },
1401   /*
1402   ** .pp
1403   ** This variable controls whether or not descriptions for each newsgroup
1404   ** must be loaded when newsgroup is added to list (first time list
1405   ** loading or new newsgroup adding).
1406   */
1407   { "nntp_user",      DT_STR,  R_NONE, UL &NntpUser, UL "" },
1408   /*
1409   ** .pp
1410   ** Your login name on the NNTP server.  If \fIunset\fP and NNTP server requires
1411   ** authentification, Mutt will prompt you for your account name when you
1412   ** connect to newsserver.
1413   */
1414   { "nntp_pass",      DT_STR,  R_NONE, UL &NntpPass, UL "" },
1415   /*
1416   ** .pp
1417   ** Your password for NNTP account.
1418   */
1419   { "nntp_poll",      DT_NUM,  R_NONE, UL &NewsPollTimeout, 60 },
1420   /*
1421   ** .pp
1422   ** The time in seconds until any operations on newsgroup except post new
1423   ** article will cause recheck for new news.  If set to 0, Mutt will
1424   ** recheck newsgroup on each operation in index (stepping, read article,
1425   ** etc.).
1426   */
1427   { "nntp_reconnect", DT_QUAD, R_NONE, OPT_NNTPRECONNECT, M_ASKYES },
1428   /*
1429   ** .pp
1430   ** Controls whether or not Mutt will try to reconnect to newsserver when
1431   ** connection lost.
1432   */
1433 #endif
1434   { "pager",            DT_PATH, R_NONE, UL &Pager, UL "builtin" },
1435   /*
1436   ** .pp
1437   ** This variable specifies which pager you would like to use to view
1438   ** messages.  builtin means to use the builtin pager, otherwise this
1439   ** variable should specify the pathname of the external pager you would
1440   ** like to use.
1441   ** .pp
1442   ** Using an external pager may have some disadvantages: Additional
1443   ** keystrokes are necessary because you can't call mutt functions
1444   ** directly from the pager, and screen resizes cause lines longer than
1445   ** the screen width to be badly formatted in the help menu.
1446   */
1447   { "pager_context",    DT_NUM,  R_NONE, UL &PagerContext, 0 },
1448   /*
1449   ** .pp
1450   ** This variable controls the number of lines of context that are given
1451   ** when displaying the next or previous page in the internal pager.  By
1452   ** default, Mutt will display the line after the last one on the screen
1453   ** at the top of the next page (0 lines of context).
1454   */
1455   { "pager_format",     DT_STR,  R_PAGER, UL &PagerFmt, UL "-%Z- %C/%m: %-20.20n   %s" },
1456   /*
1457   ** .pp
1458   ** This variable controls the format of the one-line message ``status''
1459   ** displayed before each message in either the internal or an external
1460   ** pager.  The valid sequences are listed in the ``$$index_format''
1461   ** section.
1462   */
1463   { "pager_index_lines",DT_NUM,  R_PAGER, UL &PagerIndexLines, 0 },
1464   /*
1465   ** .pp
1466   ** Determines the number of lines of a mini-index which is shown when in
1467   ** the pager.  The current message, unless near the top or bottom of the
1468   ** folder, will be roughly one third of the way down this mini-index,
1469   ** giving the reader the context of a few messages before and after the
1470   ** message.  This is useful, for example, to determine how many messages
1471   ** remain to be read in the current thread.  One of the lines is reserved
1472   ** for the status bar from the index, so a \fIpager_index_lines\fP of 6
1473   ** will only show 5 lines of the actual index.  A value of 0 results in
1474   ** no index being shown.  If the number of messages in the current folder
1475   ** is less than \fIpager_index_lines\fP, then the index will only use as
1476   ** many lines as it needs.
1477   */
1478   { "pager_stop",       DT_BOOL, R_NONE, OPTPAGERSTOP, 0 },
1479   /*
1480   ** .pp
1481   ** When set, the internal-pager will \fBnot\fP move to the next message
1482   ** when you are at the end of a message and invoke the \fInext-page\fP
1483   ** function.
1484   */
1485   { "pgp_autosign",     DT_SYN,  R_NONE, UL "crypt_autosign", 0 },
1486   { "crypt_autosign",   DT_BOOL, R_NONE, OPTCRYPTAUTOSIGN, 0 },
1487   /*
1488   ** .pp
1489   ** Setting this variable will cause Mutt to always attempt to
1490   ** cryptographically sign outgoing messages.  This can be overridden
1491   ** by use of the \fIpgp-menu\fP, when signing is not required or
1492   ** encryption is requested as well. If ``$$smime_is_default'' is set,
1493   ** then OpenSSL is used instead to create S/MIME messages and settings can
1494   ** be overridden by use of the \fIsmime-menu\fP.
1495   ** (Crypto only)
1496   */
1497   { "pgp_autoencrypt",          DT_SYN,  R_NONE, UL "crypt_autoencrypt", 0 },
1498   { "crypt_autoencrypt",        DT_BOOL, R_NONE, OPTCRYPTAUTOENCRYPT, 0 },
1499   /*
1500   ** .pp
1501   ** Setting this variable will cause Mutt to always attempt to PGP
1502   ** encrypt outgoing messages.  This is probably only useful in
1503   ** connection to the \fIsend-hook\fP command.  It can be overridden
1504   ** by use of the \fIpgp-menu\fP, when encryption is not required or
1505   ** signing is requested as well.  IF ``$$smime_is_default'' is set,
1506   ** then OpenSSL is used instead to create S/MIME messages and
1507   ** settings can be overridden by use of the \fIsmime-menu\fP.
1508   ** (Crypto only)
1509   */
1510   { "pgp_ignore_subkeys", DT_BOOL, R_NONE, OPTPGPIGNORESUB, 1},
1511   /*
1512   ** .pp
1513   ** Setting this variable will cause Mutt to ignore OpenPGP subkeys. Instead,
1514   ** the principal key will inherit the subkeys' capabilities.  Unset this
1515   ** if you want to play interesting key selection games.
1516   ** (PGP only)
1517   */
1518   { "pgp_replyencrypt",         DT_SYN,  R_NONE, UL "crypt_replyencrypt", 1  },
1519   { "crypt_replyencrypt",       DT_BOOL, R_NONE, OPTCRYPTREPLYENCRYPT, 1 },
1520   /*
1521   ** .pp
1522   ** If set, automatically PGP or OpenSSL encrypt replies to messages which are
1523   ** encrypted.
1524   ** (Crypto only)
1525   */
1526   { "pgp_replysign",    DT_SYN, R_NONE, UL "crypt_replysign", 0 },
1527   { "crypt_replysign",  DT_BOOL, R_NONE, OPTCRYPTREPLYSIGN, 0 },
1528   /*
1529   ** .pp
1530   ** If set, automatically PGP or OpenSSL sign replies to messages which are
1531   ** signed.
1532   ** .pp
1533   ** \fBNote:\fP this does not work on messages that are encrypted
1534   ** \fBand\fP signed!
1535   ** (Crypto only)
1536   */
1537   { "pgp_replysignencrypted",   DT_SYN,  R_NONE, UL "crypt_replysignencrypted", 0},
1538   { "crypt_replysignencrypted", DT_BOOL, R_NONE, OPTCRYPTREPLYSIGNENCRYPTED, 0 },
1539   /*
1540   ** .pp
1541   ** If set, automatically PGP or OpenSSL sign replies to messages
1542   ** which are encrypted. This makes sense in combination with
1543   ** ``$$crypt_replyencrypt'', because it allows you to sign all
1544   ** messages which are automatically encrypted.  This works around
1545   ** the problem noted in ``$$crypt_replysign'', that mutt is not able
1546   ** to find out whether an encrypted message is also signed.
1547   ** (Crypto only)
1548   */
1549   { "crypt_timestamp", DT_BOOL, R_NONE, OPTCRYPTTIMESTAMP, 1 },
1550   /*
1551   ** .pp
1552   ** If set, mutt will include a time stamp in the lines surrounding
1553   ** PGP or S/MIME output, so spoofing such lines is more difficult.
1554   ** If you are using colors to mark these lines, and rely on these,
1555   ** you may unset this setting.
1556   ** (Crypto only)
1557   */
1558   { "pgp_use_gpg_agent", DT_BOOL, R_NONE, OPTUSEGPGAGENT, 0},
1559   /*
1560   ** .pp
1561   ** If set, mutt will use a possibly-running gpg-agent process.
1562   ** (PGP only)
1563   */
1564   { "pgp_verify_sig",   DT_SYN,  R_NONE, UL "crypt_verify_sig", 0},
1565   { "crypt_verify_sig", DT_QUAD, R_NONE, OPT_VERIFYSIG, M_YES },
1566   /*
1567   ** .pp
1568   ** If ``yes'', always attempt to verify PGP or S/MIME signatures.
1569   ** If ``ask'', ask whether or not to verify the signature. 
1570   ** If ``no'', never attempt to verify cryptographic signatures.
1571   ** (Crypto only)
1572   */
1573   { "smime_is_default", DT_BOOL,  R_NONE, OPTSMIMEISDEFAULT, 0},
1574   /*
1575   ** .pp
1576   ** The default behaviour of mutt is to use PGP on all auto-sign/encryption
1577   ** operations. To override and to use OpenSSL instead this must be set.
1578   ** However, this has no effect while replying, since mutt will automatically 
1579   ** select the same application that was used to sign/encrypt the original
1580   ** message.  (Note that this variable can be overridden by unsetting $$crypt_autosmime.)
1581   ** (S/MIME only)
1582   */
1583   { "smime_ask_cert_label",     DT_BOOL, R_NONE, OPTASKCERTLABEL, 1 },
1584   /*
1585   ** .pp
1586   ** This flag controls whether you want to be asked to enter a label
1587   ** for a certificate about to be added to the database or not. It is
1588   ** set by default.
1589   ** (S/MIME only)
1590   */
1591   { "smime_decrypt_use_default_key",    DT_BOOL, R_NONE, OPTSDEFAULTDECRYPTKEY, 1 },
1592   /*
1593   ** .pp
1594   ** If set (default) this tells mutt to use the default key for decryption. Otherwise,
1595   ** if manage multiple certificate-key-pairs, mutt will try to use the mailbox-address
1596   ** to determine the key to use. It will ask you to supply a key, if it can't find one.
1597   ** (S/MIME only)
1598   */
1599   { "pgp_entry_format", DT_STR,  R_NONE, UL &PgpEntryFormat, UL "%4n %t%f %4l/0x%k %-4a %2c %u" },
1600   /*
1601   ** .pp
1602   ** This variable allows you to customize the PGP key selection menu to
1603   ** your personal taste. This string is similar to ``$$index_format'', but
1604   ** has its own set of printf()-like sequences:
1605   ** .pp
1606   ** .dl
1607   ** .dt %n     .dd number
1608   ** .dt %k     .dd key id
1609   ** .dt %u     .dd user id
1610   ** .dt %a     .dd algorithm
1611   ** .dt %l     .dd key length
1612   ** .dt %f     .dd flags
1613   ** .dt %c     .dd capabilities
1614   ** .dt %t     .dd trust/validity of the key-uid association
1615   ** .dt %[<s>] .dd date of the key where <s> is an strftime(3) expression
1616   ** .de
1617   ** .pp
1618   ** (PGP only)
1619   */
1620   { "pgp_good_sign",    DT_RX,  R_NONE, UL &PgpGoodSign, 0 },
1621   /*
1622   ** .pp
1623   ** If you assign a text to this variable, then a PGP signature is only
1624   ** considered verified if the output from $$pgp_verify_command contains
1625   ** the text. Use this variable if the exit code from the command is 0
1626   ** even for bad signatures.
1627   ** (PGP only)
1628   */ 
1629   { "pgp_check_exit",   DT_BOOL, R_NONE, OPTPGPCHECKEXIT, 1 },
1630   /*
1631   ** .pp
1632   ** If set, mutt will check the exit code of the PGP subprocess when
1633   ** signing or encrypting.  A non-zero exit code means that the
1634   ** subprocess failed.
1635   ** (PGP only)
1636   */
1637   { "pgp_long_ids",     DT_BOOL, R_NONE, OPTPGPLONGIDS, 0 },
1638   /*
1639   ** .pp
1640   ** If set, use 64 bit PGP key IDs. Unset uses the normal 32 bit Key IDs.
1641   ** (PGP only)
1642   */
1643   { "pgp_retainable_sigs", DT_BOOL, R_NONE, OPTPGPRETAINABLESIG, 0 },
1644   /*
1645   ** .pp
1646   ** If set, signed and encrypted messages will consist of nested
1647   ** multipart/signed and multipart/encrypted body parts.
1648   ** .pp
1649   ** This is useful for applications like encrypted and signed mailing
1650   ** lists, where the outer layer (multipart/encrypted) can be easily
1651   ** removed, while the inner multipart/signed part is retained.
1652   ** (PGP only)
1653   */
1654   { "pgp_create_traditional",   DT_SYN, R_NONE, UL "pgp_autoinline", 0 },
1655   { "pgp_autoinline",           DT_BOOL, R_NONE, OPTPGPAUTOINLINE, 0 },
1656   /*
1657   ** .pp
1658   ** This option controls whether Mutt generates old-style inline
1659   ** (traditional) PGP encrypted or signed messages under certain
1660   ** circumstances.  This can be overridden by use of the \fIpgp-menu\fP,
1661   ** when inline is not required.
1662   ** .pp
1663   ** Note that Mutt might automatically use PGP/MIME for messages
1664   ** which consist of more than a single MIME part.  Mutt can be
1665   ** configured to ask before sending PGP/MIME messages when inline
1666   ** (traditional) would not work.
1667   ** See also: ``$$pgp_mime_auto''.
1668   ** .pp
1669   ** Also note that using the old-style PGP message format is \fBstrongly\fP
1670   ** \fBdeprecated\fP.
1671   ** (PGP only)
1672   */
1673   { "pgp_auto_traditional",     DT_SYN, R_NONE, UL "pgp_replyinline", 0 },
1674   { "pgp_replyinline",          DT_BOOL, R_NONE, OPTPGPREPLYINLINE, 0 },
1675   /*
1676   ** .pp
1677   ** Setting this variable will cause Mutt to always attempt to
1678   ** create an inline (traditional) message when replying to a
1679   ** message which is PGP encrypted/signed inline.  This can be
1680   ** overridden by use of the \fIpgp-menu\fP, when inline is not
1681   ** required.  This option does not automatically detect if the
1682   ** (replied-to) message is inline; instead it relies on Mutt
1683   ** internals for previously checked/flagged messages.
1684   ** .pp
1685   ** Note that Mutt might automatically use PGP/MIME for messages
1686   ** which consist of more than a single MIME part.  Mutt can be
1687   ** configured to ask before sending PGP/MIME messages when inline
1688   ** (traditional) would not work.
1689   ** See also: ``$$pgp_mime_auto''.
1690   ** .pp
1691   ** Also note that using the old-style PGP message format is \fBstrongly\fP
1692   ** \fBdeprecated\fP.
1693   ** (PGP only)
1694   ** 
1695   */
1696   { "pgp_show_unusable", DT_BOOL, R_NONE, OPTPGPSHOWUNUSABLE, 1 },
1697   /*
1698   ** .pp
1699   ** If set, mutt will display non-usable keys on the PGP key selection
1700   ** menu.  This includes keys which have been revoked, have expired, or
1701   ** have been marked as ``disabled'' by the user.
1702   ** (PGP only)
1703   */
1704   { "pgp_sign_as",      DT_STR,  R_NONE, UL &PgpSignAs, 0 },
1705   /*
1706   ** .pp
1707   ** If you have more than one key pair, this option allows you to specify
1708   ** which of your private keys to use.  It is recommended that you use the
1709   ** keyid form to specify your key (e.g., ``0x00112233'').
1710   ** (PGP only)
1711   */
1712   { "pgp_strict_enc",   DT_BOOL, R_NONE, OPTPGPSTRICTENC, 1 },
1713   /*
1714   ** .pp
1715   ** If set, Mutt will automatically encode PGP/MIME signed messages as
1716   ** \fIquoted-printable\fP.  Please note that unsetting this variable may
1717   ** lead to problems with non-verifyable PGP signatures, so only change
1718   ** this if you know what you are doing.
1719   ** (PGP only)
1720   */
1721   { "pgp_timeout",      DT_NUM,  R_NONE, UL &PgpTimeout, 300 },
1722   /*
1723   ** .pp
1724   ** The number of seconds after which a cached passphrase will expire if
1725   ** not used.
1726   ** (PGP only)
1727   */
1728   { "pgp_sort_keys",    DT_SORT|DT_SORT_KEYS, R_NONE, UL &PgpSortKeys, SORT_ADDRESS },
1729   /*
1730   ** .pp
1731   ** Specifies how the entries in the `pgp keys' menu are sorted. The
1732   ** following are legal values:
1733   ** .pp
1734   ** .dl
1735   ** .dt address .dd sort alphabetically by user id
1736   ** .dt keyid   .dd sort alphabetically by key id
1737   ** .dt date    .dd sort by key creation date
1738   ** .dt trust   .dd sort by the trust of the key
1739   ** .de
1740   ** .pp
1741   ** If you prefer reverse order of the above values, prefix it with
1742   ** `reverse-'.
1743   ** (PGP only)
1744   */
1745   { "pgp_mime_auto", DT_QUAD, R_NONE, OPT_PGPMIMEAUTO, M_ASKYES },
1746   /*
1747   ** .pp
1748   ** This option controls whether Mutt will prompt you for
1749   ** automatically sending a (signed/encrypted) message using
1750   ** PGP/MIME when inline (traditional) fails (for any reason).
1751   ** .pp
1752   ** Also note that using the old-style PGP message format is \fBstrongly\fP
1753   ** \fBdeprecated\fP.
1754   ** (PGP only)
1755   */
1756
1757   /* XXX Default values! */
1758   
1759   { "pgp_decode_command",       DT_STR, R_NONE, UL &PgpDecodeCommand, 0},
1760   /*
1761   ** .pp
1762   ** This format strings specifies a command which is used to decode 
1763   ** application/pgp attachments.
1764   ** .pp
1765   ** The PGP command formats have their own set of printf-like sequences:
1766   ** .pp
1767   ** .dl
1768   ** .dt %p .dd Expands to PGPPASSFD=0 when a pass phrase is needed, to an empty
1769   **            string otherwise. Note: This may be used with a %? construct.
1770   ** .dt %f .dd Expands to the name of a file containing a message.
1771   ** .dt %s .dd Expands to the name of a file containing the signature part
1772   ** .          of a multipart/signed attachment when verifying it.
1773   ** .dt %a .dd The value of $$pgp_sign_as.
1774   ** .dt %r .dd One or more key IDs.
1775   ** .de
1776   ** .pp
1777   ** For examples on how to configure these formats for the various versions
1778   ** of PGP which are floating around, see the pgp*.rc and gpg.rc files in
1779   ** the samples/ subdirectory which has been installed on your system
1780   ** alongside the documentation.
1781   ** (PGP only)
1782   */
1783   { "pgp_getkeys_command",      DT_STR, R_NONE, UL &PgpGetkeysCommand, 0},
1784   /*
1785   ** .pp
1786   ** This command is invoked whenever mutt will need public key information.
1787   ** %r is the only printf-like sequence used with this format.
1788   ** (PGP only)
1789   */
1790   { "pgp_verify_command",       DT_STR, R_NONE, UL &PgpVerifyCommand, 0},
1791   /*
1792   ** .pp
1793   ** This command is used to verify PGP signatures.
1794   ** (PGP only)
1795   */
1796   { "pgp_decrypt_command",      DT_STR, R_NONE, UL &PgpDecryptCommand, 0},
1797   /*
1798   ** .pp
1799   ** This command is used to decrypt a PGP encrypted message.
1800   ** (PGP only)
1801   */  
1802   { "pgp_clearsign_command",    DT_STR, R_NONE, UL &PgpClearSignCommand, 0 },
1803   /*
1804   ** .pp
1805   ** This format is used to create a old-style "clearsigned" PGP
1806   ** message.  Note that the use of this format is \fBstrongly\fP
1807   ** \fBdeprecated\fP.
1808   ** (PGP only)
1809   */
1810   { "pgp_sign_command",         DT_STR, R_NONE, UL &PgpSignCommand, 0},
1811   /*
1812   ** .pp
1813   ** This command is used to create the detached PGP signature for a 
1814   ** multipart/signed PGP/MIME body part.
1815   ** (PGP only)
1816   */  
1817   { "pgp_encrypt_sign_command", DT_STR, R_NONE, UL &PgpEncryptSignCommand, 0},
1818   /*
1819   ** .pp
1820   ** This command is used to both sign and encrypt a body part.
1821   ** (PGP only)
1822   */  
1823   { "pgp_encrypt_only_command", DT_STR, R_NONE, UL &PgpEncryptOnlyCommand, 0},
1824   /*
1825   ** .pp
1826   ** This command is used to encrypt a body part without signing it.
1827   ** (PGP only)
1828   */  
1829   { "pgp_import_command",       DT_STR, R_NONE, UL &PgpImportCommand, 0},
1830   /*
1831   ** .pp
1832   ** This command is used to import a key from a message into 
1833   ** the user's public key ring.
1834   ** (PGP only)
1835   */  
1836   { "pgp_export_command",       DT_STR, R_NONE, UL &PgpExportCommand, 0},
1837   /*
1838   ** .pp
1839   ** This command is used to export a public key from the user's
1840   ** key ring.
1841   ** (PGP only)
1842   */  
1843   { "pgp_verify_key_command",   DT_STR, R_NONE, UL &PgpVerifyKeyCommand, 0},
1844   /*
1845   ** .pp
1846   ** This command is used to verify key information from the key selection
1847   ** menu.
1848   ** (PGP only)
1849   */  
1850   { "pgp_list_secring_command", DT_STR, R_NONE, UL &PgpListSecringCommand, 0},
1851   /*
1852   ** .pp
1853   ** This command is used to list the secret key ring's contents.  The
1854   ** output format must be analogous to the one used by 
1855   ** gpg --list-keys --with-colons.
1856   ** .pp
1857   ** This format is also generated by the pgpring utility which comes 
1858   ** with mutt.
1859   ** (PGP only)
1860   */  
1861   { "pgp_list_pubring_command", DT_STR, R_NONE, UL &PgpListPubringCommand, 0},
1862   /*
1863   ** .pp
1864   ** This command is used to list the public key ring's contents.  The
1865   ** output format must be analogous to the one used by 
1866   ** gpg --list-keys --with-colons.
1867   ** .pp
1868   ** This format is also generated by the pgpring utility which comes 
1869   ** with mutt.
1870   ** (PGP only)
1871   */  
1872   { "forward_decrypt",  DT_BOOL, R_NONE, OPTFORWDECRYPT, 1 },
1873   /*
1874   ** .pp
1875   ** Controls the handling of encrypted messages when forwarding a message.
1876   ** When set, the outer layer of encryption is stripped off.  This
1877   ** variable is only used if ``$$mime_forward'' is \fIset\fP and
1878   ** ``$$mime_forward_decode'' is \fIunset\fP.
1879   ** (PGP only)
1880   */
1881   { "forw_decrypt",     DT_SYN,  R_NONE, UL "forward_decrypt", 0 },
1882   /*
1883   */
1884   
1885   { "smime_timeout",            DT_NUM,  R_NONE, UL &SmimeTimeout, 300 },
1886   /*
1887   ** .pp
1888   ** The number of seconds after which a cached passphrase will expire if
1889   ** not used.
1890   ** (S/MIME only)
1891   */
1892   { "smime_encrypt_with",       DT_STR,  R_NONE, UL &SmimeCryptAlg, 0 },
1893   /*
1894   ** .pp
1895   ** This sets the algorithm that should be used for encryption.
1896   ** Valid choices are "des", "des3", "rc2-40", "rc2-64", "rc2-128".
1897   ** If unset "3des" (TripleDES) is used.
1898   ** (S/MIME only)
1899   */
1900   { "smime_keys",               DT_PATH, R_NONE, UL &SmimeKeys, 0 },
1901   /*
1902   ** .pp
1903   ** Since there is no pubring/secring as with PGP, mutt has to handle
1904   ** storage ad retrieval of keys/certs by itself. This is very basic right now,
1905   ** and stores keys and certificates in two different directories, both
1906   ** named as the hash-value retrieved from OpenSSL. There is an index file
1907   ** which contains mailbox-address keyid pair, and which can be manually
1908   ** edited. This one points to the location of the private keys.
1909   ** (S/MIME only)
1910   */
1911   { "smime_ca_location",        DT_PATH, R_NONE, UL &SmimeCALocation, 0 },
1912   /*
1913   ** .pp
1914   ** This variable contains the name of either a directory, or a file which
1915   ** contains trusted certificates for use with OpenSSL.
1916   ** (S/MIME only)
1917   */
1918   { "smime_certificates",       DT_PATH, R_NONE, UL &SmimeCertificates, 0 },
1919   /*
1920   ** .pp
1921   ** Since there is no pubring/secring as with PGP, mutt has to handle
1922   ** storage and retrieval of keys by itself. This is very basic right
1923   ** now, and keys and certificates are stored in two different
1924   ** directories, both named as the hash-value retrieved from
1925   ** OpenSSL. There is an index file which contains mailbox-address
1926   ** keyid pairs, and which can be manually edited. This one points to
1927   ** the location of the certificates.
1928   ** (S/MIME only)
1929   */
1930   { "smime_decrypt_command",    DT_STR, R_NONE, UL &SmimeDecryptCommand, 0},
1931   /*
1932   ** .pp
1933   ** This format string specifies a command which is used to decrypt
1934   ** application/x-pkcs7-mime attachments.
1935   ** .pp
1936   ** The OpenSSL command formats have their own set of printf-like sequences
1937   ** similar to PGP's:
1938   ** .pp
1939   ** .dl
1940   ** .dt %f .dd Expands to the name of a file containing a message.
1941   ** .dt %s .dd Expands to the name of a file containing the signature part
1942   ** .          of a multipart/signed attachment when verifying it.
1943   ** .dt %k .dd The key-pair specified with $$smime_default_key
1944   ** .dt %c .dd One or more certificate IDs.
1945   ** .dt %a .dd The algorithm used for encryption.
1946   ** .dt %C .dd CA location:  Depending on whether $$smime_ca_location
1947   ** .          points to a directory or file, this expands to 
1948   ** .          "-CApath $$smime_ca_location" or "-CAfile $$smime_ca_location".
1949   ** .de
1950   ** .pp
1951   ** For examples on how to configure these formats, see the smime.rc in
1952   ** the samples/ subdirectory which has been installed on your system
1953   ** alongside the documentation.
1954   ** (S/MIME only)
1955   */
1956   { "smime_verify_command",     DT_STR, R_NONE, UL &SmimeVerifyCommand, 0},
1957   /*
1958   ** .pp
1959   ** This command is used to verify S/MIME signatures of type multipart/signed.
1960   ** (S/MIME only)
1961   */
1962   { "smime_verify_opaque_command",      DT_STR, R_NONE, UL &SmimeVerifyOpaqueCommand, 0},
1963   /*
1964   ** .pp
1965   ** This command is used to verify S/MIME signatures of type
1966   ** application/x-pkcs7-mime.
1967   ** (S/MIME only)
1968   */
1969   { "smime_sign_command",       DT_STR, R_NONE, UL &SmimeSignCommand, 0},
1970   /*
1971   ** .pp
1972   ** This command is used to created S/MIME signatures of type
1973   ** multipart/signed, which can be read by all mail clients.
1974   ** (S/MIME only)
1975   */
1976   { "smime_sign_opaque_command",        DT_STR, R_NONE, UL &SmimeSignOpaqueCommand, 0},
1977   /*
1978   ** .pp
1979   ** This command is used to created S/MIME signatures of type
1980   ** application/x-pkcs7-signature, which can only be handled by mail
1981   ** clients supporting the S/MIME extension.
1982   ** (S/MIME only)
1983   */
1984   { "smime_encrypt_command",    DT_STR, R_NONE, UL &SmimeEncryptCommand, 0},
1985   /*
1986   ** .pp
1987   ** This command is used to create encrypted S/MIME messages.
1988   ** (S/MIME only)
1989   */
1990   { "smime_pk7out_command",     DT_STR, R_NONE, UL &SmimePk7outCommand, 0},
1991   /*
1992   ** .pp
1993   ** This command is used to extract PKCS7 structures of S/MIME signatures,
1994   ** in order to extract the public X509 certificate(s).
1995   ** (S/MIME only)
1996   */
1997   { "smime_get_cert_command",   DT_STR, R_NONE, UL &SmimeGetCertCommand, 0},
1998   /*
1999   ** .pp
2000   ** This command is used to extract X509 certificates from a PKCS7 structure.
2001   ** (S/MIME only)
2002   */
2003   { "smime_get_signer_cert_command",    DT_STR, R_NONE, UL &SmimeGetSignerCertCommand, 0},
2004   /*
2005   ** .pp
2006   ** This command is used to extract only the signers X509 certificate from a S/MIME
2007   ** signature, so that the certificate's owner may get compared to the
2008   ** email's 'From'-field.
2009   ** (S/MIME only)
2010   */
2011   { "smime_import_cert_command",        DT_STR, R_NONE, UL &SmimeImportCertCommand, 0},
2012   /*
2013   ** .pp
2014   ** This command is used to import a certificate via smime_keys.
2015   ** (S/MIME only)
2016   */
2017   { "smime_get_cert_email_command",     DT_STR, R_NONE, UL &SmimeGetCertEmailCommand, 0},
2018   /*
2019   ** .pp
2020   ** This command is used to extract the mail address(es) used for storing
2021   ** X509 certificates, and for verification purposes (to check whether the
2022   ** certificate was issued for the sender's mailbox).
2023   ** (S/MIME only)
2024   */
2025   { "smime_sign_as",                    DT_SYN,  R_NONE, UL "smime_default_key", 0 },
2026   { "smime_default_key",                DT_STR,  R_NONE, UL &SmimeDefaultKey, 0 },
2027   /*
2028   ** .pp
2029   ** This is the default key-pair to use for signing. This must be set to the
2030   ** keyid (the hash-value that OpenSSL generates) to work properly
2031   ** (S/MIME only)
2032   */
2033 #if defined(USE_LIBESMTP)
2034   { "smtp_auth_username", DT_STR, R_NONE, UL &SmtpAuthUser, 0 },
2035   /*
2036   ** .pp
2037   ** Defines the username to use with SMTP AUTH.  Setting this variable will
2038   ** cause mutt to attempt to use SMTP AUTH when sending.
2039   */
2040   { "smtp_auth_password", DT_STR, R_NONE, UL &SmtpAuthPass, 0 },
2041   /*
2042   ** .pp
2043   ** Defines the password to use with SMTP AUTH.  If ``$$smtp_auth_username''
2044   ** is set, but this variable is not, you will be prompted for a password
2045   ** when sending.
2046   */
2047   { "smtp_host", DT_STR, R_NONE, UL &SmtpHost, 0 },
2048   /*
2049   ** .pp
2050   ** Defines the SMTP host which will be used to deliver mail, as opposed
2051   ** to invoking the sendmail binary.  Setting this variable overrides the
2052   ** value of ``$$sendmail'', and any associated variables.
2053   */
2054   { "smtp_port", DT_NUM, R_NONE, UL &SmtpPort, 25 },
2055   /*
2056   ** .pp
2057   ** Defines the port that the SMTP host is listening on for mail delivery.
2058   ** Must be specified as a number.
2059   ** .pp
2060   ** Defaults to 25, the standard SMTP port, but RFC 2476-compliant SMTP
2061   ** servers will probably desire 587, the mail submission port.
2062   */
2063 #endif
2064  
2065 #if defined(USE_SSL)||defined(USE_NSS)||defined(USE_GNUTLS)
2066 # if defined(USE_SSL)||defined(USE_GNUTLS)
2067   { "ssl_starttls", DT_QUAD, R_NONE, OPT_SSLSTARTTLS, M_YES },
2068   /*
2069   ** .pp
2070   ** If set (the default), mutt will attempt to use STARTTLS on servers
2071   ** advertising the capability. When unset, mutt will not attempt to
2072   ** use STARTTLS regardless of the server's capabilities.
2073   */
2074 # endif  
2075   { "certificate_file", DT_PATH, R_NONE, UL &SslCertFile, UL "~/.mutt_certificates" },
2076   /*
2077   ** .pp
2078   ** This variable specifies the file where the certificates you trust
2079   ** are saved. When an unknown certificate is encountered, you are asked
2080   ** if you accept it or not. If you accept it, the certificate can also 
2081   ** be saved in this file and further connections are automatically 
2082   ** accepted.
2083   ** .pp
2084   ** You can also manually add CA certificates in this file. Any server
2085   ** certificate that is signed with one of these CA certificates are 
2086   ** also automatically accepted.
2087   ** .pp
2088   ** Example: set certificate_file=~/.mutt/certificates
2089   */
2090 # ifndef USE_GNUTLS
2091   { "ssl_usesystemcerts", DT_BOOL, R_NONE, OPTSSLSYSTEMCERTS, 1 },
2092   /*
2093   ** .pp
2094   ** If set to \fIyes\fP, mutt will use CA certificates in the
2095   ** system-wide certificate store when checking if server certificate 
2096   ** is signed by a trusted CA.
2097   */
2098   { "entropy_file",     DT_PATH, R_NONE, UL &SslEntropyFile, 0 },
2099   /*
2100   ** .pp
2101   ** The file which includes random data that is used to initialize SSL
2102   ** library functions.
2103    */
2104   { "ssl_use_sslv2", DT_BOOL, R_NONE, OPTSSLV2, 1 },
2105   /*
2106   ** .pp
2107   ** This variables specifies whether to attempt to use SSLv2 in the
2108   ** SSL authentication process.
2109   */
2110 # endif
2111   { "ssl_use_sslv3", DT_BOOL, R_NONE, OPTSSLV3, 1 },
2112   /*
2113   ** .pp
2114   ** This variables specifies whether to attempt to use SSLv3 in the
2115   ** SSL authentication process.
2116   */
2117   { "ssl_use_tlsv1", DT_BOOL, R_NONE, OPTTLSV1, 1 },
2118   /*
2119   ** .pp
2120   ** This variables specifies whether to attempt to use TLSv1 in the
2121   ** SSL authentication process.
2122   */
2123 #ifdef USE_GNUTLS
2124   { "ssl_min_dh_prime_bits", DT_NUM, R_NONE, UL &SslDHPrimeBits, 0 },
2125   /*
2126   ** .pp
2127   ** This variable specifies the minimum acceptable prime size (in bits)
2128   ** for use in any Diffie-Hellman key exchange. A value of 0 will use
2129   ** the default from the GNUTLS library.
2130   */
2131   { "ssl_ca_certificates_file", DT_PATH, R_NONE, UL &SslCACertFile, 0 },
2132   /*
2133   ** .pp
2134   ** This variable specifies a file containing trusted CA certificates.
2135   ** Any server certificate that is signed with one of these CA
2136   ** certificates are also automatically accepted.
2137   ** .pp
2138   ** Example: set ssl_ca_certificates_file=/etc/ssl/certs/ca-certificates.crt
2139   */
2140   { "ssl_client_cert", DT_PATH, R_NONE, UL &SslClientCert, 0 },
2141   /*
2142   ** .pp
2143   ** The file containing a client certificate and its associated private
2144   ** key.
2145   */
2146 #ifdef USE_GNUTLS
2147   { "ssl_min_dh_prime_bits", DT_NUM, R_NONE, UL &SslDHPrimeBits, 0 },
2148   /*
2149   ** .pp
2150   ** This variable specifies the minimum acceptable prime size (in bits)
2151   ** for use in any Diffie-Hellman key exchange. A value of 0 will use
2152   ** the default from the GNUTLS library.
2153   */
2154   { "ssl_ca_certificates_file", DT_PATH, R_NONE, UL &SslCACertFile, 0 },
2155   /*
2156   ** .pp
2157   ** This variable specifies a file containing trusted CA certificates.
2158   ** Any server certificate that is signed with one of these CA
2159   ** certificates are also automatically accepted.
2160   ** .pp
2161   ** Example: set ssl_ca_certificates_file=/etc/ssl/certs/ca-certificates.crt
2162   */
2163 #endif
2164 #endif
2165 #endif
2166
2167   { "pipe_split",       DT_BOOL, R_NONE, OPTPIPESPLIT, 0 },
2168   /*
2169   ** .pp
2170   ** Used in connection with the \fIpipe-message\fP command and the ``tag-
2171   ** prefix'' operator.  If this variable is unset, when piping a list of
2172   ** tagged messages Mutt will concatenate the messages and will pipe them
2173   ** as a single folder.  When set, Mutt will pipe the messages one by one.
2174   ** In both cases the messages are piped in the current sorted order,
2175   ** and the ``$$pipe_sep'' separator is added after each message.
2176   */
2177   { "pipe_decode",      DT_BOOL, R_NONE, OPTPIPEDECODE, 0 },
2178   /*
2179   ** .pp
2180   ** Used in connection with the \fIpipe-message\fP command.  When unset,
2181   ** Mutt will pipe the messages without any preprocessing. When set, Mutt
2182   ** will weed headers and will attempt to PGP/MIME decode the messages
2183   ** first.
2184   */
2185   { "pipe_sep",         DT_STR,  R_NONE, UL &PipeSep, UL "\n" },
2186   /*
2187   ** .pp
2188   ** The separator to add between messages when piping a list of tagged
2189   ** messages to an external Unix command.
2190   */
2191 #ifdef USE_POP
2192   { "pop_authenticators", DT_STR, R_NONE, UL &PopAuthenticators, UL 0 },
2193   /*
2194   ** .pp
2195   ** This is a colon-delimited list of authentication methods mutt may
2196   ** attempt to use to log in to an POP server, in the order mutt should
2197   ** try them.  Authentication methods are either 'user', 'apop' or any
2198   ** SASL mechanism, eg 'digest-md5', 'gssapi' or 'cram-md5'.
2199   ** This parameter is case-insensitive. If this parameter is unset
2200   ** (the default) mutt will try all available methods, in order from
2201   ** most-secure to least-secure.
2202   ** .pp
2203   ** Example: set pop_authenticators="digest-md5:apop:user"
2204   */
2205   { "pop_auth_try_all", DT_BOOL, R_NONE, OPTPOPAUTHTRYALL, 1 },
2206   /*
2207   ** .pp
2208   ** If set, Mutt will try all available methods. When unset, Mutt will
2209   ** only fall back to other authentication methods if the previous
2210   ** methods are unavailable. If a method is available but authentication
2211   ** fails, Mutt will not connect to the POP server.
2212   */
2213   { "pop_checkinterval", DT_NUM, R_NONE, UL &PopCheckTimeout, 60 },
2214   /*
2215   ** .pp
2216   ** This variable configures how often (in seconds) POP should look for
2217   ** new mail.
2218   */
2219   { "pop_delete",       DT_QUAD, R_NONE, OPT_POPDELETE, M_ASKNO },
2220   /*
2221   ** .pp
2222   ** If set, Mutt will delete successfully downloaded messages from the POP
2223   ** server when using the fetch-mail function.  When unset, Mutt will
2224   ** download messages but also leave them on the POP server.
2225   */
2226   { "pop_host",         DT_STR,  R_NONE, UL &PopHost, UL "" },
2227   /*
2228   ** .pp
2229   ** The name of your POP server for the fetch-mail function.  You
2230   ** can also specify an alternative port, username and password, ie:
2231   ** .pp
2232   ** [pop[s]://][username[:password]@]popserver[:port]
2233   */
2234   { "pop_last",         DT_BOOL, R_NONE, OPTPOPLAST, 0 },
2235   /*
2236   ** .pp
2237   ** If this variable is set, mutt will try to use the "LAST" POP command
2238   ** for retrieving only unread messages from the POP server when using
2239   ** the fetch-mail function.
2240   */
2241   { "pop_reconnect",    DT_QUAD, R_NONE, OPT_POPRECONNECT, M_ASKYES },
2242   /*
2243   ** .pp
2244   ** Controls whether or not Mutt will try to reconnect to POP server when
2245   ** connection lost.
2246   */
2247   { "pop_user",         DT_STR,  R_NONE, UL &PopUser, 0 },
2248   /*
2249   ** .pp
2250   ** Your login name on the POP server.
2251   ** .pp
2252   ** This variable defaults to your user name on the local machine.
2253   */
2254   { "pop_pass",         DT_STR,  R_NONE, UL &PopPass, UL "" },
2255   /*
2256   ** .pp
2257   ** Specifies the password for your POP account.  If unset, Mutt will
2258   ** prompt you for your password when you open POP mailbox.
2259   ** \fBWarning\fP: you should only use this option when you are on a
2260   ** fairly secure machine, because the superuser can read your muttrc
2261   ** even if you are the only one who can read the file.
2262   */
2263 #endif /* USE_POP */
2264   { "post_indent_string",DT_STR, R_NONE, UL &PostIndentString, UL "" },
2265   /*
2266   ** .pp
2267   ** Similar to the ``$$attribution'' variable, Mutt will append this
2268   ** string after the inclusion of a message which is being replied to.
2269   */
2270   { "post_indent_str",  DT_SYN,  R_NONE, UL "post_indent_string", 0 },
2271   /*
2272   */
2273 #ifdef USE_NNTP
2274   { "post_moderated", DT_QUAD, R_NONE, OPT_TOMODERATED, M_ASKYES },
2275   /*
2276   ** .pp
2277   ** If set to \fIyes\fP, Mutt will post article to newsgroup that have
2278   ** not permissions to posting (e.g. moderated).  \fBNote:\fP if newsserver
2279   ** does not support posting to that newsgroup or totally read-only, that
2280   ** posting will not have an effect.
2281   */
2282 #endif
2283   { "postpone",         DT_QUAD, R_NONE, OPT_POSTPONE, M_ASKYES },
2284   /*
2285   ** .pp
2286   ** Controls whether or not messages are saved in the ``$$postponed''
2287   ** mailbox when you elect not to send immediately.
2288   */
2289   { "postponed",        DT_PATH, R_NONE, UL &Postponed, UL "~/postponed" },
2290   /*
2291   ** .pp
2292   ** Mutt allows you to indefinitely ``$postpone sending a message'' which
2293   ** you are editing.  When you choose to postpone a message, Mutt saves it
2294   ** in the mailbox specified by this variable.  Also see the ``$$postpone''
2295   ** variable.
2296   */
2297 #ifdef USE_SOCKET
2298   { "preconnect",       DT_STR, R_NONE, UL &Preconnect, UL 0},
2299   /*
2300   ** .pp
2301   ** If set, a shell command to be executed if mutt fails to establish
2302   ** a connection to the server. This is useful for setting up secure
2303   ** connections, e.g. with ssh(1). If the command returns a  nonzero
2304   ** status, mutt gives up opening the server. Example:
2305   ** .pp
2306   ** preconnect="ssh -f -q -L 1234:mailhost.net:143 mailhost.net
2307   **                   sleep 20 < /dev/null > /dev/null"
2308   ** .pp
2309   ** Mailbox 'foo' on mailhost.net can now be reached
2310   ** as '{localhost:1234}foo'.
2311   ** .pp
2312   ** NOTE: For this example to work, you must be able to log in to the
2313   ** remote machine without having to enter a password.
2314   */
2315 #endif /* USE_SOCKET */
2316   { "print",            DT_QUAD, R_NONE, OPT_PRINT, M_ASKNO },
2317   /*
2318   ** .pp
2319   ** Controls whether or not Mutt asks for confirmation before printing.
2320   ** This is useful for people (like me) who accidentally hit ``p'' often.
2321   */
2322   { "print_command",    DT_PATH, R_NONE, UL &PrintCmd, UL "lpr" },
2323   /*
2324   ** .pp
2325   ** This specifies the command pipe that should be used to print messages.
2326   */
2327   { "print_cmd",        DT_SYN,  R_NONE, UL "print_command", 0 },
2328   /*
2329   */
2330   { "print_decode",     DT_BOOL, R_NONE, OPTPRINTDECODE, 1 },
2331   /*
2332   ** .pp
2333   ** Used in connection with the print-message command.  If this
2334   ** option is set, the message is decoded before it is passed to the
2335   ** external command specified by $$print_command.  If this option
2336   ** is unset, no processing will be applied to the message when
2337   ** printing it.  The latter setting may be useful if you are using
2338   ** some advanced printer filter which is able to properly format
2339   ** e-mail messages for printing.
2340   */
2341   { "print_split",      DT_BOOL, R_NONE, OPTPRINTSPLIT,  0 },
2342   /*
2343   ** .pp
2344   ** Used in connection with the print-message command.  If this option
2345   ** is set, the command specified by $$print_command is executed once for
2346   ** each message which is to be printed.  If this option is unset, 
2347   ** the command specified by $$print_command is executed only once, and
2348   ** all the messages are concatenated, with a form feed as the message
2349   ** separator.
2350   ** .pp
2351   ** Those who use the \fBenscript\fP(1) program's mail-printing mode will
2352   ** most likely want to set this option.
2353   */
2354   { "prompt_after",     DT_BOOL, R_NONE, OPTPROMPTAFTER, 1 },
2355   /*
2356   ** .pp
2357   ** If you use an \fIexternal\fP ``$$pager'', setting this variable will
2358   ** cause Mutt to prompt you for a command when the pager exits rather
2359   ** than returning to the index menu.  If unset, Mutt will return to the
2360   ** index menu when the external pager exits.
2361   */
2362   { "query_command",    DT_PATH, R_NONE, UL &QueryCmd, UL "" },
2363   /*
2364   ** .pp
2365   ** This specifies the command that mutt will use to make external address
2366   ** queries.  The string should contain a %s, which will be substituted
2367   ** with the query string the user types.  See ``$query'' for more
2368   ** information.
2369   */
2370   { "quit",             DT_QUAD, R_NONE, OPT_QUIT, M_YES },
2371   /*
2372   ** .pp
2373   ** This variable controls whether ``quit'' and ``exit'' actually quit
2374   ** from mutt.  If it set to yes, they do quit, if it is set to no, they
2375   ** have no effect, and if it is set to ask-yes or ask-no, you are
2376   ** prompted for confirmation when you try to quit.
2377   */
2378   { "quote_empty",      DT_BOOL, R_NONE, OPTQUOTEEMPTY, 1 },
2379   /*
2380   ** .pp
2381   ** Controls whether or not empty lines will be quoted using
2382   ** ``$indent_string''.
2383   */
2384   { "quote_quoted",     DT_BOOL, R_NONE, OPTQUOTEQUOTED, 0 },
2385   /*
2386   ** .pp
2387   ** Controls how quoted lines will be quoted. If set, one quote
2388   ** character will be added to the end of existing prefix.  Otherwise,
2389   ** quoted lines will be prepended by ``$indent_string''.
2390   */
2391   { "quote_regexp",     DT_RX,   R_PAGER, UL &QuoteRegexp, UL "^([ \t]*[|>:}#])+" },
2392   /*
2393   ** .pp
2394   ** A regular expression used in the internal-pager to determine quoted
2395   ** sections of text in the body of a message.
2396   ** .pp
2397   ** \fBNote:\fP In order to use the \fIquoted\fP\fBx\fP patterns in the
2398   ** internal pager, you need to set this to a regular expression that
2399   ** matches \fIexactly\fP the quote characters at the beginning of quoted
2400   ** lines.
2401   */
2402   { "read_inc",         DT_NUM,  R_NONE, UL &ReadInc, 10 },
2403   /*
2404   ** .pp
2405   ** If set to a value greater than 0, Mutt will display which message it
2406   ** is currently on when reading a mailbox.  The message is printed after
2407   ** \fIread_inc\fP messages have been read (e.g., if set to 25, Mutt will
2408   ** print a message when it reads message 25, and then again when it gets
2409   ** to message 50).  This variable is meant to indicate progress when
2410   ** reading large mailboxes which may take some time.
2411   ** When set to 0, only a single message will appear before the reading
2412   ** the mailbox.
2413   ** .pp
2414   ** Also see the ``$$write_inc'' variable.
2415   */
2416   { "read_only",        DT_BOOL, R_NONE, OPTREADONLY, 0 },
2417   /*
2418   ** .pp
2419   ** If set, all folders are opened in read-only mode.
2420   */
2421   { "realname",         DT_STR,  R_BOTH, UL &Realname, 0 },
2422   /*
2423   ** .pp
2424   ** This variable specifies what "real" or "personal" name should be used
2425   ** when sending messages.
2426   ** .pp
2427   ** By default, this is the GECOS field from /etc/passwd.  Note that this
2428   ** variable will \fInot\fP be used when the user has set a real name
2429   ** in the $$from variable.
2430   */
2431   { "recall",           DT_QUAD, R_NONE, OPT_RECALL, M_ASKYES },
2432   /*
2433   ** .pp
2434   ** Controls whether or not you are prompted to recall postponed messages
2435   ** when composing a new message.  Also see ``$$postponed''.
2436   ** .pp
2437   ** Setting this variable to ``yes'' is not generally useful, and thus not
2438   ** recommended.
2439   */
2440   { "record",           DT_PATH, R_NONE, UL &Outbox, UL "" },
2441   /*
2442   ** .pp
2443   ** This specifies the file into which your outgoing messages should be
2444   ** appended.  (This is meant as the primary method for saving a copy of
2445   ** your messages, but another way to do this is using the ``$my_hdr''
2446   ** command to create a \fIBcc:\fP field with your email address in it.)
2447   ** .pp
2448   ** The value of \fI$$record\fP is overridden by the ``$$force_name'' and
2449   ** ``$$save_name'' variables, and the ``$fcc-hook'' command.
2450   */
2451   { "reply_regexp",     DT_RX,   R_INDEX|R_RESORT, UL &ReplyRegexp, UL "^(re([\\[0-9\\]+])*|aw):[ \t]*" },
2452   /*
2453   ** .pp
2454   ** A regular expression used to recognize reply messages when threading
2455   ** and replying. The default value corresponds to the English "Re:" and
2456   ** the German "Aw:".
2457   */
2458   { "reply_self",       DT_BOOL, R_NONE, OPTREPLYSELF, 0 },
2459   /*
2460   ** .pp
2461   ** If unset and you are replying to a message sent by you, Mutt will
2462   ** assume that you want to reply to the recipients of that message rather
2463   ** than to yourself.
2464   */
2465   { "reply_to",         DT_QUAD, R_NONE, OPT_REPLYTO, M_ASKYES },
2466   /*
2467   ** .pp
2468   ** If set, Mutt will ask you if you want to use the address listed in the
2469   ** Reply-To: header field when replying to a message.  If you answer no,
2470   ** it will use the address in the From: header field instead.  This
2471   ** option is useful for reading a mailing list that sets the Reply-To:
2472   ** header field to the list address and you want to send a private
2473   ** message to the author of a message.
2474   */
2475   { "resolve",          DT_BOOL, R_NONE, OPTRESOLVE, 1 },
2476   /*
2477   ** .pp
2478   ** When set, the cursor will be automatically advanced to the next
2479   ** (possibly undeleted) message whenever a command that modifies the
2480   ** current message is executed.
2481   */
2482   { "reverse_alias",    DT_BOOL, R_BOTH, OPTREVALIAS, 0 },
2483   /*
2484   ** .pp
2485   ** This variable controls whether or not Mutt will display the "personal"
2486   ** name from your aliases in the index menu if it finds an alias that
2487   ** matches the message's sender.  For example, if you have the following
2488   ** alias:
2489   ** .pp
2490   ** .ts
2491   **  alias juser abd30425@somewhere.net (Joe User)
2492   ** .te
2493   ** .pp
2494   ** and then you receive mail which contains the following header:
2495   ** .pp
2496   ** .ts
2497   **  From: abd30425@somewhere.net
2498   ** .te
2499   ** .pp
2500   ** It would be displayed in the index menu as ``Joe User'' instead of
2501   ** ``abd30425@somewhere.net.''  This is useful when the person's e-mail
2502   ** address is not human friendly (like CompuServe addresses).
2503   */
2504   { "reverse_name",     DT_BOOL, R_BOTH, OPTREVNAME, 0 },
2505   /*
2506   ** .pp
2507   ** It may sometimes arrive that you receive mail to a certain machine,
2508   ** move the messages to another machine, and reply to some the messages
2509   ** from there.  If this variable is set, the default \fIFrom:\fP line of
2510   ** the reply messages is built using the address where you received the
2511   ** messages you are replying to \fBif\fP that address matches your
2512   ** alternates.  If the variable is unset, or the address that would be
2513   ** used doesn't match your alternates, the \fIFrom:\fP line will use
2514   ** your address on the current machine.
2515   */
2516   { "reverse_realname", DT_BOOL, R_BOTH, OPTREVREAL, 1 },
2517   /*
2518   ** .pp
2519   ** This variable fine-tunes the behaviour of the $reverse_name feature.
2520   ** When it is set, mutt will use the address from incoming messages as-is,
2521   ** possibly including eventual real names.  When it is unset, mutt will
2522   ** override any such real names with the setting of the $realname variable.
2523   */
2524   { "rfc2047_parameters", DT_BOOL, R_NONE, OPTRFC2047PARAMS, 0 },
2525   /*
2526   ** .pp
2527   ** When this variable is set, Mutt will decode RFC-2047-encoded MIME 
2528   ** parameters. You want to set this variable when mutt suggests you
2529   ** to save attachments to files named like this: 
2530   ** =?iso-8859-1?Q?file=5F=E4=5F991116=2Ezip?=
2531   ** .pp
2532   ** When this variable is set interactively, the change doesn't have
2533   ** the desired effect before you have changed folders.
2534   ** .pp
2535   ** Note that this use of RFC 2047's encoding is explicitly,
2536   ** prohibited by the standard, but nevertheless encountered in the
2537   ** wild.
2538   ** Also note that setting this parameter will \fInot\fP have the effect 
2539   ** that mutt \fIgenerates\fP this kind of encoding.  Instead, mutt will
2540   ** unconditionally use the encoding specified in RFC 2231.
2541   */
2542   { "save_address",     DT_BOOL, R_NONE, OPTSAVEADDRESS, 0 },
2543   /*
2544   ** .pp
2545   ** If set, mutt will take the sender's full address when choosing a
2546   ** default folder for saving a mail. If ``$$save_name'' or ``$$force_name''
2547   ** is set too, the selection of the fcc folder will be changed as well.
2548   */
2549   { "save_empty",       DT_BOOL, R_NONE, OPTSAVEEMPTY, 1 },
2550   /*
2551   ** .pp
2552   ** When unset, mailboxes which contain no saved messages will be removed
2553   ** when closed (the exception is ``$$spoolfile'' which is never removed).
2554   ** If set, mailboxes are never removed.
2555   ** .pp
2556   ** \fBNote:\fP This only applies to mbox and MMDF folders, Mutt does not
2557   ** delete MH and Maildir directories.
2558   */
2559   { "save_name",        DT_BOOL, R_NONE, OPTSAVENAME, 0 },
2560   /*
2561   ** .pp
2562   ** This variable controls how copies of outgoing messages are saved.
2563   ** When set, a check is made to see if a mailbox specified by the
2564   ** recipient address exists (this is done by searching for a mailbox in
2565   ** the ``$$folder'' directory with the \fIusername\fP part of the
2566   ** recipient address).  If the mailbox exists, the outgoing message will
2567   ** be saved to that mailbox, otherwise the message is saved to the
2568   ** ``$$record'' mailbox.
2569   ** .pp
2570   ** Also see the ``$$force_name'' variable.
2571   */
2572   { "score",            DT_BOOL, R_NONE, OPTSCORE, 1 },
2573   /*
2574   ** .pp
2575   ** When this variable is \fIunset\fP, scoring is turned off.  This can
2576   ** be useful to selectively disable scoring for certain folders when the
2577   ** ``$$score_threshold_delete'' variable and friends are used.
2578   **
2579   */
2580   { "score_threshold_delete", DT_NUM, R_NONE, UL &ScoreThresholdDelete, UL -1 },
2581   /*
2582   ** .pp
2583   ** Messages which have been assigned a score equal to or lower than the value
2584   ** of this variable are automatically marked for deletion by mutt.  Since
2585   ** mutt scores are always greater than or equal to zero, the default setting
2586   ** of this variable will never mark a message for deletion.
2587   */
2588   { "score_threshold_flag", DT_NUM, R_NONE, UL &ScoreThresholdFlag, 9999 },
2589   /* 
2590   ** .pp
2591   ** Messages which have been assigned a score greater than or equal to this 
2592   ** variable's value are automatically marked "flagged".
2593   */
2594   { "score_threshold_read", DT_NUM, R_NONE, UL &ScoreThresholdRead, UL -1 },
2595   /*
2596   ** .pp
2597   ** Messages which have been assigned a score equal to or lower than the value
2598   ** of this variable are automatically marked as read by mutt.  Since
2599   ** mutt scores are always greater than or equal to zero, the default setting
2600   ** of this variable will never mark a message read.
2601   */
2602   { "send_charset",     DT_STR,  R_NONE, UL &SendCharset, UL "us-ascii:iso-8859-1:utf-8" },
2603   /*
2604   ** .pp
2605   ** A list of character sets for outgoing messages. Mutt will use the
2606   ** first character set into which the text can be converted exactly.
2607   ** If your ``$$charset'' is not iso-8859-1 and recipients may not
2608   ** understand UTF-8, it is advisable to include in the list an
2609   ** appropriate widely used standard character set (such as
2610   ** iso-8859-2, koi8-r or iso-2022-jp) either instead of or after
2611   ** "iso-8859-1".
2612   */
2613   { "sendmail",         DT_PATH, R_NONE, UL &Sendmail, UL SENDMAIL " -oem -oi" },
2614   /*
2615   ** .pp
2616   ** Specifies the program and arguments used to deliver mail sent by Mutt.
2617   ** Mutt expects that the specified program interprets additional
2618   ** arguments as recipient addresses.
2619   */
2620   { "sendmail_wait",    DT_NUM,  R_NONE, UL &SendmailWait, 0 },
2621   /*
2622   ** .pp
2623   ** Specifies the number of seconds to wait for the ``$$sendmail'' process
2624   ** to finish before giving up and putting delivery in the background.
2625   ** .pp
2626   ** Mutt interprets the value of this variable as follows:
2627   ** .dl
2628   ** .dt >0 .dd number of seconds to wait for sendmail to finish before continuing
2629   ** .dt 0  .dd wait forever for sendmail to finish
2630   ** .dt <0 .dd always put sendmail in the background without waiting
2631   ** .de
2632   ** .pp
2633   ** Note that if you specify a value other than 0, the output of the child
2634   ** process will be put in a temporary file.  If there is some error, you
2635   ** will be informed as to where to find the output.
2636   */
2637   { "shell",            DT_PATH, R_NONE, UL &Shell, 0 },
2638   /*
2639   ** .pp
2640   ** Command to use when spawning a subshell.  By default, the user's login
2641   ** shell from /etc/passwd is used.
2642   */
2643 #ifdef USE_NNTP
2644   { "save_unsubscribed",DT_BOOL, R_NONE, OPTSAVEUNSUB, 0 },
2645   /*
2646   ** .pp
2647   ** When \fIset\fP, info about unsubscribed newsgroups will be saved into
2648   ** ``newsrc'' file and into cache.
2649   */
2650   { "show_new_news",  DT_BOOL, R_NONE, OPTSHOWNEWNEWS, 1 },
2651   /*
2652   ** .pp
2653   ** If \fIset\fP, newsserver will be asked for new newsgroups on entering
2654   ** the browser.  Otherwise, it will be done only once for a newsserver.
2655   ** Also controls whether or not number of new articles of subscribed
2656   ** newsgroups will be then checked.
2657   */
2658   { "show_only_unread",  DT_BOOL, R_NONE, OPTSHOWONLYUNREAD, 0 },
2659   /*
2660   ** .pp
2661   ** If \fIset\fP, only subscribed newsgroups that contain unread articles
2662   ** will be displayed in browser.
2663   */
2664 #endif
2665   { "sig_dashes",       DT_BOOL, R_NONE, OPTSIGDASHES, 1 },
2666   /*
2667   ** .pp
2668   ** If set, a line containing ``-- '' will be inserted before your
2669   ** ``$$signature''.  It is \fBstrongly\fP recommended that you not unset
2670   ** this variable unless your ``signature'' contains just your name.  The
2671   ** reason for this is because many software packages use ``-- \n'' to
2672   ** detect your signature.  For example, Mutt has the ability to highlight
2673   ** the signature in a different color in the builtin pager.
2674   */
2675   { "sig_on_top",       DT_BOOL, R_NONE, OPTSIGONTOP, 0},
2676   /*
2677   ** .pp
2678   ** If set, the signature will be included before any quoted or forwarded
2679   ** text.  It is \fBstrongly\fP recommended that you do not set this variable
2680   ** unless you really know what you are doing, and are prepared to take
2681   ** some heat from netiquette guardians.
2682   */
2683   { "signature",        DT_PATH, R_NONE, UL &Signature, UL "~/.signature" },
2684   /*
2685   ** .pp
2686   ** Specifies the filename of your signature, which is appended to all
2687   ** outgoing messages.   If the filename ends with a pipe (``|''), it is
2688   ** assumed that filename is a shell command and input should be read from
2689   ** its stdout.
2690   */
2691   { "signoff_string",   DT_STR, R_NONE, UL &SignOffString, UL 0 },
2692   /*
2693   ** .pp
2694   ** If set, this string will be inserted before the signature. This is useful
2695   ** for people that want to sign off every message they send with their name.
2696   ** .pp
2697   ** If you want to insert your website's URL, additional contact information or 
2698   ** witty quotes into your mails, better use a signature file instead of
2699   ** the signoff string.
2700   */
2701   { "simple_search",    DT_STR,  R_NONE, UL &SimpleSearch, UL "~f %s | ~s %s" },
2702   /*
2703   ** .pp
2704   ** Specifies how Mutt should expand a simple search into a real search
2705   ** pattern.  A simple search is one that does not contain any of the ~
2706   ** operators.  See ``$patterns'' for more information on search patterns.
2707   ** .pp
2708   ** For example, if you simply type joe at a search or limit prompt, Mutt
2709   ** will automatically expand it to the value specified by this variable.
2710   ** For the default value it would be:
2711   ** .pp
2712   ** ~f joe | ~s joe
2713   */
2714   { "smart_wrap",       DT_BOOL, R_PAGER, OPTWRAP, 1 },
2715   /*
2716   ** .pp
2717   ** Controls the display of lines longer than the screen width in the
2718   ** internal pager. If set, long lines are wrapped at a word boundary.  If
2719   ** unset, lines are simply wrapped at the screen edge. Also see the
2720   ** ``$$markers'' variable.
2721   */
2722   { "smileys",          DT_RX,   R_PAGER, UL &Smileys, UL "(>From )|(:[-^]?[][)(><}{|/DP])" },
2723   /*
2724   ** .pp
2725   ** The \fIpager\fP uses this variable to catch some common false
2726   ** positives of ``$$quote_regexp'', most notably smileys in the beginning
2727   ** of a line
2728   */
2729   { "sleep_time",       DT_NUM, R_NONE, UL &SleepTime, 1 },
2730   /*
2731   ** .pp
2732   ** Specifies time, in seconds, to pause while displaying certain informational
2733   ** messages, while moving from folder to folder and after expunging
2734   ** messages from the current folder.  The default is to pause one second, so 
2735   ** a value of zero for this option suppresses the pause.
2736   */
2737   { "sort",             DT_SORT, R_INDEX|R_RESORT, UL &Sort, SORT_DATE },
2738   /*
2739   ** .pp
2740   ** Specifies how to sort messages in the \fIindex\fP menu.  Valid values
2741   ** are:
2742   ** .pp
2743   ** .ts
2744   ** .  date or date-sent
2745   ** .  date-received
2746   ** .  from
2747   ** .  mailbox-order (unsorted)
2748   ** .  score
2749   ** .  size
2750   ** .  spam
2751   ** .  subject
2752   ** .  threads
2753   ** .  to
2754   ** .te
2755   ** .pp
2756   ** You may optionally use the reverse- prefix to specify reverse sorting
2757   ** order (example: set sort=reverse-date-sent).
2758   */
2759   { "sort_alias",       DT_SORT|DT_SORT_ALIAS,  R_NONE, UL &SortAlias, SORT_ALIAS },
2760   /*
2761   ** .pp
2762   ** Specifies how the entries in the `alias' menu are sorted.  The
2763   ** following are legal values:
2764   ** .pp
2765   ** .ts
2766   ** .  address (sort alphabetically by email address)
2767   ** .  alias (sort alphabetically by alias name)
2768   ** .  unsorted (leave in order specified in .muttrc)
2769   ** .te
2770   */
2771   { "sort_aux",         DT_SORT|DT_SORT_AUX, R_INDEX|R_RESORT_BOTH, UL &SortAux, SORT_DATE },
2772   /*
2773   ** .pp
2774   ** When sorting by threads, this variable controls how threads are sorted
2775   ** in relation to other threads, and how the branches of the thread trees
2776   ** are sorted.  This can be set to any value that ``$$sort'' can, except
2777   ** threads (in that case, mutt will just use date-sent).  You can also
2778   ** specify the last- prefix in addition to the reverse- prefix, but last-
2779   ** must come after reverse-.  The last- prefix causes messages to be
2780   ** sorted against its siblings by which has the last descendant, using
2781   ** the rest of sort_aux as an ordering.  For instance, set sort_aux=last-
2782   ** date-received would mean that if a new message is received in a
2783   ** thread, that thread becomes the last one displayed (or the first, if
2784   ** you have set sort=reverse-threads.) Note: For reversed ``$$sort''
2785   ** order $$sort_aux is reversed again (which is not the right thing to do,
2786   ** but kept to not break any existing configuration setting).
2787   */
2788   { "sort_browser",     DT_SORT|DT_SORT_BROWSER, R_NONE, UL &BrowserSort, SORT_ALPHA },
2789   /*
2790   ** .pp
2791   ** Specifies how to sort entries in the file browser.  By default, the
2792   ** entries are sorted alphabetically.  Valid values:
2793   ** .pp
2794   ** .ts
2795   ** .  alpha (alphabetically)
2796   ** .  date
2797   ** .  size
2798   ** .  unsorted
2799   ** .te
2800   ** .pp
2801   ** You may optionally use the reverse- prefix to specify reverse sorting
2802   ** order (example: set sort_browser=reverse-date).
2803   */
2804   { "sort_re",          DT_BOOL, R_INDEX|R_RESORT|R_RESORT_INIT, OPTSORTRE, 1 },
2805   /*
2806   ** .pp
2807   ** This variable is only useful when sorting by threads with
2808   ** ``$$strict_threads'' unset.  In that case, it changes the heuristic
2809   ** mutt uses to thread messages by subject.  With sort_re set, mutt will
2810   ** only attach a message as the child of another message by subject if
2811   ** the subject of the child message starts with a substring matching the
2812   ** setting of ``$$reply_regexp''.  With sort_re unset, mutt will attach
2813   ** the message whether or not this is the case, as long as the
2814   ** non-``$$reply_regexp'' parts of both messages are identical.
2815   */
2816   { "spam_separator",   DT_STR, R_NONE, UL &SpamSep, UL "," },
2817   /*
2818   ** .pp
2819   ** ``$spam_separator'' controls what happens when multiple spam headers
2820   ** are matched: if unset, each successive header will overwrite any
2821   ** previous matches value for the spam label. If set, each successive
2822   ** match will append to the previous, using ``$spam_separator'' as a
2823   ** separator.
2824   */
2825   { "spoolfile",        DT_PATH, R_NONE, UL &Spoolfile, 0 },
2826   /*
2827   ** .pp
2828   ** If your spool mailbox is in a non-default place where Mutt cannot find
2829   ** it, you can specify its location with this variable.  Mutt will
2830   ** automatically set this variable to the value of the environment
2831   ** variable $$$MAIL if it is not set.
2832   */
2833   { "status_chars",     DT_STR,  R_BOTH, UL &StChars, UL "-*%A" },
2834   /*
2835   ** .pp
2836   ** Controls the characters used by the "%r" indicator in
2837   ** ``$$status_format''. The first character is used when the mailbox is
2838   ** unchanged. The second is used when the mailbox has been changed, and
2839   ** it needs to be resynchronized. The third is used if the mailbox is in
2840   ** read-only mode, or if the mailbox will not be written when exiting
2841   ** that mailbox (You can toggle whether to write changes to a mailbox
2842   ** with the toggle-write operation, bound by default to "%"). The fourth
2843   ** is used to indicate that the current folder has been opened in attach-
2844   ** message mode (Certain operations like composing a new mail, replying,
2845   ** forwarding, etc. are not permitted in this mode).
2846   */
2847   { "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)---" },
2848   /*
2849   ** .pp
2850   ** Controls the format of the status line displayed in the \fIindex\fP
2851   ** menu.  This string is similar to ``$$index_format'', but has its own
2852   ** set of printf()-like sequences:
2853   ** .pp
2854   ** .dl
2855   ** .dt %b  .dd number of mailboxes with new mail *
2856   ** .dt %d  .dd number of deleted messages *
2857   ** .dt %f  .dd the full pathname of the current mailbox
2858   ** .dt %F  .dd number of flagged messages *
2859   ** .dt %h  .dd local hostname
2860   ** .dt %l  .dd size (in bytes) of the current mailbox *
2861   ** .dt %L  .dd size (in bytes) of the messages shown 
2862   **             (i.e., which match the current limit) *
2863   ** .dt %m  .dd the number of messages in the mailbox *
2864   ** .dt %M  .dd the number of messages shown (i.e., which match the current limit) *
2865   ** .dt %n  .dd number of new messages in the mailbox *
2866   ** .dt %o  .dd number of old unread messages
2867   ** .dt %p  .dd number of postponed messages *
2868   ** .dt %P  .dd percentage of the way through the index
2869   ** .dt %r  .dd modified/read-only/won't-write/attach-message indicator,
2870   **             according to $$status_chars
2871   ** .dt %s  .dd current sorting mode ($$sort)
2872   ** .dt %S  .dd current aux sorting method ($$sort_aux)
2873   ** .dt %t  .dd number of tagged messages *
2874   ** .dt %u  .dd number of unread messages *
2875   ** .dt %v  .dd Mutt version string
2876   ** .dt %V  .dd currently active limit pattern, if any *
2877   ** .dt %>X .dd right justify the rest of the string and pad with "X"
2878   ** .dt %|X .dd pad to the end of the line with "X"
2879   ** .de
2880   ** .pp
2881   ** * = can be optionally printed if nonzero
2882   ** .pp
2883   ** Some of the above sequences can be used to optionally print a string
2884   ** if their value is nonzero.  For example, you may only want to see the
2885   ** number of flagged messages if such messages exist, since zero is not
2886   ** particularly meaningful.  To optionally print a string based upon one
2887   ** of the above sequences, the following construct is used
2888   ** .pp
2889   **  %?<sequence_char>?<optional_string>?
2890   ** .pp
2891   ** where \fIsequence_char\fP is a character from the table above, and
2892   ** \fIoptional_string\fP is the string you would like printed if
2893   ** \fIstatus_char\fP is nonzero.  \fIoptional_string\fP \fBmay\fP contain
2894   ** other sequence as well as normal text, but you may \fBnot\fP nest
2895   ** optional strings.
2896   ** .pp
2897   ** Here is an example illustrating how to optionally print the number of
2898   ** new messages in a mailbox:
2899   ** %?n?%n new messages.?
2900   ** .pp
2901   ** Additionally you can switch between two strings, the first one, if a
2902   ** value is zero, the second one, if the value is nonzero, by using the
2903   ** following construct:
2904   ** %?<sequence_char>?<if_string>&<else_string>?
2905   ** .pp
2906   ** You can additionally force the result of any printf-like sequence to
2907   ** be lowercase by prefixing the sequence character with an underscore
2908   ** (_) sign.  For example, if you want to display the local hostname in
2909   ** lowercase, you would use:
2910   ** %_h
2911   ** .pp
2912   ** If you prefix the sequence character with a colon (:) character, mutt
2913   ** will replace any dots in the expansion by underscores. This might be helpful 
2914   ** with IMAP folders that don't like dots in folder names.
2915   */
2916   { "status_on_top",    DT_BOOL, R_BOTH, OPTSTATUSONTOP, 0 },
2917   /*
2918   ** .pp
2919   ** Setting this variable causes the ``status bar'' to be displayed on
2920   ** the first line of the screen rather than near the bottom.
2921   */
2922   { "strict_threads",   DT_BOOL, R_RESORT|R_RESORT_INIT|R_INDEX, OPTSTRICTTHREADS, 0 },
2923   /*
2924   ** .pp
2925   ** If set, threading will only make use of the ``In-Reply-To'' and
2926   ** ``References'' fields when you ``$$sort'' by message threads.  By
2927   ** default, messages with the same subject are grouped together in
2928   ** ``pseudo threads.''  This may not always be desirable, such as in a
2929   ** personal mailbox where you might have several unrelated messages with
2930   ** the subject ``hi'' which will get grouped together.
2931   */
2932   { "suspend",          DT_BOOL, R_NONE, OPTSUSPEND, 1 },
2933   /*
2934   ** .pp
2935   ** When \fIunset\fP, mutt won't stop when the user presses the terminal's
2936   ** \fIsusp\fP key, usually ``control-Z''. This is useful if you run mutt
2937   ** inside an xterm using a command like xterm -e mutt.
2938   */
2939   { "text_flowed",      DT_BOOL, R_NONE, OPTTEXTFLOWED,  0 },
2940   /*
2941   ** .pp
2942   ** When set, mutt will generate text/plain; format=flowed attachments.
2943   ** This format is easier to handle for some mailing software, and generally
2944   ** just looks like ordinary text.  To actually make use of this format's 
2945   ** features, you'll need support in your editor.
2946   ** .pp
2947   ** Note that $$indent_string is ignored when this option is set.
2948   */
2949   { "thread_received",  DT_BOOL, R_RESORT|R_RESORT_INIT|R_INDEX, OPTTHREADRECEIVED, 0 },
2950   /*
2951   ** .pp
2952   ** When set, mutt uses the date received rather than the date sent
2953   ** to thread messages by subject.
2954   */
2955   { "thorough_search",  DT_BOOL, R_NONE, OPTTHOROUGHSRC, 0 },
2956   /*
2957   ** .pp
2958   ** Affects the \fI~b\fP and \fI~h\fP search operations described in
2959   ** section ``$patterns'' above.  If set, the headers and attachments of
2960   ** messages to be searched are decoded before searching.  If unset,
2961   ** messages are searched as they appear in the folder.
2962   */
2963   { "tilde",            DT_BOOL, R_PAGER, OPTTILDE, 0 },
2964   /*
2965   ** .pp
2966   ** When set, the internal-pager will pad blank lines to the bottom of the
2967   ** screen with a tilde (~).
2968   */
2969   { "timeout",          DT_NUM,  R_NONE, UL &Timeout, 600 },
2970   /*
2971   ** .pp
2972   ** This variable controls the \fInumber of seconds\fP Mutt will wait
2973   ** for a key to be pressed in the main menu before timing out and
2974   ** checking for new mail.  A value of zero or less will cause Mutt
2975   ** to never time out.
2976   */
2977   { "tmpdir",           DT_PATH, R_NONE, UL &Tempdir, 0 },
2978   /*
2979   ** .pp
2980   ** This variable allows you to specify where Mutt will place its
2981   ** temporary files needed for displaying and composing messages.  If
2982   ** this variable is not set, the environment variable TMPDIR is
2983   ** used.  If TMPDIR is not set then "/tmp" is used.
2984   */
2985   { "to_chars",         DT_STR,  R_BOTH, UL &Tochars, UL " +TCFL" },
2986   /*
2987   ** .pp
2988   ** Controls the character used to indicate mail addressed to you.  The
2989   ** first character is the one used when the mail is NOT addressed to your
2990   ** address (default: space).  The second is used when you are the only
2991   ** recipient of the message (default: +).  The third is when your address
2992   ** appears in the TO header field, but you are not the only recipient of
2993   ** the message (default: T).  The fourth character is used when your
2994   ** address is specified in the CC header field, but you are not the only
2995   ** recipient.  The fifth character is used to indicate mail that was sent
2996   ** by \fIyou\fP.  The sixth character is used to indicate when a mail
2997   ** was sent to a mailing-list you subscribe to (default: L).
2998   */
2999   { "trash",            DT_PATH, R_NONE, UL &TrashPath, 0 },
3000   /*
3001   ** .pp
3002   ** If set, this variable specifies the path of the trash folder where the
3003   ** mails marked for deletion will be moved, instead of being irremediably
3004   ** purged.
3005   ** .pp
3006   ** NOTE: When you delete a message in the trash folder, it is really
3007   ** deleted, so that you have a way to clean the trash.
3008   */
3009 #ifdef USE_SOCKET
3010   { "tunnel",            DT_STR, R_NONE, UL &Tunnel, UL 0 },
3011   /*
3012   ** .pp
3013   ** Setting this variable will cause mutt to open a pipe to a command
3014   ** instead of a raw socket. You may be able to use this to set up
3015   ** preauthenticated connections to your IMAP/POP3 server. Example:
3016   ** .pp
3017   ** tunnel="ssh -q mailhost.net /usr/local/libexec/imapd"
3018   ** .pp
3019   ** NOTE: For this example to work you must be able to log in to the remote
3020   ** machine without having to enter a password.
3021   */
3022 #endif
3023   { "umask",    DT_NUM, R_NONE, UL &Umask, 0077 },
3024   /*
3025   ** .pp
3026   ** This sets the umask that will be used by mutt-ng when creating all
3027   ** kinds of files. If unset, the default value is 077.
3028   */
3029   { "use_8bitmime",     DT_BOOL, R_NONE, OPTUSE8BITMIME, 0 },
3030   /*
3031   ** .pp
3032   ** \fBWarning:\fP do not set this variable unless you are using a version
3033   ** of sendmail which supports the -B8BITMIME flag (such as sendmail
3034   ** 8.8.x) or you may not be able to send mail.
3035   ** .pp
3036   ** When \fIset\fP, Mutt will invoke ``$$sendmail'' with the -B8BITMIME
3037   ** flag when sending 8-bit messages to enable ESMTP negotiation.
3038   */
3039   { "use_domain",       DT_BOOL, R_NONE, OPTUSEDOMAIN, 1 },
3040   /*
3041   ** .pp
3042   ** When set, Mutt will qualify all local addresses (ones without the
3043   ** @host portion) with the value of ``$$hostname''.  If \fIunset\fP, no
3044   ** addresses will be qualified.
3045   */
3046   { "use_from",         DT_BOOL, R_NONE, OPTUSEFROM, 1 },
3047   /*
3048   ** .pp
3049   ** When \fIset\fP, Mutt will generate the `From:' header field when
3050   ** sending messages.  If \fIunset\fP, no `From:' header field will be
3051   ** generated unless the user explicitly sets one using the ``$my_hdr''
3052   ** command.
3053   */
3054 #ifdef HAVE_GETADDRINFO
3055   { "use_ipv6",         DT_BOOL, R_NONE, OPTUSEIPV6, 1},
3056   /*
3057   ** .pp
3058   ** When \fIset\fP, Mutt will look for IPv6 addresses of hosts it tries to
3059   ** contact.  If this option is unset, Mutt will restrict itself to IPv4 addresses.
3060   ** Normally, the default should work.
3061   */
3062 #endif /* HAVE_GETADDRINFO */
3063   { "user_agent",       DT_BOOL, R_NONE, OPTXMAILER, 1},
3064   /*
3065   ** .pp
3066   ** When \fIset\fP, mutt will add a "User-Agent" header to outgoing
3067   ** messages, indicating which version of mutt was used for composing
3068   ** them.
3069   */
3070   { "visual",           DT_PATH, R_NONE, UL &Visual, 0 },
3071   /*
3072   ** .pp
3073   ** Specifies the visual editor to invoke when the \fI~v\fP command is
3074   ** given in the builtin editor.
3075   */
3076   { "wait_key",         DT_BOOL, R_NONE, OPTWAITKEY, 1 },
3077   /*
3078   ** .pp
3079   ** Controls whether Mutt will ask you to press a key after \fIshell-
3080   ** escape\fP, \fIpipe-message\fP, \fIpipe-entry\fP, \fIprint-message\fP,
3081   ** and \fIprint-entry\fP commands.
3082   ** .pp
3083   ** It is also used when viewing attachments with ``$auto_view'', provided
3084   ** that the corresponding mailcap entry has a \fIneedsterminal\fP flag,
3085   ** and the external program is interactive.
3086   ** .pp
3087   ** When set, Mutt will always ask for a key. When unset, Mutt will wait
3088   ** for a key only if the external command returned a non-zero status.
3089   */
3090   { "weed",             DT_BOOL, R_NONE, OPTWEED, 1 },
3091   /*
3092   ** .pp
3093   ** When set, mutt will weed headers when when displaying, forwarding,
3094   ** printing, or replying to messages.
3095   */
3096   { "wrap_search",      DT_BOOL, R_NONE, OPTWRAPSEARCH, 1 },
3097   /*
3098   ** .pp
3099   ** Controls whether searches wrap around the end of the mailbox.
3100   ** .pp
3101   ** When set, searches will wrap around the first (or last) message. When
3102   ** unset, searches will not wrap.
3103   */
3104   { "wrapmargin",       DT_NUM,  R_PAGER, UL &WrapMargin, 0 },
3105   /*
3106   ** .pp
3107   ** Controls the size of the margin remaining at the right side of
3108   ** the terminal when mutt's pager does smart wrapping.
3109   */
3110   { "write_inc",        DT_NUM,  R_NONE, UL &WriteInc, 10 },
3111   /*
3112   ** .pp
3113   ** When writing a mailbox, a message will be printed every
3114   ** \fIwrite_inc\fP messages to indicate progress.  If set to 0, only a
3115   ** single message will be displayed before writing a mailbox.
3116   ** .pp
3117   ** Also see the ``$$read_inc'' variable.
3118   */
3119   { "write_bcc",        DT_BOOL, R_NONE, OPTWRITEBCC, 1},
3120   /*
3121   ** .pp
3122   ** Controls whether mutt writes out the Bcc header when preparing
3123   ** messages to be sent.  Exim users may wish to use this.
3124   */
3125   {"xterm_icon",       DT_STR,   R_BOTH, UL &XtermIcon,  UL "M%?n?AIL&ail?"},
3126   /*
3127   ** .pp
3128   ** Controls the format of the icon title, as long as xterm_set_titles
3129   ** is enabled. This string is identical in formatting to the one used by
3130   ** ``$$status_format''.
3131   */
3132   {"xterm_set_titles", DT_BOOL,  R_BOTH, OPTXTERMSETTITLES, 0},
3133   /*
3134   ** .pp
3135   ** Controls whether mutt sets the xterm title bar and icon name
3136   ** (as long as you're in an appropriate terminal). The default must
3137   ** be off to force in the validity checking.
3138   */
3139   {"xterm_title",      DT_STR,   R_BOTH, UL &XtermTitle, UL "Mutt with %?m?%m messages&no messages?%?n? [%n New]?"},
3140   /*
3141   ** .pp
3142   ** Controls the format of the title bar of the xterm provided that
3143   ** xterm_set_titles has been set. This string is identical in formatting
3144   ** to the one used by ``$$status_format''.
3145   */
3146 #ifdef USE_NNTP
3147   { "x_comment_to",   DT_BOOL, R_NONE, OPTXCOMMENTTO, 0 },
3148   /*
3149   ** .pp
3150   ** If \fIset\fP, Mutt will add ``X-Comment-To:'' field (that contains full
3151   ** name of original article author) to article that followuped to newsgroup.
3152   */
3153 #endif
3154   /*--*/
3155   { NULL }
3156 };
3157
3158 const struct mapping_t SortMethods[] = {
3159   { "date",             SORT_DATE },
3160   { "date-sent",        SORT_DATE },
3161   { "date-received",    SORT_RECEIVED },
3162   { "mailbox-order",    SORT_ORDER },
3163   { "subject",          SORT_SUBJECT },
3164   { "from",             SORT_FROM },
3165   { "size",             SORT_SIZE },
3166   { "threads",          SORT_THREADS },
3167   { "to",               SORT_TO },
3168   { "score",            SORT_SCORE },
3169   { "spam",             SORT_SPAM },
3170   { NULL,               0 }
3171 };
3172
3173 /* same as SortMethods, but with "threads" replaced by "date" */
3174
3175 const struct mapping_t SortAuxMethods[] = {
3176   { "date",             SORT_DATE },
3177   { "date-sent",        SORT_DATE },
3178   { "date-received",    SORT_RECEIVED },
3179   { "mailbox-order",    SORT_ORDER },
3180   { "subject",          SORT_SUBJECT },
3181   { "from",             SORT_FROM },
3182   { "size",             SORT_SIZE },
3183   { "threads",          SORT_DATE },    /* note: sort_aux == threads
3184                                          * isn't possible. 
3185                                          */
3186   { "to",               SORT_TO },
3187   { "score",            SORT_SCORE },
3188   { "spam",             SORT_SPAM },
3189   { NULL,               0 }
3190 };
3191   
3192
3193 const struct mapping_t SortBrowserMethods[] = {
3194   { "alpha",    SORT_SUBJECT },
3195   { "date",     SORT_DATE },
3196   { "size",     SORT_SIZE },
3197   { "unsorted", SORT_ORDER },
3198   { NULL }
3199 };
3200
3201 const struct mapping_t SortAliasMethods[] = {
3202   { "alias",    SORT_ALIAS },
3203   { "address",  SORT_ADDRESS },
3204   { "unsorted", SORT_ORDER },
3205   { NULL }
3206 };
3207
3208 const struct mapping_t SortKeyMethods[] = {
3209   { "address",  SORT_ADDRESS },
3210   { "date",     SORT_DATE },
3211   { "keyid",    SORT_KEYID },
3212   { "trust",    SORT_TRUST },
3213   { NULL }
3214 };
3215
3216
3217 /* functions used to parse commands in a rc file */
3218
3219 static int parse_list (BUFFER *, BUFFER *, unsigned long, BUFFER *);
3220 static int parse_rx_list (BUFFER *, BUFFER *, unsigned long, BUFFER *);
3221 static int parse_spam_list (BUFFER *, BUFFER *, unsigned long, BUFFER *);
3222 static int parse_unlist (BUFFER *, BUFFER *, unsigned long, BUFFER *);
3223 static int parse_rx_unlist (BUFFER *, BUFFER *, unsigned long, BUFFER *);
3224
3225 static int parse_unlists (BUFFER *, BUFFER *, unsigned long, BUFFER *);
3226 static int parse_alias (BUFFER *, BUFFER *, unsigned long, BUFFER *);
3227 static int parse_unalias (BUFFER *, BUFFER *, unsigned long, BUFFER *);
3228 static int parse_ignore (BUFFER *, BUFFER *, unsigned long, BUFFER *);
3229 static int parse_unignore (BUFFER *, BUFFER *, unsigned long, BUFFER *);
3230 static int parse_source (BUFFER *, BUFFER *, unsigned long, BUFFER *);
3231 static int parse_set (BUFFER *, BUFFER *, unsigned long, BUFFER *);
3232 static int parse_my_hdr (BUFFER *, BUFFER *, unsigned long, BUFFER *);
3233 static int parse_unmy_hdr (BUFFER *, BUFFER *, unsigned long, BUFFER *);
3234 static int parse_subscribe (BUFFER *, BUFFER *, unsigned long, BUFFER *);
3235
3236 static int parse_alternates (BUFFER *, BUFFER *, unsigned long, BUFFER *);
3237 static int parse_unalternates (BUFFER *, BUFFER *, unsigned long, BUFFER *);
3238
3239 struct command_t
3240 {
3241   char *name;
3242   int (*func) (BUFFER *, BUFFER *, unsigned long, BUFFER *);
3243   unsigned long data;
3244 };
3245
3246 struct command_t Commands[] = {
3247   { "alternates",       parse_alternates,       UL &Alternates },
3248   { "unalternates",     parse_unalternates,     UL &Alternates },
3249 #ifdef USE_SOCKET
3250   { "account-hook",     mutt_parse_hook,        M_ACCOUNTHOOK },
3251 #endif
3252   { "alias",            parse_alias,            0 },
3253   { "auto_view",        parse_list,             UL &AutoViewList },
3254   { "alternative_order",        parse_list,     UL &AlternativeOrderList},
3255   { "bind",             mutt_parse_bind,        0 },
3256   { "charset-hook",     mutt_parse_hook,        M_CHARSETHOOK },
3257 #ifdef HAVE_COLOR
3258   { "color",            mutt_parse_color,       0 },
3259   { "uncolor",          mutt_parse_uncolor,     0 },
3260 #endif
3261   { "exec",             mutt_parse_exec,        0 },
3262   { "fcc-hook",         mutt_parse_hook,        M_FCCHOOK },
3263   { "fcc-save-hook",    mutt_parse_hook,        M_FCCHOOK | M_SAVEHOOK },
3264   { "folder-hook",      mutt_parse_hook,        M_FOLDERHOOK },
3265 #ifdef USE_COMPRESSED
3266   { "open-hook",        mutt_parse_hook,        M_OPENHOOK },
3267   { "close-hook",       mutt_parse_hook,        M_CLOSEHOOK },
3268   { "append-hook",      mutt_parse_hook,        M_APPENDHOOK },
3269 #endif
3270   { "hdr_order",        parse_list,             UL &HeaderOrderList },
3271 #ifdef HAVE_ICONV
3272   { "iconv-hook",       mutt_parse_hook,        M_ICONVHOOK }, 
3273 #endif
3274   { "ignore",           parse_ignore,           0 },
3275   { "lists",            parse_rx_list,          UL &MailLists },
3276   { "macro",            mutt_parse_macro,       0 },
3277   { "mailboxes",        mutt_parse_mailboxes,   M_MAILBOXES },
3278   { "unmailboxes",      mutt_parse_mailboxes,   M_UNMAILBOXES },
3279   { "message-hook",     mutt_parse_hook,        M_MESSAGEHOOK },
3280   { "mbox-hook",        mutt_parse_hook,        M_MBOXHOOK },
3281   { "mime_lookup",      parse_list,     UL &MimeLookupList },
3282   { "unmime_lookup",    parse_unlist,   UL &MimeLookupList },
3283   { "mono",             mutt_parse_mono,        0 },
3284   { "my_hdr",           parse_my_hdr,           0 },
3285   { "pgp-hook",         mutt_parse_hook,        M_CRYPTHOOK },
3286   { "crypt-hook",       mutt_parse_hook,        M_CRYPTHOOK },
3287   { "push",             mutt_parse_push,        0 },
3288   { "reply-hook",       mutt_parse_hook,        M_REPLYHOOK },
3289   { "reset",            parse_set,              M_SET_RESET },
3290   { "save-hook",        mutt_parse_hook,        M_SAVEHOOK },
3291   { "score",            mutt_parse_score,       0 },
3292   { "send-hook",        mutt_parse_hook,        M_SENDHOOK },
3293   { "send2-hook",       mutt_parse_hook,        M_SEND2HOOK },
3294   { "set",              parse_set,              0 },
3295   { "source",           parse_source,           0 },
3296   { "spam",             parse_spam_list,        M_SPAM },
3297   { "nospam",           parse_spam_list,        M_NOSPAM },
3298   { "subscribe",        parse_subscribe,        0 },
3299   { "toggle",           parse_set,              M_SET_INV },
3300   { "unalias",          parse_unalias,          0 },
3301   { "unalternative_order",parse_unlist,         UL &AlternativeOrderList },
3302   { "unauto_view",      parse_unlist,           UL &AutoViewList },
3303   { "unhdr_order",      parse_unlist,           UL &HeaderOrderList },
3304   { "unhook",           mutt_parse_unhook,      0 },
3305   { "unignore",         parse_unignore,         0 },
3306   { "unlists",          parse_unlists,          0 },
3307   { "unmono",           mutt_parse_unmono,      0 },
3308   { "unmy_hdr",         parse_unmy_hdr,         0 },
3309   { "unscore",          mutt_parse_unscore,     0 },
3310   { "unset",            parse_set,              M_SET_UNSET },
3311   { "unsubscribe",      parse_rx_unlist,        UL &SubscribedLists },
3312   { NULL }
3313 };