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