NeoMutt  2024-11-14-34-g5aaf0d
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
mutt_config.c
Go to the documentation of this file.
1
35#include "config.h"
36#include <ctype.h>
37#include <stdbool.h>
38#include <stddef.h>
39#include <stdint.h>
40#include <stdio.h>
41#include "mutt/lib.h"
42#include "config/lib.h"
43#include "email/lib.h"
44#include "core/lib.h"
45#include "attach/lib.h"
46#include "expando/lib.h"
47#include "index/lib.h"
48#include "menu/lib.h"
49#include "init.h"
50#include "mutt_logging.h"
51#include "mutt_thread.h"
52#include "mx.h"
53
54extern const struct ExpandoDefinition IndexFormatDef[];
55
56#define CONFIG_INIT_TYPE(CS, NAME) \
57 extern const struct ConfigSetType Cst##NAME; \
58 cs_register_type(CS, &Cst##NAME)
59
60#define CONFIG_INIT_VARS(CS, NAME) \
61 bool config_init_##NAME(struct ConfigSet *cs); \
62 config_init_##NAME(CS)
63
67static const struct Mapping SortAuxMethods[] = {
68 // clang-format off
69 { "date", SORT_DATE },
70 { "date-sent", SORT_DATE },
71 { "threads", SORT_DATE },
72 { "date-received", SORT_RECEIVED },
73 { "from", SORT_FROM },
74 { "label", SORT_LABEL },
75 { "unsorted", SORT_ORDER },
76 { "mailbox-order", SORT_ORDER },
77 { "score", SORT_SCORE },
78 { "size", SORT_SIZE },
79 { "spam", SORT_SPAM },
80 { "subject", SORT_SUBJECT },
81 { "to", SORT_TO },
82 { NULL, 0 },
83 // clang-format on
84};
85
89const struct Mapping SortMethods[] = {
90 // clang-format off
91 { "date", SORT_DATE },
92 { "date-sent", SORT_DATE },
93 { "date-received", SORT_RECEIVED },
94 { "from", SORT_FROM },
95 { "label", SORT_LABEL },
96 { "unsorted", SORT_ORDER },
97 { "mailbox-order", SORT_ORDER },
98 { "score", SORT_SCORE },
99 { "size", SORT_SIZE },
100 { "spam", SORT_SPAM },
101 { "subject", SORT_SUBJECT },
102 { "threads", SORT_THREADS },
103 { "to", SORT_TO },
104 { NULL, 0 },
105 // clang-format on
106};
107
111static int multipart_validator(const struct ConfigSet *cs, const struct ConfigDef *cdef,
112 intptr_t value, struct Buffer *err)
113{
114 if (value == 0)
115 return CSR_SUCCESS;
116
117 const char *str = (const char *) value;
118
119 if (mutt_str_equal(str, "inline") || mutt_str_equal(str, "info"))
120 return CSR_SUCCESS;
121
122 buf_printf(err, _("Invalid value for option %s: %s"), cdef->name, str);
123 return CSR_ERR_INVALID;
124}
125
132static const struct ExpandoDefinition AttachFormatDef[] = {
133 // clang-format off
134 { "*", "padding-soft", ED_GLOBAL, ED_GLO_PADDING_SOFT, node_padding_parse },
135 { ">", "padding-hard", ED_GLOBAL, ED_GLO_PADDING_HARD, node_padding_parse },
136 { "|", "padding-eol", ED_GLOBAL, ED_GLO_PADDING_EOL, node_padding_parse },
137 { "c", "charset-convert", ED_BODY, ED_BOD_CHARSET_CONVERT, NULL },
138 { "C", "charset", ED_ATTACH, ED_ATT_CHARSET, NULL },
139 { "d", "description", ED_BODY, ED_BOD_DESCRIPTION, NULL },
140 { "D", "deleted", ED_BODY, ED_BOD_DELETED, NULL },
141 { "e", "mime-encoding", ED_BODY, ED_BOD_MIME_ENCODING, NULL },
142 { "f", "file", ED_BODY, ED_BOD_FILE, NULL },
143 { "F", "file-disposition", ED_BODY, ED_BOD_FILE_DISPOSITION, NULL },
144 { "I", "disposition", ED_BODY, ED_BOD_DISPOSITION, NULL },
145 { "m", "mime-major", ED_BODY, ED_BOD_MIME_MAJOR, NULL },
146 { "M", "mime-minor", ED_BODY, ED_BOD_MIME_MINOR, NULL },
147 { "n", "number", ED_ATTACH, ED_ATT_NUMBER, NULL },
148 { "Q", "attach-qualifies", ED_BODY, ED_BOD_ATTACH_QUALIFIES, NULL },
149 { "s", "file-size", ED_BODY, ED_BOD_FILE_SIZE, NULL },
150 { "t", "tagged", ED_BODY, ED_BOD_TAGGED, NULL },
151 { "T", "tree", ED_ATTACH, ED_ATT_TREE, NULL },
152 { "u", "unlink", ED_BODY, ED_BOD_UNLINK, NULL },
153 { "X", "attach-count", ED_BODY, ED_BOD_ATTACH_COUNT, NULL },
154 { NULL, NULL, 0, -1, NULL }
155 // clang-format on
156};
157
165 struct ExpandoFormat *fmt, int did,
166 int uid, ExpandoParserFlags flags,
167 const char **parsed_until,
168 struct ExpandoParseError *err)
169{
170 if (flags & EP_CONDITIONAL)
171 {
172 return node_conddate_parse(str, did, uid, parsed_until, err);
173 }
174
175 return node_expando_parse_enclosure(str, did, uid, ')', fmt, parsed_until, err);
176}
177
184struct ExpandoNode *parse_index_date_local(const char *str, struct ExpandoFormat *fmt,
185 int did, int uid, ExpandoParserFlags flags,
186 const char **parsed_until,
187 struct ExpandoParseError *err)
188{
189 if (flags & EP_CONDITIONAL)
190 {
191 return node_conddate_parse(str, did, uid, parsed_until, err);
192 }
193
194 return node_expando_parse_enclosure(str, did, uid, ']', fmt, parsed_until, err);
195}
196
203struct ExpandoNode *parse_index_date(const char *str, struct ExpandoFormat *fmt,
204 int did, int uid, ExpandoParserFlags flags,
205 const char **parsed_until,
206 struct ExpandoParseError *err)
207{
208 if (flags & EP_CONDITIONAL)
209 {
210 return node_conddate_parse(str, did, uid, parsed_until, err);
211 }
212
213 return node_expando_parse_enclosure(str, did, uid, '}', fmt, parsed_until, err);
214}
215
223struct ExpandoNode *parse_index_hook(const char *str, struct ExpandoFormat *fmt,
224 int did, int uid, ExpandoParserFlags flags,
225 const char **parsed_until,
226 struct ExpandoParseError *err)
227{
228 if (flags & EP_CONDITIONAL)
229 {
230 snprintf(err->message, sizeof(err->message),
231 _("index-hook cannot be used as a condition"));
232 err->position = str;
233 return NULL;
234 }
235
236 return node_expando_parse_enclosure(str, did, uid, '@', fmt, parsed_until, err);
237}
238
244struct ExpandoNode *parse_tags_transformed(const char *str, struct ExpandoFormat *fmt,
245 int did, int uid, ExpandoParserFlags flags,
246 const char **parsed_until,
247 struct ExpandoParseError *err)
248{
249 // Tag expando %G must use an suffix from [A-Za-z0-9], e.g. %Ga, %GL
250 if (!isalnum(str[1]))
251 return NULL;
252
253 // Let the basic expando parser do the work
254 flags |= EP_NO_CUSTOM_PARSE;
255 struct ExpandoNode *node = parse_short_name(str, IndexFormatDef, flags, fmt,
256 parsed_until, err);
257
258 // but adjust the node to take one more character
259 node->text = mutt_strn_dup((*parsed_until) - 1, 2);
260 (*parsed_until)++;
261
262 if (flags & EP_CONDITIONAL)
263 {
264 node->type = ENT_CONDBOOL;
266 }
267
268 return node;
269}
270
277struct ExpandoNode *parse_subject(const char *str, struct ExpandoFormat *fmt,
278 int did, int uid, ExpandoParserFlags flags,
279 const char **parsed_until, struct ExpandoParseError *err)
280{
281 // Let the basic expando parser do the work
282 flags |= EP_NO_CUSTOM_PARSE;
283 struct ExpandoNode *node_subj = parse_short_name(str, IndexFormatDef, flags,
284 NULL, parsed_until, err);
285
287 struct ExpandoNode *node_cont = node_container_new();
288
289 // Apply the formatting info to the container
290 node_cont->format = fmt;
291
292 node_add_child(node_cont, node_tree);
293 node_add_child(node_cont, node_subj);
294
295 return node_cont;
296}
297
314 // clang-format off
315 { "*", "padding-soft", ED_GLOBAL, ED_GLO_PADDING_SOFT, node_padding_parse },
316 { ">", "padding-hard", ED_GLOBAL, ED_GLO_PADDING_HARD, node_padding_parse },
317 { "|", "padding-eol", ED_GLOBAL, ED_GLO_PADDING_EOL, node_padding_parse },
320 { "a", "from", ED_ENVELOPE, ED_ENV_FROM, NULL },
321 { "A", "reply-to", ED_ENVELOPE, ED_ENV_REPLY_TO, NULL },
322 { "b", "mailbox-name", ED_MAILBOX, ED_MBX_MAILBOX_NAME, NULL },
323 { "B", "list-address", ED_ENVELOPE, ED_ENV_LIST_ADDRESS, NULL },
324 { "cr", "body-characters", ED_EMAIL, ED_EMA_BODY_CHARACTERS, NULL },
325 { "c", "size", ED_EMAIL, ED_EMA_SIZE, NULL },
326 { "C", "number", ED_EMAIL, ED_EMA_NUMBER, NULL },
327 { "d", "date-format", ED_EMAIL, ED_EMA_DATE_FORMAT, NULL },
328 { "D", "date-format-local", ED_EMAIL, ED_EMA_DATE_FORMAT_LOCAL, NULL },
329 { "e", "thread-number", ED_EMAIL, ED_EMA_THREAD_NUMBER, NULL },
330 { "E", "thread-count", ED_EMAIL, ED_EMA_THREAD_COUNT, NULL },
331 { "f", "from-full", ED_ENVELOPE, ED_ENV_FROM_FULL, NULL },
332 { "Fp", "sender-plain", ED_ENVELOPE, ED_ENV_SENDER_PLAIN, NULL },
333 { "F", "sender", ED_ENVELOPE, ED_ENV_SENDER, NULL },
334 { "g", "tags", ED_EMAIL, ED_EMA_TAGS, NULL },
335 { "G", "tags-transformed", ED_EMAIL, ED_EMA_TAGS_TRANSFORMED, parse_tags_transformed },
336 { "H", "spam", ED_ENVELOPE, ED_ENV_SPAM, NULL },
337 { "i", "message-id", ED_ENVELOPE, ED_ENV_MESSAGE_ID, NULL },
338 { "I", "initials", ED_ENVELOPE, ED_ENV_INITIALS, NULL },
339 { "J", "thread-tags", ED_EMAIL, ED_EMA_THREAD_TAGS, NULL },
340 { "K", "list-empty", ED_ENVELOPE, ED_ENV_LIST_EMPTY, NULL },
341 { "l", "lines", ED_EMAIL, ED_EMA_LINES, NULL },
342 { "L", "from-list", ED_EMAIL, ED_EMA_FROM_LIST, NULL },
343 { "m", "message-count", ED_MAILBOX, ED_MBX_MESSAGE_COUNT, NULL },
344 { "M", "thread-hidden-count", ED_EMAIL, ED_EMA_THREAD_HIDDEN_COUNT, NULL },
345 { "n", "name", ED_ENVELOPE, ED_ENV_NAME, NULL },
346 { "N", "score", ED_EMAIL, ED_EMA_SCORE, NULL },
347 { "O", "save-folder", ED_EMAIL, ED_EMA_LIST_OR_SAVE_FOLDER, NULL },
348 { "P", "percentage", ED_MAILBOX, ED_MBX_PERCENTAGE, NULL },
349 { "q", "newsgroup", ED_ENVELOPE, ED_ENV_NEWSGROUP, NULL },
350 { "r", "to-all", ED_ENVELOPE, ED_ENV_TO_ALL, NULL },
351 { "R", "cc-all", ED_ENVELOPE, ED_ENV_CC_ALL, NULL },
352 { "s", "subject", ED_ENVELOPE, ED_ENV_SUBJECT, parse_subject },
353 { "S", "flag-chars", ED_EMAIL, ED_EMA_FLAG_CHARS, NULL },
354 { "t", "to", ED_ENVELOPE, ED_ENV_TO, NULL },
355 { "T", "to-chars", ED_EMAIL, ED_EMA_TO_CHARS, NULL },
356 { "u", "username", ED_ENVELOPE, ED_ENV_USERNAME, NULL },
357 { "v", "first-name", ED_ENVELOPE, ED_ENV_FIRST_NAME, NULL },
358 { "W", "organization", ED_ENVELOPE, ED_ENV_ORGANIZATION, NULL },
359 { "x", "x-comment-to", ED_ENVELOPE, ED_ENV_X_COMMENT_TO, NULL },
360 { "X", "attachment-count", ED_EMAIL, ED_EMA_ATTACHMENT_COUNT, NULL },
361 { "y", "x-label", ED_ENVELOPE, ED_ENV_X_LABEL, NULL },
362 { "Y", "thread-x-label", ED_ENVELOPE, ED_ENV_THREAD_X_LABEL, NULL },
363 { "Z", "combined-flags", ED_EMAIL, ED_EMA_COMBINED_FLAGS, NULL },
364 { "zc", "crypto-flags", ED_EMAIL, ED_EMA_CRYPTO_FLAGS, NULL },
365 { "zs", "status-flags", ED_EMAIL, ED_EMA_STATUS_FLAGS, NULL },
366 { "zt", "message-flags", ED_EMAIL, ED_EMA_MESSAGE_FLAGS, NULL },
368 { "{", NULL, ED_EMAIL, ED_EMA_STRF, parse_index_date },
369 { NULL, NULL, 0, -1, NULL }
370 // clang-format on
371};
372
375
385static const struct ExpandoDefinition StatusFormatDef[] = {
386 // clang-format off
387 { "*", "padding-soft", ED_GLOBAL, ED_GLO_PADDING_SOFT, node_padding_parse },
388 { ">", "padding-hard", ED_GLOBAL, ED_GLO_PADDING_HARD, node_padding_parse },
389 { "|", "padding-eol", ED_GLOBAL, ED_GLO_PADDING_EOL, node_padding_parse },
390 { "b", "unread-mailboxes", ED_INDEX, ED_IND_UNREAD_MAILBOXES, NULL },
391 { "d", "deleted-count", ED_INDEX, ED_IND_DELETED_COUNT, NULL },
392 { "D", "description", ED_INDEX, ED_IND_DESCRIPTION, NULL },
393 { "f", "mailbox-path", ED_INDEX, ED_IND_MAILBOX_PATH, NULL },
394 { "F", "flagged-count", ED_INDEX, ED_IND_FLAGGED_COUNT, NULL },
395 { "h", "hostname", ED_GLOBAL, ED_GLO_HOSTNAME, NULL },
396 { "l", "mailbox-size", ED_INDEX, ED_IND_MAILBOX_SIZE, NULL },
397 { "L", "limit-size", ED_INDEX, ED_IND_LIMIT_SIZE, NULL },
398 { "m", "message-count", ED_INDEX, ED_IND_MESSAGE_COUNT, NULL },
399 { "M", "limit-count", ED_INDEX, ED_IND_LIMIT_COUNT, NULL },
400 { "n", "new-count", ED_INDEX, ED_IND_NEW_COUNT, NULL },
401 { "o", "old-count", ED_INDEX, ED_IND_OLD_COUNT, NULL },
402 { "p", "postponed-count", ED_INDEX, ED_IND_POSTPONED_COUNT, NULL },
403 { "P", "percentage", ED_MENU, ED_MEN_PERCENTAGE, NULL },
404 { "r", "readonly", ED_INDEX, ED_IND_READONLY, NULL },
405 { "R", "read-count", ED_INDEX, ED_IND_READ_COUNT, NULL },
406 { "s", "sort", ED_GLOBAL, ED_GLO_SORT, NULL },
407 { "S", "sort-aux", ED_GLOBAL, ED_GLO_SORT_AUX, NULL },
408 { "t", "tagged-count", ED_INDEX, ED_IND_TAGGED_COUNT, NULL },
409 { "T", "use-threads", ED_GLOBAL, ED_GLO_USE_THREADS, NULL },
410 { "u", "unread-count", ED_INDEX, ED_IND_UNREAD_COUNT, NULL },
411 { "v", "version", ED_GLOBAL, ED_GLO_VERSION, NULL },
412 { "V", "limit-pattern", ED_INDEX, ED_IND_LIMIT_PATTERN, NULL },
413 { NULL, NULL, 0, -1, NULL }
414 // clang-format on
415};
416
419
423static struct ConfigDef MainVars[] = {
424 // clang-format off
425 { "abort_backspace", DT_BOOL, true, 0, NULL,
426 "Hitting backspace against an empty prompt aborts the prompt"
427 },
428 { "abort_key", DT_STRING|D_NOT_EMPTY|D_ON_STARTUP, IP "\007", 0, NULL,
429 "String representation of key to abort prompts"
430 },
431 { "arrow_cursor", DT_BOOL, false, 0, NULL,
432 "Use an arrow '->' instead of highlighting in the index"
433 },
434 { "arrow_string", DT_STRING|D_NOT_EMPTY, IP "->", 0, NULL,
435 "Use a custom string for arrow_cursor"
436 },
437 { "ascii_chars", DT_BOOL, false, 0, NULL,
438 "Use plain ASCII characters, when drawing email threads"
439 },
441 "If a message is missing a character set, assume this character set"
442 },
443 { "attach_format", DT_EXPANDO|D_NOT_EMPTY, IP "%u%D%I %t%4n %T%d %> [%.7m/%.10M, %.6e%<C?, %C>, %s] ", IP &AttachFormatDef, NULL,
444 "printf-like format string for the attachment menu"
445 },
446 { "attach_save_dir", DT_PATH|D_PATH_DIR, IP "./", 0, NULL,
447 "Default directory where attachments are saved"
448 },
449 { "attach_save_without_prompting", DT_BOOL, false, 0, NULL,
450 "If true, then don't prompt to save"
451 },
452 { "attach_sep", DT_STRING, IP "\n", 0, NULL,
453 "Separator to add between saved/printed/piped attachments"
454 },
455 { "attach_split", DT_BOOL, true, 0, NULL,
456 "Save/print/pipe tagged messages individually"
457 },
458 { "auto_edit", DT_BOOL, false, 0, NULL,
459 "Skip the initial compose menu and edit the email"
460 },
461 { "auto_subscribe", DT_BOOL, false, 0, NULL,
462 "Automatically check if the user is subscribed to a mailing list"
463 },
464 { "auto_tag", DT_BOOL, false, 0, NULL,
465 "Automatically apply actions to all tagged messages"
466 },
467 { "beep", DT_BOOL, true, 0, NULL,
468 "Make a noise when an error occurs"
469 },
470 { "beep_new", DT_BOOL, false, 0, NULL,
471 "Make a noise when new mail arrives"
472 },
473 { "bounce", DT_QUAD, MUTT_ASKYES, 0, NULL,
474 "Confirm before bouncing a message"
475 },
476 { "braille_friendly", DT_BOOL, false, 0, NULL,
477 "Move the cursor to the beginning of the line"
478 },
480 "Default character set for displaying text on screen"
481 },
482 { "collapse_flagged", DT_BOOL, true, 0, NULL,
483 "Prevent the collapse of threads with flagged emails"
484 },
485 { "collapse_unread", DT_BOOL, true, 0, NULL,
486 "Prevent the collapse of threads with unread emails"
487 },
488 { "color_directcolor", DT_BOOL|D_ON_STARTUP, false, 0, NULL,
489 "Use 24bit colors (aka truecolor aka directcolor)"
490 },
491 { "config_charset", DT_STRING, 0, 0, charset_validator,
492 "Character set that the config files are in"
493 },
494 { "confirm_append", DT_BOOL, true, 0, NULL,
495 "Confirm before appending emails to a mailbox"
496 },
497 { "confirm_create", DT_BOOL, true, 0, NULL,
498 "Confirm before creating a new mailbox"
499 },
500 { "copy_decode_weed", DT_BOOL, false, 0, NULL,
501 "Controls whether to weed headers when copying or saving emails"
502 },
503 { "count_alternatives", DT_BOOL, false, 0, NULL,
504 "Recurse inside multipart/alternatives while counting attachments"
505 },
506 { "crypt_chars", DT_MBTABLE, IP "SPsK ", 0, NULL,
507 "User-configurable crypto flags: signed, encrypted etc."
508 },
509 { "date_format", DT_STRING|D_NOT_EMPTY, IP "!%a, %b %d, %Y at %I:%M:%S%p %Z", 0, NULL,
510 "strftime format string for the `%d` expando"
511 },
512 { "debug_file", DT_PATH|D_PATH_FILE, IP "~/.neomuttdebug", 0, NULL,
513 "File to save debug logs"
514 },
515 { "debug_level", DT_NUMBER, 0, 0, level_validator,
516 "Logging level for debug logs"
517 },
518 { "default_hook", DT_STRING, IP "~f %s !~P | (~P ~C %s)", 0, NULL,
519 "Pattern to use for hooks that only have a simple regex"
520 },
521 { "delete", DT_QUAD, MUTT_ASKYES, 0, NULL,
522 "Really delete messages, when the mailbox is closed"
523 },
524 { "delete_untag", DT_BOOL, true, 0, NULL,
525 "Untag messages when they are marked for deletion"
526 },
527 { "digest_collapse", DT_BOOL, true, 0, NULL,
528 "Hide the subparts of a multipart/digest"
529 },
530 { "duplicate_threads", DT_BOOL, true, 0, NULL,
531 "Highlight messages with duplicated message IDs"
532 },
533 { "editor", DT_STRING|D_NOT_EMPTY|D_STRING_COMMAND, 0, 0, NULL,
534 "External command to use as an email editor"
535 },
536 { "flag_chars", DT_MBTABLE, IP "*!DdrONon- ", 0, NULL,
537 "User-configurable index flags: tagged, new, etc"
538 },
539 { "flag_safe", DT_BOOL, false, 0, NULL,
540 "Protect flagged messages from deletion"
541 },
542 { "folder", DT_STRING|D_STRING_MAILBOX, IP "~/Mail", 0, NULL,
543 "Base folder for a set of mailboxes"
544 },
545 { "force_name", DT_BOOL, false, 0, NULL,
546 "Save outgoing mail in a folder of their name"
547 },
548 { "forward_decode", DT_BOOL, true, 0, NULL,
549 "Decode the message when forwarding it"
550 },
551 { "forward_quote", DT_BOOL, false, 0, NULL,
552 "Automatically quote a forwarded message using `$indent_string`"
553 },
554 { "from", DT_ADDRESS, 0, 0, NULL,
555 "Default 'From' address to use, if isn't otherwise set"
556 },
557 { "from_chars", DT_MBTABLE, 0, 0, NULL,
558 "User-configurable index flags: to address, cc address, etc"
559 },
560 { "gecos_mask", DT_REGEX, IP "^[^,]*", 0, NULL,
561 "Regex for parsing GECOS field of /etc/passwd"
562 },
563 { "header", DT_BOOL, false, 0, NULL,
564 "Include the message headers in the reply email (Weed applies)"
565 },
566 { "hidden_tags", DT_SLIST|D_SLIST_SEP_COMMA, IP "unread,draft,flagged,passed,replied,attachment,signed,encrypted", 0, NULL,
567 "List of tags that shouldn't be displayed on screen (comma-separated)"
568 },
569 { "hide_limited", DT_BOOL, false, 0, NULL,
570 "Don't indicate hidden messages, in the thread tree"
571 },
572 { "hide_missing", DT_BOOL, true, 0, NULL,
573 "Don't indicate missing messages, in the thread tree"
574 },
575 { "hide_thread_subject", DT_BOOL, true, 0, NULL,
576 "Hide subjects that are similar to that of the parent message"
577 },
578 { "hide_top_limited", DT_BOOL, false, 0, NULL,
579 "Don't indicate hidden top message, in the thread tree"
580 },
581 { "hide_top_missing", DT_BOOL, true, 0, NULL,
582 "Don't indicate missing top message, in the thread tree"
583 },
584 { "honor_disposition", DT_BOOL, false, 0, NULL,
585 "Don't display MIME parts inline if they have a disposition of 'attachment'"
586 },
587 { "hostname", DT_STRING, 0, 0, NULL,
588 "Fully-qualified domain name of this machine"
589 },
590 { "implicit_auto_view", DT_BOOL, false, 0, NULL,
591 "Display MIME attachments inline if a 'copiousoutput' mailcap entry exists"
592 },
593 { "include_encrypted", DT_BOOL, false, 0, NULL,
594 "Whether to include encrypted content when replying"
595 },
596 { "include_only_first", DT_BOOL, false, 0, NULL,
597 "Only include the first attachment when replying"
598 },
599 { "indent_string", DT_EXPANDO, IP "> ", IP IndexFormatDefNoPadding, NULL,
600 "String used to indent 'reply' text"
601 },
602 { "index_format", DT_EXPANDO|D_NOT_EMPTY, IP "%4C %Z %{%b %d} %-15.15L (%<l?%4l&%4c>) %s", IP &IndexFormatDef, NULL,
603 "printf-like format string for the index menu (emails)"
604 },
605 { "keep_flagged", DT_BOOL, false, 0, NULL,
606 "Don't move flagged messages from `$spool_file` to `$mbox`"
607 },
608 { "local_date_header", DT_BOOL, true, 0, NULL,
609 "Convert the date in the Date header of sent emails into local timezone, UTC otherwise"
610 },
611 { "mail_check", DT_NUMBER|D_INTEGER_NOT_NEGATIVE, 5, 0, NULL,
612 "Number of seconds before NeoMutt checks for new mail"
613 },
614 { "mail_check_recent", DT_BOOL, true, 0, NULL,
615 "Notify the user about new mail since the last time the mailbox was opened"
616 },
617 { "mail_check_stats", DT_BOOL, false, 0, NULL,
618 "Periodically check for new mail"
619 },
620 { "mail_check_stats_interval", DT_NUMBER|D_INTEGER_NOT_NEGATIVE, 60, 0, NULL,
621 "How often to check for new mail"
622 },
623 { "mailcap_path", DT_SLIST|D_SLIST_SEP_COLON, IP "~/.mailcap:" PKGDATADIR "/mailcap:" SYSCONFDIR "/mailcap:/etc/mailcap:/usr/etc/mailcap:/usr/local/etc/mailcap", 0, NULL,
624 "List of mailcap files (colon-separated)"
625 },
626 { "mailcap_sanitize", DT_BOOL, true, 0, NULL,
627 "Restrict the possible characters in mailcap expandos"
628 },
629 { "mark_old", DT_BOOL, true, 0, NULL,
630 "Mark new emails as old when leaving the mailbox"
631 },
632 { "markers", DT_BOOL, true, 0, NULL,
633 "Display a '+' at the beginning of wrapped lines in the pager"
634 },
635 { "mbox", DT_STRING|D_STRING_MAILBOX, IP "~/mbox", 0, NULL,
636 "Folder that receives read emails (see Move)"
637 },
638 { "mbox_type", DT_ENUM, MUTT_MBOX, IP &MboxTypeDef, NULL,
639 "Default type for creating new mailboxes"
640 },
641 { "message_cache_clean", DT_BOOL, false, 0, NULL,
642 "(imap/pop) Clean out obsolete entries from the message cache"
643 },
644 { "message_cache_dir", DT_PATH|D_PATH_DIR, 0, 0, NULL,
645 "(imap/pop) Directory for the message cache"
646 },
647 { "message_format", DT_EXPANDO|D_NOT_EMPTY, IP "%s", IP &IndexFormatDef, NULL,
648 "printf-like format string for listing attached messages"
649 },
650 { "meta_key", DT_BOOL, false, 0, NULL,
651 "Interpret 'ALT-x' as 'ESC-x'"
652 },
653 { "mime_forward", DT_QUAD, MUTT_NO, 0, NULL,
654 "Forward a message as a 'message/RFC822' MIME part"
655 },
656 { "mime_forward_rest", DT_QUAD, MUTT_YES, 0, NULL,
657 "Forward all attachments, even if they can't be decoded"
658 },
659 { "move", DT_QUAD, MUTT_NO, 0, NULL,
660 "Move emails from `$spool_file` to `$mbox` when read"
661 },
662 { "narrow_tree", DT_BOOL, false, 0, NULL,
663 "Draw a narrower thread tree in the index"
664 },
665 { "net_inc", DT_NUMBER|D_INTEGER_NOT_NEGATIVE, 10, 0, NULL,
666 "(socket) Update the progress bar after this many KB sent/received (0 to disable)"
667 },
668 { "new_mail_command", DT_EXPANDO|D_STRING_COMMAND, 0, IP StatusFormatDefNoPadding, NULL,
669 "External command to run when new mail arrives"
670 },
671 { "pipe_decode", DT_BOOL, false, 0, NULL,
672 "Decode the message when piping it"
673 },
674 { "pipe_decode_weed", DT_BOOL, true, 0, NULL,
675 "Control whether to weed headers when piping an email"
676 },
677 { "pipe_sep", DT_STRING, IP "\n", 0, NULL,
678 "Separator to add between multiple piped messages"
679 },
680 { "pipe_split", DT_BOOL, false, 0, NULL,
681 "Run the pipe command on each message separately"
682 },
683 { "postponed", DT_STRING|D_STRING_MAILBOX, IP "~/postponed", 0, NULL,
684 "Folder to store postponed messages"
685 },
686 { "preferred_languages", DT_SLIST|D_SLIST_SEP_COMMA, 0, 0, NULL,
687 "List of Preferred Languages for multilingual MIME (comma-separated)"
688 },
689 { "print", DT_QUAD, MUTT_ASKNO, 0, NULL,
690 "Confirm before printing a message"
691 },
692 { "print_command", DT_STRING|D_STRING_COMMAND, IP "lpr", 0, NULL,
693 "External command to print a message"
694 },
695 { "print_decode", DT_BOOL, true, 0, NULL,
696 "Decode message before printing it"
697 },
698 { "print_decode_weed", DT_BOOL, true, 0, NULL,
699 "Control whether to weed headers when printing an email"
700 },
701 { "print_split", DT_BOOL, false, 0, NULL,
702 "Print multiple messages separately"
703 },
704 { "quit", DT_QUAD, MUTT_YES, 0, NULL,
705 "Prompt before exiting NeoMutt"
706 },
707 { "quote_regex", DT_REGEX, IP "^([ \t]*[|>:}#])+", 0, NULL,
708 "Regex to match quoted text in a reply"
709 },
710 { "read_inc", DT_NUMBER|D_INTEGER_NOT_NEGATIVE, 10, 0, NULL,
711 "Update the progress bar after this many records read (0 to disable)"
712 },
713 { "read_only", DT_BOOL, false, 0, NULL,
714 "Open folders in read-only mode"
715 },
716 { "real_name", DT_STRING, 0, 0, NULL,
717 "Real name of the user"
718 },
719 { "record", DT_STRING|D_STRING_MAILBOX, IP "~/sent", 0, NULL,
720 "Folder to save 'sent' messages"
721 },
722 { "reflow_space_quotes", DT_BOOL, true, 0, NULL,
723 "Insert spaces into reply quotes for 'format=flowed' messages"
724 },
725 { "reflow_text", DT_BOOL, true, 0, NULL,
726 "Reformat paragraphs of 'format=flowed' text"
727 },
728 { "reflow_wrap", DT_NUMBER, 78, 0, NULL,
729 "Maximum paragraph width for reformatting 'format=flowed' text"
730 },
731 // L10N: $reply_regex default format
732 //
733 // This is a regular expression that matches reply subject lines.
734 // By default, it only matches an initial "Re: ", which is the
735 // standardized Latin prefix.
736 //
737 // However, many locales have other prefixes that are commonly used
738 // too, such as Aw in Germany. To add other prefixes, modify the first
739 // parenthesized expression, such as:
740 // "^(re|aw)
741 // you can add multiple values, for example:
742 // "^(re|aw|sv)
743 //
744 // Important:
745 // - Use all lower case letters.
746 // - Don't remove the 're' prefix from the list of choices.
747 // - Please test the value you use inside Mutt. A mistake here will break
748 // NeoMutt's threading behavior. Note: the header cache can interfere with
749 // testing, so be sure to test with $header_cache unset.
750 { "reply_regex", DT_REGEX|D_L10N_STRING, IP N_("^((re)(\\[[0-9]+\\])*:[ \t]*)*"), 0, NULL,
751 "Regex to match message reply subjects like 're: '"
752 },
753 { "resolve", DT_BOOL, true, 0, NULL,
754 "Move to the next email whenever a command modifies an email"
755 },
756 { "resume_edited_draft_files", DT_BOOL, true, 0, NULL,
757 "Resume editing previously saved draft files"
758 },
759 { "reverse_alias", DT_BOOL, false, 0, NULL,
760 "Display the alias in the index, rather than the message's sender"
761 },
762 { "rfc2047_parameters", DT_BOOL, true, 0, NULL,
763 "Decode RFC2047-encoded MIME parameters"
764 },
765 { "save_address", DT_BOOL, false, 0, NULL,
766 "Use sender's full address as a default save folder"
767 },
768 { "save_empty", DT_BOOL, true, 0, NULL,
769 "(mbox,mmdf) Preserve empty mailboxes"
770 },
771 { "save_name", DT_BOOL, false, 0, NULL,
772 "Save outgoing message to mailbox of recipient's name if it exists"
773 },
774 { "score", DT_BOOL, true, 0, NULL,
775 "Use message scoring"
776 },
777 { "score_threshold_delete", DT_NUMBER, -1, 0, NULL,
778 "Messages with a lower score will be automatically deleted"
779 },
780 { "score_threshold_flag", DT_NUMBER, 9999, 0, NULL,
781 "Messages with a greater score will be automatically flagged"
782 },
783 { "score_threshold_read", DT_NUMBER, -1, 0, NULL,
784 "Messages with a lower score will be automatically marked read"
785 },
786 { "send_charset", DT_SLIST|D_SLIST_SEP_COLON|D_SLIST_ALLOW_EMPTY|D_CHARSET_STRICT, IP "us-ascii:iso-8859-1:utf-8", 0, charset_slist_validator,
787 "Character sets for outgoing mail"
788 },
789 { "shell", DT_STRING|D_STRING_COMMAND, IP "/bin/sh", 0, NULL,
790 "External command to run subshells in"
791 },
792 { "show_multipart_alternative", DT_STRING, 0, 0, multipart_validator,
793 "How to display 'multipart/alternative' MIME parts"
794 },
795 { "simple_search", DT_STRING, IP "~f %s | ~s %s", 0, NULL,
796 "Pattern to search for when search doesn't contain ~'s"
797 },
798 { "size_show_bytes", DT_BOOL, false, 0, NULL,
799 "Show smaller sizes in bytes"
800 },
801 { "size_show_fractions", DT_BOOL, true, 0, NULL,
802 "Show size fractions with a single decimal place"
803 },
804 { "size_show_mb", DT_BOOL, true, 0, NULL,
805 "Show sizes in megabytes for sizes greater than 1 megabyte"
806 },
807 { "size_units_on_left", DT_BOOL, false, 0, NULL,
808 "Show the units as a prefix to the size"
809 },
810 { "sleep_time", DT_NUMBER|D_INTEGER_NOT_NEGATIVE, 1, 0, NULL,
811 "Time to pause after certain info messages"
812 },
814 "Sort method for the index"
815 },
817 "Secondary sort method for the index"
818 },
819 { "sort_re", DT_BOOL, true, 0, NULL,
820 "Whether $reply_regex must be matched when not $strict_threads"
821 },
822 { "spam_separator", DT_STRING, IP ",", 0, NULL,
823 "Separator for multiple spam headers"
824 },
825 { "spool_file", DT_STRING|D_STRING_MAILBOX, 0, 0, NULL,
826 "Inbox"
827 },
828 { "status_chars", DT_MBTABLE, IP "-*%A", 0, NULL,
829 "Indicator characters for the status bar"
830 },
831 // L10N: $status_format default format
832 { "status_format", DT_EXPANDO|D_L10N_STRING, IP N_("-%r-NeoMutt: %D [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>]---(%<T?%T/>%s/%S)-%>-(%P)---"), IP &StatusFormatDef, NULL,
833 "printf-like format string for the index's status line"
834 },
835 { "status_on_top", DT_BOOL, false, 0, NULL,
836 "Display the status bar at the top"
837 },
838 { "strict_threads", DT_BOOL, false, 0, NULL,
839 "Thread messages using 'In-Reply-To' and 'References' headers"
840 },
841 { "suspend", DT_BOOL, true, 0, NULL,
842 "Allow the user to suspend NeoMutt using '^Z'"
843 },
844 { "text_flowed", DT_BOOL, false, 0, NULL,
845 "Generate 'format=flowed' messages"
846 },
847 { "thread_received", DT_BOOL, false, 0, NULL,
848 "Sort threaded messages by their received date"
849 },
850 { "time_inc", DT_NUMBER|D_INTEGER_NOT_NEGATIVE, 0, 0, NULL,
851 "Frequency of progress bar updates (milliseconds)"
852 },
853 { "timeout", DT_NUMBER|D_INTEGER_NOT_NEGATIVE, 600, 0, NULL,
854 "Time to wait for user input in menus"
855 },
856 { "tmp_dir", DT_PATH|D_PATH_DIR|D_NOT_EMPTY, IP TMPDIR, 0, NULL,
857 "Directory for temporary files"
858 },
859 { "to_chars", DT_MBTABLE, IP " +TCFLR", 0, NULL,
860 "Indicator characters for the 'To' field in the index"
861 },
862 { "trash", DT_STRING|D_STRING_MAILBOX, 0, 0, NULL,
863 "Folder to put deleted emails"
864 },
865 { "ts_enabled", DT_BOOL, false, 0, NULL,
866 "Allow NeoMutt to set the terminal status line and icon"
867 },
868 // L10N: $ts_icon_format default format
869 { "ts_icon_format", DT_EXPANDO|D_L10N_STRING, IP N_("M%<n?AIL&ail>"), IP StatusFormatDefNoPadding, NULL,
870 "printf-like format string for the terminal's icon title"
871 },
872 // L10N: $ts_status_format default format
873 { "ts_status_format", DT_EXPANDO|D_L10N_STRING, IP N_("NeoMutt with %<m?%m messages&no messages>%<n? [%n NEW]>"), IP StatusFormatDefNoPadding, NULL,
874 "printf-like format string for the terminal's status (window title)"
875 },
876 { "use_domain", DT_BOOL, true, 0, NULL,
877 "Qualify local addresses using this domain"
878 },
879 { "use_threads", DT_ENUM, UT_UNSET, IP &UseThreadsTypeDef, NULL,
880 "Whether to use threads for the index"
881 },
882 { "wait_key", DT_BOOL, true, 0, NULL,
883 "Prompt to press a key after running external commands"
884 },
885 { "weed", DT_BOOL, true, 0, NULL,
886 "Filter headers when displaying/forwarding/printing/replying"
887 },
888 { "wrap", DT_NUMBER, 0, 0, NULL,
889 "Width to wrap text in the pager"
890 },
891 { "wrap_search", DT_BOOL, true, 0, NULL,
892 "Wrap around when the search hits the end"
893 },
894 { "write_inc", DT_NUMBER|D_INTEGER_NOT_NEGATIVE, 10, 0, NULL,
895 "Update the progress bar after this many records written (0 to disable)"
896 },
897
898 { "cursor_overlay", D_INTERNAL_DEPRECATED|DT_BOOL, 0, IP "2020-07-20" },
899 { "escape", D_INTERNAL_DEPRECATED|DT_STRING, 0, IP "2021-03-18" },
900 { "ignore_linear_white_space", D_INTERNAL_DEPRECATED|DT_BOOL, 0, IP "2021-03-18" },
901 { "mixmaster", D_INTERNAL_DEPRECATED|DT_STRING, 0, IP "2024-05-30" },
902 { "mix_entry_format", D_INTERNAL_DEPRECATED|DT_EXPANDO,0, IP "2024-05-30" },
903 { "visual", D_INTERNAL_DEPRECATED|DT_STRING, 0, IP "2021-03-18" },
904
905 { "autoedit", DT_SYNONYM, IP "auto_edit", IP "2021-03-21" },
906 { "confirmappend", DT_SYNONYM, IP "confirm_append", IP "2021-03-21" },
907 { "confirmcreate", DT_SYNONYM, IP "confirm_create", IP "2021-03-21" },
908 { "edit_hdrs", DT_SYNONYM, IP "edit_headers", IP "2021-03-21" },
909 { "forw_decode", DT_SYNONYM, IP "forward_decode", IP "2021-03-21" },
910 { "forw_quote", DT_SYNONYM, IP "forward_quote", IP "2021-03-21" },
911 { "hdr_format", DT_SYNONYM, IP "index_format", IP "2021-03-21" },
912 { "implicit_autoview", DT_SYNONYM, IP "implicit_auto_view", IP "2023-01-25" },
913 { "include_onlyfirst", DT_SYNONYM, IP "include_only_first", IP "2021-03-21" },
914 { "indent_str", DT_SYNONYM, IP "indent_string", IP "2021-03-21" },
915 { "message_cachedir", DT_SYNONYM, IP "message_cache_dir", IP "2023-01-25" },
916 { "mime_fwd", DT_SYNONYM, IP "mime_forward", IP "2021-03-21" },
917 { "msg_format", DT_SYNONYM, IP "message_format", IP "2021-03-21" },
918 { "print_cmd", DT_SYNONYM, IP "print_command", IP "2021-03-21" },
919 { "quote_regexp", DT_SYNONYM, IP "quote_regex", IP "2021-03-21" },
920 { "realname", DT_SYNONYM, IP "real_name", IP "2021-03-21" },
921 { "reply_regexp", DT_SYNONYM, IP "reply_regex", IP "2021-03-21" },
922 { "spoolfile", DT_SYNONYM, IP "spool_file", IP "2021-03-21" },
923 { "tmpdir", DT_SYNONYM, IP "tmp_dir", IP "2023-01-25" },
924 { "xterm_icon", DT_SYNONYM, IP "ts_icon_format", IP "2021-03-21" },
925 { "xterm_set_titles", DT_SYNONYM, IP "ts_enabled", IP "2021-03-21" },
926 { "xterm_title", DT_SYNONYM, IP "ts_status_format", IP "2021-03-21" },
927
928 { "devel_security", DT_BOOL, false, 0, NULL,
929 "Devel feature: Security -- https://github.com/neomutt/neomutt/discussions/4251"
930 },
931
932 { NULL },
933 // clang-format on
934};
935
936#if defined(HAVE_LIBIDN)
940static struct ConfigDef MainVarsIdn[] = {
941 // clang-format off
942 { "idn_decode", DT_BOOL, true, 0, NULL,
943 "(idn) Decode international domain names"
944 },
945 { "idn_encode", DT_BOOL, true, 0, NULL,
946 "(idn) Encode international domain names"
947 },
948 { NULL },
949 // clang-format on
950};
951#endif
952
956static bool config_init_main(struct ConfigSet *cs)
957{
958 bool rc = cs_register_variables(cs, MainVars);
959
960#if defined(HAVE_LIBIDN)
962#endif
963
964 return rc;
965}
966
973static void init_types(struct ConfigSet *cs)
974{
976 CONFIG_INIT_TYPE(cs, Bool);
977 CONFIG_INIT_TYPE(cs, Enum);
979 CONFIG_INIT_TYPE(cs, Long);
980 CONFIG_INIT_TYPE(cs, Mbtable);
981 CONFIG_INIT_TYPE(cs, MyVar);
982 CONFIG_INIT_TYPE(cs, Number);
983 CONFIG_INIT_TYPE(cs, Path);
984 CONFIG_INIT_TYPE(cs, Quad);
987 CONFIG_INIT_TYPE(cs, Sort);
988 CONFIG_INIT_TYPE(cs, String);
989}
990
995static void init_variables(struct ConfigSet *cs)
996{
997 // Define the config variables
999 CONFIG_INIT_VARS(cs, alias);
1000#if defined(USE_AUTOCRYPT)
1001 CONFIG_INIT_VARS(cs, autocrypt);
1002#endif
1003 CONFIG_INIT_VARS(cs, browser);
1004 CONFIG_INIT_VARS(cs, compose);
1005 CONFIG_INIT_VARS(cs, conn);
1006#if defined(USE_HCACHE)
1007 CONFIG_INIT_VARS(cs, hcache);
1008#endif
1009 CONFIG_INIT_VARS(cs, helpbar);
1010 CONFIG_INIT_VARS(cs, history);
1011 CONFIG_INIT_VARS(cs, imap);
1012 CONFIG_INIT_VARS(cs, index);
1013 CONFIG_INIT_VARS(cs, maildir);
1014 CONFIG_INIT_VARS(cs, mh);
1015 CONFIG_INIT_VARS(cs, mbox);
1016 CONFIG_INIT_VARS(cs, menu);
1017 CONFIG_INIT_VARS(cs, ncrypt);
1018 CONFIG_INIT_VARS(cs, nntp);
1019#if defined(USE_NOTMUCH)
1020 CONFIG_INIT_VARS(cs, notmuch);
1021#endif
1022 CONFIG_INIT_VARS(cs, pager);
1023 CONFIG_INIT_VARS(cs, pattern);
1024 CONFIG_INIT_VARS(cs, pop);
1026 CONFIG_INIT_VARS(cs, sidebar);
1027}
1028
1033void init_config(struct ConfigSet *cs)
1034{
1035 init_types(cs);
1036 init_variables(cs);
1037}
GUI display the mailboxes in a side panel.
@ ED_ATT_NUMBER
AttachPtr.num.
Definition: attach.h:57
@ ED_ATT_TREE
AttachPtr.tree.
Definition: attach.h:58
@ ED_ATT_CHARSET
AttachPtr.body.
Definition: attach.h:56
int buf_printf(struct Buffer *buf, const char *fmt,...)
Format a string overwriting a Buffer.
Definition: buffer.c:161
Convenience wrapper for the config headers.
bool cs_register_variables(const struct ConfigSet *cs, struct ConfigDef vars[])
Register a set of config items.
Definition: set.c:281
#define CSR_ERR_INVALID
Value hasn't been set.
Definition: set.h:38
#define CSR_SUCCESS
Action completed successfully.
Definition: set.h:35
#define IP
Definition: set.h:54
Convenience wrapper for the core headers.
@ ED_MBX_MESSAGE_COUNT
Mailbox.msg_count.
Definition: mailbox.h:158
@ ED_MBX_PERCENTAGE
HdrFormatInfo.pager_progress.
Definition: mailbox.h:159
@ ED_MBX_MAILBOX_NAME
Mailbox, mailbox_path()
Definition: mailbox.h:157
@ MUTT_MBOX
'mbox' Mailbox type
Definition: mailbox.h:45
#define EP_NO_CUSTOM_PARSE
Don't use the custom parser.
Definition: definition.h:36
uint8_t ExpandoParserFlags
Flags for expando_parse(), e.g. EP_CONDITIONAL.
Definition: definition.h:33
#define EP_CONDITIONAL
Expando is being used as a condition.
Definition: definition.h:35
@ ED_ENVELOPE
Envelope ED_ENV_ ExpandoDataEnvelope.
Definition: domain.h:42
@ ED_EMAIL
Email ED_EMA_ ExpandoDataEmail.
Definition: domain.h:41
@ ED_MENU
Menu ED_MEN_ ExpandoDataMenu.
Definition: domain.h:48
@ ED_GLOBAL
Global ED_GLO_ ExpandoDataGlobal.
Definition: domain.h:44
@ ED_BODY
Body ED_BOD_ ExpandoDataBody.
Definition: domain.h:38
@ ED_MAILBOX
Mailbox ED_MBX_ ExpandoDataMailbox.
Definition: domain.h:47
@ ED_INDEX
Index ED_IND_ ExpandoDataIndex.
Definition: domain.h:46
@ ED_ATTACH
Attach ED_ATT_ ExpandoDataAttach.
Definition: domain.h:36
@ ED_BOD_DESCRIPTION
Body.description.
Definition: body.h:106
@ ED_BOD_CHARSET_CONVERT
Body.type.
Definition: body.h:104
@ ED_BOD_DELETED
Body.deleted.
Definition: body.h:105
@ ED_BOD_UNLINK
Body.unlink.
Definition: body.h:115
@ ED_BOD_FILE_SIZE
Body.filename.
Definition: body.h:110
@ ED_BOD_DISPOSITION
Body.disposition.
Definition: body.h:107
@ ED_BOD_ATTACH_QUALIFIES
Body.attach_qualifies.
Definition: body.h:103
@ ED_BOD_MIME_MAJOR
Body.type, Body.xtype.
Definition: body.h:112
@ ED_BOD_TAGGED
Body.tagged.
Definition: body.h:114
@ ED_BOD_ATTACH_COUNT
Body.attach_count.
Definition: body.h:102
@ ED_BOD_FILE
Body.filename.
Definition: body.h:108
@ ED_BOD_MIME_MINOR
Body.subtype.
Definition: body.h:113
@ ED_BOD_FILE_DISPOSITION
Body.d_filename.
Definition: body.h:109
@ ED_BOD_MIME_ENCODING
Body.encoding.
Definition: body.h:111
Structs that make up an email.
@ ED_EMA_ATTACHMENT_COUNT
Email, mutt_count_body_parts()
Definition: email.h:136
@ ED_EMA_DATE_FORMAT_LOCAL
Email.date_sent.
Definition: email.h:141
@ ED_EMA_TAGS_TRANSFORMED
Email.tags, driver_tags_get_transformed()
Definition: email.h:156
@ ED_EMA_THREAD_HIDDEN_COUNT
Email.collapsed, Email.num_hidden, ...
Definition: email.h:158
@ ED_EMA_DATE_FORMAT
Email.date_sent.
Definition: email.h:140
@ ED_EMA_THREAD_TAGS
Email.tags.
Definition: email.h:160
@ ED_EMA_TAGS
Email.tags.
Definition: email.h:155
@ ED_EMA_SIZE
Body.length.
Definition: email.h:150
@ ED_EMA_FLAG_CHARS
Email.deleted, Email.attach_del, ...
Definition: email.h:142
@ ED_EMA_THREAD_NUMBER
Email, mutt_messages_in_thread()
Definition: email.h:159
@ ED_EMA_TO_CHARS
Email, User_is_recipient()
Definition: email.h:161
@ ED_EMA_BODY_CHARACTERS
Body.length.
Definition: email.h:137
@ ED_EMA_STRF
Email.date_sent, Email.zhours, Email.zminutes, Email.zoccident.
Definition: email.h:152
@ ED_EMA_COMBINED_FLAGS
Email.read, Email.old, thread_is_new(), ...
Definition: email.h:138
@ ED_EMA_THREAD_COUNT
Email, mutt_messages_in_thread()
Definition: email.h:157
@ ED_EMA_STATUS_FLAGS
Email.deleted, Email.attach_del, ...
Definition: email.h:151
@ ED_EMA_NUMBER
Email.msgno.
Definition: email.h:148
@ ED_EMA_FROM_LIST
Envelope.to, Envelope.cc.
Definition: email.h:143
@ ED_EMA_SCORE
Email.score.
Definition: email.h:149
@ ED_EMA_CRYPTO_FLAGS
Email.security, SecurityFlags.
Definition: email.h:139
@ ED_EMA_STRF_RECV_LOCAL
Email.received.
Definition: email.h:154
@ ED_EMA_STRF_LOCAL
Email.date_sent.
Definition: email.h:153
@ ED_EMA_LIST_OR_SAVE_FOLDER
Envelope.to, Envelope.cc, check_for_mailing_list()
Definition: email.h:146
@ ED_EMA_INDEX_HOOK
Mailbox, Email, mutt_idxfmt_hook()
Definition: email.h:144
@ ED_EMA_LINES
Email.lines.
Definition: email.h:145
@ ED_EMA_MESSAGE_FLAGS
Email.tagged, Email.flagged.
Definition: email.h:147
@ ED_ENV_SUBJECT
Envelope.subject, Envelope.disp_subj.
Definition: envelope.h:116
@ ED_ENV_NEWSGROUP
Envelope.newsgroups.
Definition: envelope.h:109
@ ED_ENV_INITIALS
Envelope.from (first)
Definition: envelope.h:104
@ ED_ENV_FROM_FULL
Envelope.from (all)
Definition: envelope.h:103
@ ED_ENV_X_COMMENT_TO
Envelope.x_comment_to.
Definition: envelope.h:123
@ ED_ENV_FROM
Envelope.from (first)
Definition: envelope.h:102
@ ED_ENV_LIST_ADDRESS
Envelope.to, Envelope.cc.
Definition: envelope.h:105
@ ED_ENV_SPAM
Envelope.spam.
Definition: envelope.h:115
@ ED_ENV_SENDER
Envelope, make_from()
Definition: envelope.h:113
@ ED_ENV_TO_ALL
Envelope.to (all)
Definition: envelope.h:120
@ ED_ENV_X_LABEL
Envelope.x_label.
Definition: envelope.h:124
@ ED_ENV_NAME
Envelope.from (first)
Definition: envelope.h:108
@ ED_ENV_CC_ALL
Envelope.cc.
Definition: envelope.h:100
@ ED_ENV_ORGANIZATION
Envelope.organization.
Definition: envelope.h:110
@ ED_ENV_REPLY_TO
Envelope.reply_to.
Definition: envelope.h:112
@ ED_ENV_LIST_EMPTY
Envelope.to, Envelope.cc.
Definition: envelope.h:106
@ ED_ENV_THREAD_X_LABEL
Envelope.x_label.
Definition: envelope.h:118
@ ED_ENV_MESSAGE_ID
Envelope.message_id.
Definition: envelope.h:107
@ ED_ENV_SENDER_PLAIN
Envelope, make_from()
Definition: envelope.h:114
@ ED_ENV_USERNAME
Envelope.from.
Definition: envelope.h:121
@ ED_ENV_THREAD_TREE
Email.tree.
Definition: envelope.h:117
@ ED_ENV_TO
Envelope.to, Envelope.cc (first)
Definition: envelope.h:119
@ ED_ENV_FIRST_NAME
Envelope.from, Envelope.to, Envelope.cc.
Definition: envelope.h:101
Parse Expando string.
int charset_slist_validator(const struct ConfigSet *cs, const struct ConfigDef *cdef, intptr_t value, struct Buffer *err)
Validate the multiple "charset" config variables - Implements ConfigDef::validator() -.
Definition: charset.c:85
int charset_validator(const struct ConfigSet *cs, const struct ConfigDef *cdef, intptr_t value, struct Buffer *err)
Validate the "charset" config variables - Implements ConfigDef::validator() -.
Definition: charset.c:45
int sort_validator(const struct ConfigSet *cs, const struct ConfigDef *cdef, intptr_t value, struct Buffer *err)
Validate the "sort" config variable - Implements ConfigDef::validator() -.
Definition: mutt_thread.c:108
static int multipart_validator(const struct ConfigSet *cs, const struct ConfigDef *cdef, intptr_t value, struct Buffer *err)
Validate the "show_multipart_alternative" config variable - Implements ConfigDef::validator() -.
Definition: mutt_config.c:111
int level_validator(const struct ConfigSet *cs, const struct ConfigDef *cdef, intptr_t value, struct Buffer *err)
Validate the "debug_level" config variable - Implements ConfigDef::validator() -.
Definition: mutt_logging.c:270
static bool config_init_main(struct ConfigSet *cs)
Register main config variables - Implements module_init_config_t -.
Definition: mutt_config.c:956
struct ExpandoNode * node_padding_parse(const char *str, struct ExpandoFormat *fmt, int did, int uid, ExpandoParserFlags flags, const char **parsed_until, struct ExpandoParseError *err)
Parse a Padding Expando - Implements ExpandoDefinition::parse() -.
Definition: node_padding.c:234
struct ExpandoNode * parse_index_hook(const char *str, struct ExpandoFormat *fmt, int did, int uid, ExpandoParserFlags flags, const char **parsed_until, struct ExpandoParseError *err)
Parse an index-hook - Implements ExpandoDefinition::parse() -.
Definition: mutt_config.c:223
struct ExpandoNode * parse_subject(const char *str, struct ExpandoFormat *fmt, int did, int uid, ExpandoParserFlags flags, const char **parsed_until, struct ExpandoParseError *err)
Parse a Subject Expando - Implements ExpandoDefinition::parse() -.
Definition: mutt_config.c:277
struct ExpandoNode * parse_index_date_recv_local(const char *str, struct ExpandoFormat *fmt, int did, int uid, ExpandoParserFlags flags, const char **parsed_until, struct ExpandoParseError *err)
Parse a Date Expando - Implements ExpandoDefinition::parse() -.
Definition: mutt_config.c:164
struct ExpandoNode * parse_index_date_local(const char *str, struct ExpandoFormat *fmt, int did, int uid, ExpandoParserFlags flags, const char **parsed_until, struct ExpandoParseError *err)
Parse a Date Expando - Implements ExpandoDefinition::parse() -.
Definition: mutt_config.c:184
struct ExpandoNode * parse_index_date(const char *str, struct ExpandoFormat *fmt, int did, int uid, ExpandoParserFlags flags, const char **parsed_until, struct ExpandoParseError *err)
Parse a Date Expando - Implements ExpandoDefinition::parse() -.
Definition: mutt_config.c:203
struct ExpandoNode * parse_tags_transformed(const char *str, struct ExpandoFormat *fmt, int did, int uid, ExpandoParserFlags flags, const char **parsed_until, struct ExpandoParseError *err)
Parse a Tags-Transformed Expando - Implements ExpandoDefinition::parse() -.
Definition: mutt_config.c:244
int node_condbool_render(const struct ExpandoNode *node, const struct ExpandoRenderData *rdata, struct Buffer *buf, int max_cols, void *data, MuttFormatFlags flags)
Callback for every bool node - Implements ExpandoNode::render() -.
Definition: node_condbool.c:41
GUI manage the main index (list of emails)
@ ED_IND_LIMIT_COUNT
Mailbox.vcount.
Definition: shared_data.h:59
@ ED_IND_MAILBOX_PATH
Mailbox.pathbuf, Mailbox.name.
Definition: shared_data.h:62
@ ED_IND_DELETED_COUNT
Mailbox.msg_deleted.
Definition: shared_data.h:56
@ ED_IND_NEW_COUNT
Mailbox.msg_new.
Definition: shared_data.h:65
@ ED_IND_MAILBOX_SIZE
Mailbox.size.
Definition: shared_data.h:63
@ ED_IND_LIMIT_PATTERN
MailboxView.pattern.
Definition: shared_data.h:60
@ ED_IND_READ_COUNT
Mailbox.msg_count, Mailbox.msg_unread.
Definition: shared_data.h:69
@ ED_IND_POSTPONED_COUNT
mutt_num_postponed()
Definition: shared_data.h:67
@ ED_IND_FLAGGED_COUNT
Mailbox.msg_flagged.
Definition: shared_data.h:58
@ ED_IND_MESSAGE_COUNT
Mailbox.msg_count.
Definition: shared_data.h:64
@ ED_IND_OLD_COUNT
Mailbox.msg_unread, Mailbox.msg_new.
Definition: shared_data.h:66
@ ED_IND_READONLY
Mailbox.readonly, Mailbox.dontwrite.
Definition: shared_data.h:68
@ ED_IND_UNREAD_COUNT
Mailbox.msg_unread.
Definition: shared_data.h:71
@ ED_IND_TAGGED_COUNT
Mailbox.msg_tagged.
Definition: shared_data.h:70
@ ED_IND_LIMIT_SIZE
MailboxView.vsize.
Definition: shared_data.h:61
@ ED_IND_DESCRIPTION
Mailbox.name.
Definition: shared_data.h:57
@ ED_IND_UNREAD_MAILBOXES
Mailbox, mutt_mailbox_check()
Definition: shared_data.h:72
Config/command parsing.
GUI present the user with a selectable list.
@ ED_MEN_PERCENTAGE
Menu.top, ...
Definition: lib.h:68
Convenience wrapper for the library headers.
#define N_(a)
Definition: message.h:32
#define _(a)
Definition: message.h:28
static bool send(struct Notify *source, struct Notify *current, enum NotifyType event_type, int event_subtype, void *event_data)
Send out a notification message.
Definition: notify.c:120
char * mutt_strn_dup(const char *begin, size_t len)
Duplicate a sub-string.
Definition: string.c:380
bool mutt_str_equal(const char *a, const char *b)
Compare two strings.
Definition: string.c:660
#define CONFIG_INIT_VARS(CS, NAME)
Definition: mutt_config.c:60
static void init_types(struct ConfigSet *cs)
Create the config types.
Definition: mutt_config.c:973
const struct Mapping SortMethods[]
Sort methods for '$sort' for the index.
Definition: mutt_config.c:89
static const struct ExpandoDefinition StatusFormatDef[]
Expando definitions.
Definition: mutt_config.c:385
#define CONFIG_INIT_TYPE(CS, NAME)
Definition: mutt_config.c:56
void init_config(struct ConfigSet *cs)
Initialise the config system.
Definition: mutt_config.c:1033
static struct ConfigDef MainVarsIdn[]
IDN Config definitions.
Definition: mutt_config.c:940
const struct ExpandoDefinition *const StatusFormatDefNoPadding
StatusFormatDefNoPadding - Status format definitions, without padding.
Definition: mutt_config.c:418
static void init_variables(struct ConfigSet *cs)
Define the config variables.
Definition: mutt_config.c:995
static const struct ExpandoDefinition *const IndexFormatDefNoPadding
IndexFormatDefNoPadding - Index format definitions, without padding.
Definition: mutt_config.c:374
static struct ConfigDef MainVars[]
General Config definitions for NeoMutt.
Definition: mutt_config.c:423
static const struct Mapping SortAuxMethods[]
Sort methods for '$sort_aux' for the index.
Definition: mutt_config.c:67
const struct ExpandoDefinition IndexFormatDef[]
Expando definitions.
Definition: mutt_config.c:313
static const struct ExpandoDefinition AttachFormatDef[]
Expando definitions.
Definition: mutt_config.c:132
NeoMutt Logging.
const struct EnumDef UseThreadsTypeDef
Data for the $use_threads enumeration.
Definition: mutt_thread.c:67
Create/manipulate threading in emails.
@ UT_UNSET
Not yet set by user, stick to legacy semantics.
Definition: mutt_thread.h:98
const struct EnumDef MboxTypeDef
Data for the $mbox_type enumeration.
Definition: mx.c:92
API for mailboxes.
void node_add_child(struct ExpandoNode *node, struct ExpandoNode *child)
Add a child to an ExpandoNode.
Definition: node.c:76
@ ENT_CONDBOOL
True/False boolean condition.
Definition: node.h:42
struct ExpandoNode * node_conddate_parse(const char *str, int did, int uid, const char **parsed_until, struct ExpandoParseError *err)
Parse a CondDate format string.
struct ExpandoNode * node_container_new(void)
Create a new Container ExpandoNode.
struct ExpandoNode * node_expando_new(struct ExpandoFormat *fmt, int did, int uid)
Create a new Expando ExpandoNode.
Definition: node_expando.c:78
struct ExpandoNode * node_expando_parse_enclosure(const char *str, int did, int uid, char terminator, struct ExpandoFormat *fmt, const char **parsed_until, struct ExpandoParseError *err)
Parse an enclosed Expando.
Definition: node_expando.c:349
struct ExpandoNode * parse_short_name(const char *str, const struct ExpandoDefinition *defs, ExpandoParserFlags flags, struct ExpandoFormat *fmt, const char **parsed_until, struct ExpandoParseError *err)
Create an expando by its short name.
Definition: node_expando.c:245
@ MUTT_ASKNO
Ask the user, defaulting to 'No'.
Definition: quad.h:40
@ MUTT_NO
User answered 'No', or assume 'No'.
Definition: quad.h:38
@ MUTT_ASKYES
Ask the user, defaulting to 'Yes'.
Definition: quad.h:41
@ MUTT_YES
User answered 'Yes', or assume 'Yes'.
Definition: quad.h:39
@ SORT_SUBJECT
Sort by the email's subject.
Definition: sort2.h:38
@ SORT_ORDER
Sort by the order the messages appear in the mailbox.
Definition: sort2.h:40
@ SORT_THREADS
Sort by email threads.
Definition: sort2.h:41
@ SORT_SPAM
Sort by the email's spam score.
Definition: sort2.h:49
@ SORT_LABEL
Sort by the emails label.
Definition: sort2.h:54
@ SORT_FROM
Sort by the email's From field.
Definition: sort2.h:39
@ SORT_SIZE
Sort by the size of the email.
Definition: sort2.h:36
@ SORT_RECEIVED
Sort by when the message were delivered locally.
Definition: sort2.h:42
@ SORT_TO
Sort by the email's To field.
Definition: sort2.h:43
@ SORT_DATE
Sort by the date the email was sent.
Definition: sort2.h:35
@ SORT_SCORE
Sort by the email's score.
Definition: sort2.h:44
An email address.
Definition: address.h:36
String manipulation buffer.
Definition: buffer.h:36
Definition: set.h:64
const char * name
User-visible name.
Definition: set.h:65
Container for lots of config items.
Definition: set.h:252
Definition of a format string.
Definition: definition.h:44
Formatting information for an Expando.
Definition: node.h:53
Basic Expando Node.
Definition: node.h:67
int uid
Unique ID, e.g. ED_EMA_SIZE.
Definition: node.h:70
int(* render)(const struct ExpandoNode *node, const struct ExpandoRenderData *rdata, struct Buffer *buf, int max_cols, void *data, MuttFormatFlags flags)
Definition: node.h:91
struct ExpandoFormat * format
Formatting info.
Definition: node.h:72
int did
Domain ID, e.g. ED_EMAIL.
Definition: node.h:69
const char * text
Node-specific text.
Definition: node.h:73
enum ExpandoNodeType type
Type of Node, e.g. ENT_EXPANDO.
Definition: node.h:68
Buffer for parsing errors.
Definition: parse.h:37
char message[1024]
Error message.
Definition: parse.h:38
const char * position
Position of error in original string.
Definition: parse.h:39
Parsed Expando trees.
Definition: expando.h:41
Mapping between user-readable string and a constant.
Definition: mapping.h:33
int value
Integer value.
Definition: mapping.h:35
Cached regular expression.
Definition: regex3.h:86
String list.
Definition: slist.h:37
#define D_SLIST_SEP_COMMA
Slist items are comma-separated.
Definition: types.h:111
#define D_CHARSET_SINGLE
Flag for charset_validator to allow only one charset.
Definition: types.h:84
#define D_SLIST_SEP_COLON
Slist items are colon-separated.
Definition: types.h:112
#define D_INTERNAL_DEPRECATED
Config item shouldn't be used any more.
Definition: types.h:88
#define D_STRING_COMMAND
A command.
Definition: types.h:99
#define D_SLIST_ALLOW_EMPTY
Slist may be empty.
Definition: types.h:116
#define D_L10N_STRING
String can be localised.
Definition: types.h:82
#define D_PATH_DIR
Path is a directory.
Definition: types.h:103
#define D_CHARSET_STRICT
Flag for charset_validator to use strict char check.
Definition: types.h:85
#define D_PATH_FILE
Path is a file.
Definition: types.h:104
@ DT_NUMBER
a number
Definition: types.h:39
@ DT_SLIST
a list of strings
Definition: types.h:43
@ DT_BOOL
boolean option
Definition: types.h:32
@ DT_QUAD
quad-option (no/yes/ask-no/ask-yes)
Definition: types.h:41
@ DT_SYNONYM
synonym for another variable
Definition: types.h:46
@ DT_STRING
a string
Definition: types.h:45
@ DT_SORT
sorting methods
Definition: types.h:44
@ DT_MBTABLE
multibyte char table
Definition: types.h:37
@ DT_ADDRESS
e-mail address
Definition: types.h:31
@ DT_EXPANDO
an expando
Definition: types.h:34
@ DT_ENUM
an enumeration
Definition: types.h:33
@ DT_REGEX
regular expressions
Definition: types.h:42
@ DT_PATH
a path to a file/directory
Definition: types.h:40
#define D_STRING_MAILBOX
Don't perform path expansions.
Definition: types.h:98
#define D_SORT_LAST
Sort flag for -last prefix.
Definition: types.h:119
#define D_SORT_REVERSE
Sort flag for -reverse prefix.
Definition: types.h:120
#define D_NOT_EMPTY
Empty strings are not allowed.
Definition: types.h:80
#define D_INTEGER_NOT_NEGATIVE
Negative numbers are not allowed.
Definition: types.h:101
#define D_ON_STARTUP
May only be set at startup.
Definition: types.h:79
@ ED_GLO_SORT
Value of $sort.
Definition: uid.h:40
@ ED_GLO_PADDING_EOL
Padding to end-of-line.
Definition: uid.h:36
@ ED_GLO_VERSION
NeoMutt version.
Definition: uid.h:43
@ ED_GLO_PADDING_HARD
Hard Padding.
Definition: uid.h:37
@ ED_GLO_PADDING_SOFT
Soft Padding.
Definition: uid.h:38
@ ED_GLO_USE_THREADS
Value of $use_threads.
Definition: uid.h:42
@ ED_GLO_HOSTNAME
Local hostname.
Definition: uid.h:35
@ ED_GLO_SORT_AUX
Value of $sort_aux.
Definition: uid.h:41