blob: caa33bf3a1c094c4fa05a4cdcf854a58157bdf34 (
plain)
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
|
=head1 MTA related configurations
# Descriptions:
# History:
# Value: MIX ( postfix sendmail qmail procmail )
# Examples:
newml_command_mta_config_list = postfix sendmail qmail procmail
# Descriptions:
# History:
# Value: MIX ( postfix sendmail qmail procmail )
# Examples:
rmml_command_mta_config_list = $newml_command_mta_config_list
=head2 directory
# Descriptions: directory to hold config files for MTA
# History: hard-coded in fml 4.0
# Value: DIR
# Examples: /var/spool/ml/etc/mail
domain_mail_config_dir = $domain_config_base_dir/mail
# Descriptions: directory to hold postfix specific config files.
# History: hard-coded in fml 4.0
# Value: DIR
# Examples: /var/spool/ml/etc/mail
domain_postfix_config_dir = $domain_config_base_dir/postfix
# Descriptions: directory to hold qmail specific config files.
# History: hard-coded in fml 4.0
# Value: DIR
# Examples: /var/spool/ml/etc/mail
domain_qmail_config_dir = $domain_config_base_dir/qmail
# Descriptions: directory to hold exim specific config files.
# History: hard-coded in fml 4.0
# Value: DIR
# Examples: /var/spool/ml/etc/mail
domain_exim_config_dir = $domain_config_base_dir/exim
# Descriptions: directory to hold sendmail specific config files.
# History: hard-coded in fml 4.0
# Value: DIR
# Examples: /var/spool/ml/etc/sendmail
domain_sendmail_config_dir = $domain_config_base_dir/sendmail
# Descriptions: directory to hold procmail specific config files.
# History: hard-coded in fml 4.0
# Value: DIR
# Examples: /var/spool/ml/etc/procmail
domain_procmail_config_dir = $domain_config_base_dir/procmail
=head2 sendmail / postfix
# Descriptions: aliases
# History: hard-coded in fml 4.0
# Value: FILE
# Examples: /var/spool/ml/etc/mail/aliases
mail_aliases_file = $domain_mail_config_dir/aliases
=head2 postfix
# Descriptions: virtual map file
# History: none
# Value: FILE
# Examples: /var/spool/ml/etc/mail/virtual
postfix_virtual_map_file = $domain_postfix_config_dir/virtual
# Descriptions: templates of include files
# Value: FILE_LIST
# Examples:
newml_command_postfix_template_files = include
include-ctl
include-error
# Descriptions: verps delimieters used in postfix
# History: none
# Value: RFC822_ADDRESS_DELIMITERS
# Examples: +=
postfix_verp_delimiters = +=
=head2 qmail
# Descriptions: templates files of ~fml/.qmail-*
# Value: FILE_LIST
# Examples:
newml_command_qmail_template_files = dot-qmail
dot-qmail-ctl
dot-qmail-admin
dot-qmail-request
dot-qmail-default
# Descriptions: virtual domain configurations for qmail
# History: none
# Value: FILE
# Examples: /var/qmail/control/virtualdomains
qmail_virtualdomains_file = /var/qmail/control/virtualdomains
# Descriptions: template of /var/qmail/control/virtualdomains
# History: none
# Value: FILE
# Examples: /var/spool/ml/etc/qmail/virtualdomains
qmail_virtual_map_file = $domain_qmail_config_dir/virtualdomains
# Descriptions: verps delimieters used in qmail
# History: none
# Value: RFC822_ADDRESS_DELIMITERS
# Examples: -=
qmail_verp_delimiters = -=
=head2 sendmail
# Descriptions: sample of /etc/mail/virtusertable
# History: none
# Value: FILE
# Examples: /var/spool/ml/etc/mail/virtual
sendmail_virtual_map_file = $domain_sendmail_config_dir/virtusertable
=head2 procmail
# Descriptions: sample of ~fml/.procmailrc
# History: hard-coded in fml 4.0
# Value: FILE
# Examples: /var/spool/ml/etc/procmail/aliases
procmail_aliases_file = $domain_procmail_config_dir/procmailrc
|