blob: 58e81fd7c3bdca2d74a28bd47b4692381db552bd (
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
|
=head1 MTA ������
=head2 SMTP �ѥ���
# Descriptions: �ҤȤĤ� SMTP �ȥ�������� MTA ���Ϥ������Ԥο��ξ��
# �ǥե���Ȥ� postfix �ˤ��碌�� 1000
# History: 4.0 ��ľ���б������ΤϤʤ���
# $MCI_SMTP_HOSTS �ϻ��Ƥ��뤬����äȰ㤦
# Value: NUM
# Examples:
smtp_recipient_limit = 1000
# Descriptions: �ǥե�����Ȥ� MTA �ϼ�ʬ����( localhost )
# IPv6 �� loopback ���ǥե���ȤʤΤ�������� :-)
# History: fml 4.0 �� $HOST
# Value: TRANSPORT_LIST
# Examples:
smtp_servers = [::1]:25
127.0.0.1:25
# Descriptions: SMTP �� MAIL FROM:<$smtp_sender> �ǻȤ��ѥ���
# History: fml 4.0 �� $SMTP_SENDER
# Value: RFC822_ADDRESS
# Examples: elena-admin@fml.org
smtp_sender = $maintainer
=head2 mail queue
# Descriptions: mail queue �Υǥ��쥯�ȥ�
# History: �����褦����Ū�� tmp/ ���Ȥ��Ƥ�������
# fml 4.0 �ˤ�ľ�ܳ��������ΤϤʤ���
# Value: DIR
# Examples: /var/spool/ml/elena/var/mail/queue
mail_queue_dir = $var_dir/mail/queue
=head2 �ǥХå�����Ω�ĵ�ǽ
=head3 SMTP ����
# Descriptions: SMTP ���ͻҤ�����ˤȤ뤫��
# History: $USE_SMTP_LOG
# Value: YES_OR_NO
# Examples: yes
use_smtp_log = yes
=head3 ���ϥǡ����Υ���å���
# Descriptions: ���Ϥ�������å��夹�뤫��
# History: $NUM_LOG_MAIL
# Value: YES_OR_NO
# Examples: y
use_incoming_mail_cache = yes
# Descriptions: ���Ϥ��������֤��ǥ��쥯�ȥ�
# 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: ���Ϥ���������粿�̥���å��夹�뤫
# History: $NUM_LOG_MAIL
# Value: NUM
# Examples: 128
incoming_mail_cache_size = 128
=head3 ����(����)�ǡ����Υ���å���
# Descriptions: ����(����)��������å��夹�뤫��
# History: $NUM_LOG_MAIL
# Value: YES_OR_NO
# Examples: yes
use_outgoing_mail_cache = yes
# Descriptions: deliver ���������֤��ǥ��쥯�ȥ�
# 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: ����(����)����������粿�̥���å��夹�뤫
# History: $NUM_LOG_MAIL
# Value: NUM
# Examples: 128
outgoing_mail_cache_size = 128
|