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 MhVars[] = {
38 // clang-format off
39 { "mh_purge", DT_BOOL, false, 0, NULL,
40 "Really delete files in MH mailboxes"
41 },
42 { "mh_seq_flagged", DT_STRING, IP "flagged", 0, NULL,
43 "MH sequence for flagged message"
44 },
45 { "mh_seq_replied", DT_STRING, IP "replied", 0, NULL,
46 "MH sequence to tag replied messages"
47 },
48 { "mh_seq_unseen", DT_STRING, IP "unseen", 0, NULL,
49 "MH sequence for unseen messages"
50 },
51 { NULL },
52 // clang-format on
53};
Convenience wrapper for the config headers.
#define IP
Definition set.h:54
struct ConfigDef MhVars[]
Config definitions for the Mh library.
Definition config.c:37
@ DT_BOOL
boolean option
Definition types.h:32
@ DT_STRING
a string
Definition types.h:44