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
|
/* Copyright (c) 2005-2018 Dovecot authors, see the included COPYING file */
#include "lib.h"
#include "hostpid.h"
#include "settings-parser.h"
#include "mail-storage-settings.h"
#include "smtp-submit-settings.h"
#include "lda-settings.h"
#include <stddef.h>
static bool lda_settings_check(void *_set, pool_t pool, const char **error_r);
#undef DEF
#undef DEFLIST
#define DEF(type, name) \
SETTING_DEFINE_STRUCT_##type(#name, name, struct lda_settings)
#define DEFLIST(field, name, defines) \
{ .type = SET_DEFLIST, .key = name, \
.offset = offsetof(struct lda_settings, field), \
.list_info = defines }
static const struct setting_define lda_setting_defines[] = {
DEF(STR, hostname),
DEF(STR, rejection_subject),
DEF(STR, rejection_reason),
DEF(STR, deliver_log_format),
DEF(STR, recipient_delimiter),
DEF(STR, lda_original_recipient_header),
DEF(BOOL, quota_full_tempfail),
DEF(BOOL, lda_mailbox_autocreate),
DEF(BOOL, lda_mailbox_autosubscribe),
SETTING_DEFINE_LIST_END
};
static const struct lda_settings lda_default_settings = {
.hostname = "",
.rejection_subject = "Rejected: %s",
.rejection_reason =
"Your message to <%t> was automatically rejected:%n%r",
.deliver_log_format = "msgid=%m: %$",
.recipient_delimiter = "+",
.lda_original_recipient_header = "",
.quota_full_tempfail = FALSE,
.lda_mailbox_autocreate = FALSE,
.lda_mailbox_autosubscribe = FALSE
};
static const struct setting_parser_info *lda_setting_dependencies[] = {
&mail_user_setting_parser_info,
&smtp_submit_setting_parser_info,
NULL
};
const struct setting_parser_info lda_setting_parser_info = {
.module_name = "lda",
.defines = lda_setting_defines,
.defaults = &lda_default_settings,
.type_offset = SIZE_MAX,
.struct_size = sizeof(struct lda_settings),
.parent_offset = SIZE_MAX,
#ifndef CONFIG_BINARY
.check_func = lda_settings_check,
#endif
.dependencies = lda_setting_dependencies
};
static bool lda_settings_check(void *_set, pool_t pool,
const char **error_r ATTR_UNUSED)
{
struct lda_settings *set = _set;
if (*set->hostname == '\0')
set->hostname = p_strdup(pool, my_hostdomain());
return TRUE;
}
|