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