blob: 795e81ec83ed004bb6b6b37ea9f52e12be7a6cdc (
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
|
=head1 fetchfml: pop/imap based mta and ml emulation
# Descriptions: use fetchfml function or not.
# History: none
# Value: YES_OR_NO
# Examples: yes / no
use_fetchfml_function = no
# Descriptions: queue_dir fetchfml uses as temporary incoming queue
# which holds messages fetched via POP3/IMAP4.
# History: none
# Value: DIR
# Examples: /var/spool/ml/elena/var/mail/queue-fetchfml
fetchfml_queue_dir = $var_dir/mail/queue-fetchfml
# Descriptions: protocol to fetch messages.
# History: none
# Value: SELECT ( pop3 pop apop imap4 imap )
# Examples: pop3
fetchfml_fetch_protocol = pop3
# Descriptions: use fetchfml article_post function or not.
# History: none
# Value: YES_OR_NO
# Examples: yes / no
use_fetchfml_article_post_function = yes
# Descriptions: username to fetch article messages for $ml_name ML
# History: none
# Value: STR
# Examples: elena
fetchfml_article_post_user = $ml_name
# Descriptions: password to fetch article messages for $ml_name ML
# History: none
# Value: STR
# Examples: elena
fetchfml_article_post_password = ********
# Descriptions: use fetchfml command_mail function or not.
# History: none
# Value: YES_OR_NO
# Examples: yes / no
use_fetchfml_command_mail_function = yes
# Descriptions: username to fetch command messages for $ml_name ML
# History: none
# Value: STR
# Examples: elena
fetchfml_command_mail_user = $ml_name-ctl
# Descriptions: password to fetch command messages for $ml_name ML
# History: none
# Value: STR
# Examples: elena
fetchfml_command_mail_password = ********
# Descriptions: use fetchfml error_mail_analyzer function or not.
# History: none
# Value: YES_OR_NO
# Examples: yes / no
use_fetchfml_error_mail_analyzer_function = yes
# Descriptions: username to fetch error messages for $ml_name ML
# History: none
# Value: STR
# Examples: elena
fetchfml_error_mail_analyzer_user = $ml_name-admin
# Descriptions: password to fetch error messages for $ml_name ML
# History: none
# Value: STR
# Examples: elena
fetchfml_error_mail_analyzer_password = ********
# Descriptions: pop servers fetchfml process uses.
# History: none
# Value: STR
# Examples: pop.example.co.jp
fetchfml_pop_servers = localhost
# Descriptions: imap servers fetchfml process uses.
# History: none
# Value: STR
# Examples: imap.example.co.jp
fetchfml_imap_servers = localhost
|