NeoMutt  2023-05-17-16-g61469c
Teaching an old dog new tricks
DOXYGEN
config.c File Reference

Config used by libmaildir. More...

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

Go to the source code of this file.

Functions

bool config_init_maildir (struct ConfigSet *cs)
 Register maildir config variables - Implements module_init_config_t -. More...
 

Variables

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

Detailed Description

Config used by libmaildir.

Authors
  • Richard Russon

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"
},
{ "maildir_trash", DT_BOOL, false, 0, NULL,
"Use the maildir 'trashed' flag, rather than deleting"
},
{ "mh_purge", DT_BOOL, false, 0, NULL,
"Really delete files in MH mailboxes"
},
{ "mh_seq_flagged", DT_STRING, IP "flagged", 0, NULL,
"MH sequence for flagged message"
},
{ "mh_seq_replied", DT_STRING, IP "replied", 0, NULL,
"MH sequence to tag replied messages"
},
{ "mh_seq_unseen", DT_STRING, IP "unseen", 0, NULL,
"MH sequence for unseen messages"
},
{ NULL },
}
#define IP
Definition: set.h:54
#define DT_BOOL
boolean option
Definition: types.h:30
#define DT_STRING
a string
Definition: types.h:41

Config definitions for the Maildir library.

Definition at line 37 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 68 of file config.c.