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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
/* Copyright (c) 2009-2018 Dovecot authors, see the included COPYING file */
#include "lib.h"
#include "buffer.h"
#include "settings-parser.h"
#include "service-settings.h"
#include "dict-settings.h"
/* <settings checks> */
static struct file_listener_settings dict_unix_listeners_array[] = {
{ "dict", 0660, "", "$default_internal_group" }
};
static struct file_listener_settings *dict_unix_listeners[] = {
&dict_unix_listeners_array[0]
};
static buffer_t dict_unix_listeners_buf = {
{ { dict_unix_listeners, sizeof(dict_unix_listeners) } }
};
static struct file_listener_settings dict_async_unix_listeners_array[] = {
{ "dict-async", 0660, "", "$default_internal_group" }
};
static struct file_listener_settings *dict_async_unix_listeners[] = {
&dict_async_unix_listeners_array[0]
};
static buffer_t dict_async_unix_listeners_buf = {
{ { dict_async_unix_listeners, sizeof(dict_async_unix_listeners) } }
};
/* </settings checks> */
struct service_settings dict_service_settings = {
.name = "dict",
.protocol = "",
.type = "",
.executable = "dict",
.user = "$default_internal_user",
.group = "",
.privileged_group = "",
.extra_groups = "",
.chroot = "",
.drop_priv_before_exec = FALSE,
.process_min_avail = 0,
.process_limit = 0,
.client_limit = 1,
.service_count = 0,
.idle_kill = 0,
.vsz_limit = UOFF_T_MAX,
.unix_listeners = { { &dict_unix_listeners_buf,
sizeof(dict_unix_listeners[0]) } },
.fifo_listeners = ARRAY_INIT,
.inet_listeners = ARRAY_INIT
};
struct service_settings dict_async_service_settings = {
.name = "dict-async",
.protocol = "",
.type = "",
.executable = "dict",
.user = "$default_internal_user",
.group = "",
.privileged_group = "",
.extra_groups = "",
.chroot = "",
.drop_priv_before_exec = FALSE,
.process_min_avail = 0,
.process_limit = 0,
.client_limit = 0,
.service_count = 0,
.idle_kill = 0,
.vsz_limit = UOFF_T_MAX,
.unix_listeners = { { &dict_async_unix_listeners_buf,
sizeof(dict_async_unix_listeners[0]) } },
.fifo_listeners = ARRAY_INIT,
.inet_listeners = ARRAY_INIT
};
#undef DEF
#define DEF(type, name) \
SETTING_DEFINE_STRUCT_##type(#name, name, struct dict_server_settings)
static const struct setting_define dict_setting_defines[] = {
DEF(STR, base_dir),
DEF(BOOL, verbose_proctitle),
DEF(STR, dict_db_config),
{ .type = SET_STRLIST, .key = "dict",
.offset = offsetof(struct dict_server_settings, dicts) },
SETTING_DEFINE_LIST_END
};
const struct dict_server_settings dict_default_settings = {
.base_dir = PKG_RUNDIR,
.verbose_proctitle = FALSE,
.dict_db_config = "",
.dicts = ARRAY_INIT
};
const struct setting_parser_info dict_setting_parser_info = {
.module_name = "dict",
.defines = dict_setting_defines,
.defaults = &dict_default_settings,
.type_offset = SIZE_MAX,
.struct_size = sizeof(struct dict_server_settings),
.parent_offset = SIZE_MAX
};
const struct dict_server_settings *dict_settings;
|