1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
/* Copyright (c) 2005-2018 Dovecot authors, see the included COPYING file */
#include "lib.h"
#include "settings-parser.h"
#include "mail-storage-settings.h"
#include "maildir-settings.h"
#include <stddef.h>
#undef DEF
#define DEF(type, name) \
SETTING_DEFINE_STRUCT_##type(#name, name, struct maildir_settings)
static const struct setting_define maildir_setting_defines[] = {
DEF(BOOL, maildir_copy_with_hardlinks),
DEF(BOOL, maildir_very_dirty_syncs),
DEF(BOOL, maildir_broken_filename_sizes),
DEF(BOOL, maildir_empty_new),
SETTING_DEFINE_LIST_END
};
static const struct maildir_settings maildir_default_settings = {
.maildir_copy_with_hardlinks = TRUE,
.maildir_very_dirty_syncs = FALSE,
.maildir_broken_filename_sizes = FALSE,
.maildir_empty_new = FALSE
};
static const struct setting_parser_info maildir_setting_parser_info = {
.module_name = "maildir",
.defines = maildir_setting_defines,
.defaults = &maildir_default_settings,
.type_offset = SIZE_MAX,
.struct_size = sizeof(struct maildir_settings),
.parent_offset = SIZE_MAX,
.parent = &mail_user_setting_parser_info
};
const struct setting_parser_info *maildir_get_setting_parser_info(void)
{
return &maildir_setting_parser_info;
}
|