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