summaryrefslogtreecommitdiffstats
path: root/init.h
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>1998-08-25 22:33:07 +0000
committerThomas Roessler <roessler@does-not-exist.org>1998-08-25 22:33:07 +0000
commit986ab5e943db7aaed2aed98f8b74e4c26666fdd8 (patch)
tree58cfec1114686823dbdbf22cf2ca52f77eb1075d /init.h
parent9044dd4d58af4b4d64a6e68b7b76c42d317e7ce5 (diff)
CVS branch clean-up.
Diffstat (limited to 'init.h')
-rw-r--r--init.h13
1 files changed, 11 insertions, 2 deletions
diff --git a/init.h b/init.h
index 452b4988..397a8237 100644
--- a/init.h
+++ b/init.h
@@ -77,6 +77,9 @@ struct option_t MuttVars[] = {
{ "ascii_chars", DT_BOOL, R_BOTH, OPTASCIICHARS, 0 },
{ "askbcc", DT_BOOL, R_NONE, OPTASKBCC, 0 },
{ "askcc", DT_BOOL, R_NONE, OPTASKCC, 0 },
+ { "attach_format", DT_STR, R_NONE, UL &AttachFormat, UL "%u%D%t%2n %T%.40d%> [%.7m/%.10M, %.6e, %s] " },
+ { "attach_split", DT_BOOL, R_NONE, OPTATTACHSPLIT, 1 },
+ { "attach_sep", DT_STR, R_NONE, UL &AttachSep, UL "\n" },
{ "attribution", DT_STR, R_NONE, UL &Attribution, UL "On %d, %n wrote:" },
{ "autoedit", DT_BOOL, R_NONE, OPTAUTOEDIT, 0 },
{ "auto_tag", DT_BOOL, R_NONE, OPTAUTOTAG, 0 },
@@ -96,7 +99,6 @@ struct option_t MuttVars[] = {
{ "edit_headers", DT_BOOL, R_NONE, OPTEDITHDRS, 0 },
{ "edit_hdrs", DT_SYN, R_NONE, UL "edit_headers", 0 },
{ "editor", DT_PATH, R_NONE, UL &Editor, 0 },
- { "empty_to", DT_STR, R_NONE, UL &EmptyTo, UL "undisclosed-recipients" },
{ "escape", DT_STR, R_NONE, UL &EscChar, UL "~" },
{ "fast_reply", DT_BOOL, R_NONE, OPTFASTREPLY, 0 },
{ "fcc_attach", DT_BOOL, R_NONE, OPTFCCATTACH, 1 },
@@ -114,6 +116,7 @@ struct option_t MuttVars[] = {
{ "hdrs", DT_BOOL, R_NONE, OPTHDRS, 1 },
{ "header", DT_BOOL, R_NONE, OPTHEADER, 0 },
{ "help", DT_BOOL, R_BOTH, OPTHELP, 1 },
+ { "hidden_host", DT_BOOL, R_NONE, OPTHIDDENHOST, 0 },
{ "history", DT_NUM, R_NONE, UL &HistSize, 10 },
{ "hostname", DT_STR, R_NONE, UL &Fqdn, 0 },
#ifdef USE_IMAP
@@ -133,7 +136,7 @@ struct option_t MuttVars[] = {
{ "mailcap_path", DT_STR, R_NONE, UL &MailcapPath, 0 },
{ "mark_old", DT_BOOL, R_BOTH, OPTMARKOLD, 1 },
{ "markers", DT_BOOL, R_PAGER, OPTMARKERS, 1 },
- { "mask", DT_RX, R_NONE, UL &Mask, UL "^(\\.\\.$|[^.])" },
+ { "mask", DT_RX, R_NONE, UL &Mask, UL "!^\\.[^.]" },
{ "mbox", DT_PATH, R_BOTH, UL &Inbox, UL "~/mbox" },
{ "mbox_type", DT_MAGIC,R_NONE, UL &DefaultMagic, M_MBOX },
{ "metoo", DT_BOOL, R_NONE, OPTMETOO, 0 },
@@ -263,6 +266,7 @@ struct option_t MuttVars[] = {
{ "wait_key", DT_BOOL, R_NONE, OPTWAITKEY, 1 },
{ "wrap_search", DT_BOOL, R_NONE, OPTWRAPSEARCH, 1 },
{ "write_inc", DT_NUM, R_NONE, UL &WriteInc, 10 },
+ { "write_bcc", DT_BOOL, R_NONE, OPTWRITEBCC, 1},
{ NULL }
};
@@ -335,6 +339,9 @@ struct command_t Commands[] = {
{ "mbox-hook", mutt_parse_hook, M_MBOXHOOK },
{ "mono", mutt_parse_mono, 0 },
{ "my_hdr", parse_my_hdr, 0 },
+#ifdef _PGPPATH
+ { "pgp-hook", mutt_parse_hook, M_PGPHOOK },
+#endif /* _PGPPATH */
{ "push", mutt_parse_push, 0 },
{ "reset", parse_set, M_SET_RESET },
{ "save-hook", mutt_parse_hook, M_SAVEHOOK },
@@ -344,8 +351,10 @@ struct command_t Commands[] = {
{ "source", parse_source, 0 },
{ "toggle", parse_set, M_SET_INV },
{ "unalias", parse_unalias, 0 },
+ { "unhdr_order", parse_unlist, UL &HeaderOrderList },
{ "unignore", parse_unignore, 0 },
{ "unlists", parse_unlist, UL &MailLists },
+ { "unmono", mutt_parse_unmono, 0 },
{ "unmy_hdr", parse_unmy_hdr, 0 },
{ "unscore", mutt_parse_unscore, 0 },
{ "unset", parse_set, M_SET_UNSET },