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