NeoMutt  2025-12-11-435-g4ac674
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
config.c
Go to the documentation of this file.
1
22
28
29#include "config.h"
30#include <stdbool.h>
31#include <stddef.h>
32#include "config/lib.h"
33
37struct ConfigDef MboxVars[] = {
38 // clang-format off
39 { "check_mbox_size", DT_BOOL, false, 0, NULL,
40 "(mbox,mmdf) Use mailbox size as an indicator of new mail"
41 },
42 { NULL },
43 // clang-format on
44};
Convenience wrapper for the config headers.
struct ConfigDef MboxVars[]
Config definitions for the Mbox library.
Definition config.c:37
@ DT_BOOL
boolean option
Definition types.h:32