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