blob: 03f594d0781bdff3c2b542e7a04929773708c023 (
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
|
=head1 MTA configurations
=head2 SMTP server parameters
# Descriptions: recipient limits over one smtp transaction.
# 1000 by default and ite value is same as postfix.
# History: none
# Value: NUM
# Examples:
smtp_recipient_limit = 1000
# Descriptions: smtp servers.
# IPv4 and IPv6 loopback by default :)
# History: fml 4.0's $HOST
# Value: TRANSPORT_LIST
# Examples:
smtp_servers = [::1]:25
127.0.0.1:25
# Descriptions: MAIL FROM:<$smtp_sender> in SMTP
# History: fml 4.0 $SMTP_SENDER
# Value: RFC822_ADDRESS
# Examples: elena-admin@fml.org
smtp_sender = $maintainer
=head2 mail queue
# Descriptions: mail queue directory
# History: none
# Value: DIR
# Examples: /var/spool/ml/elena/var/mail/queue
mail_queue_dir = $var_dir/mail/queue
=head2 debug of smtp
=head3 smtp logging
# Descriptions: log smtp transaction ?
# History: $USE_SMTP_LOG
# Value: YES_OR_NO
# Examples: yes
use_smtp_log = yes
=head3 input mail cache
# Descriptions: cache incoing mail ?
# History: $NUM_LOG_MAIL
# Value: YES_OR_NO
# Examples: yes
use_incoming_mail_cache = yes
# Descriptions: incoming mail queue directory
# History: LOG_MAIL_DIR ($DIR/var/Mail/)
# Value: DIR
# Examples: /var/spool/ml/elena/var/mail/incoming
incoming_mail_cache_dir = $var_dir/mail/incoming
# Descriptions: the maximum number of cached incoming mails
# History: $NUM_LOG_MAIL
# Value: NUM
# Examples: 128
incoming_mail_cache_size = 128
=head3 outgoing mail cache
# Descriptions: cache outgoing mail cache ?
# History: $NUM_LOG_MAIL
# Value: YES_OR_NO
# Examples: yes
use_outgoing_mail_cache = yes
# Descriptions: outgoing mail cache directory
# History: LOG_MAIL_DIR ($DIR/var/Mail/)
# Value: DIR
# Examples: /var/spool/ml/elena/var/mail/outgoing
outgoing_mail_cache_dir = $var_dir/mail/outgoing
# Descriptions: the maximum number of cached outgoing mails
# History: $NUM_LOG_MAIL
# Value: NUM
# Examples: 128
outgoing_mail_cache_size = 128
|