NeoMutt  2024-03-23-147-g885fbc
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
config.c File Reference

Config used by libmaildir. More...

#include "config.h"
#include <stddef.h>
#include <ctype.h>
#include <stdbool.h>
#include <stdint.h>
#include <string.h>
#include "mutt/lib.h"
#include "config/lib.h"
+ Include dependency graph for config.c:

Go to the source code of this file.

Functions

static int maildir_field_delimiter_validator (const struct ConfigSet *cs, const struct ConfigDef *cdef, intptr_t value, struct Buffer *err)
 Validate the "maildir_field_delimiter" config variable - Implements ConfigDef::validator() -.
 
bool config_init_maildir (struct ConfigSet *cs)
 Register maildir config variables - Implements module_init_config_t -.
 

Variables

static struct ConfigDef MaildirVars []
 Config definitions for the Maildir library.
 
static struct ConfigDef MaildirVarsHcache []
 Config definitions for the Maildir header cache.
 

Detailed Description

Config used by libmaildir.

Authors
  • Richard Russon
  • Pietro Cerutti

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.

Definition in file config.c.

Variable Documentation

◆ MaildirVars

struct ConfigDef MaildirVars[]
static
Initial value:
= {
{ "check_new", DT_BOOL, true, 0, NULL,
"(maildir,mh) Check for new mail while the mailbox is open"
},
{ "maildir_check_cur", DT_BOOL, false, 0, NULL,
"Check both 'new' and 'cur' directories for new mail"
},
"Field delimiter to be used for maildir email files (default is colon, recommended alternative is semi-colon)"
},
{ "maildir_trash", DT_BOOL, false, 0, NULL,
"Use the maildir 'trashed' flag, rather than deleting"
},
{ NULL },
}
#define IP
Definition: set.h:54
static int maildir_field_delimiter_validator(const struct ConfigSet *cs, const struct ConfigDef *cdef, intptr_t value, struct Buffer *err)
Validate the "maildir_field_delimiter" config variable - Implements ConfigDef::validator() -.
Definition: config.c:44
@ DT_BOOL
boolean option
Definition: types.h:32
@ DT_STRING
a string
Definition: types.h:45
#define D_NOT_EMPTY
Empty strings are not allowed.
Definition: types.h:80
#define D_ON_STARTUP
May only be set at startup.
Definition: types.h:79

Config definitions for the Maildir library.

Definition at line 70 of file config.c.

◆ MaildirVarsHcache

struct ConfigDef MaildirVarsHcache[]
static
Initial value:
= {
{ "maildir_header_cache_verify", DT_BOOL, true, 0, NULL,
"Check for maildir changes when opening mailbox"
},
{ NULL },
}

Config definitions for the Maildir header cache.

Definition at line 92 of file config.c.