blob: 747fff572b5c9f20a9be39ef32458c78c8fb3b0b (
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
|
=head1 error message analyzer
=head2
# Descriptions: where error mail is forwarded to ?
# it is useful to use mysql to control recipients of
# error messages.
# History: none
# Value: maps
# Examples: file:$ml_home_dir/recipients-maintainer
# $admin_recipient_maps
maintainer_recipient_maps =
=head2 process
# Descriptions: use error message analyzer ?
# History: none
# use_error_analyzer_program (fml8 pre alpha)
# Value: yes
# Examples: yes / no
use_error_mail_analyzer_function = ${use_error_analyzer_program:-yes}
=head2 cache
# Descriptions: directory to cache error messages.
# History: /var/spool/ml/mead/errormaillog
# Value: directory
# Examples:
error_analyzer_cache_dir = $db_dir/error
# Descriptions: module as cache engine
# History: none
# Value: string
# Examples: File::CacheDir
error_analyzer_cache_type = File::CacheDir
# Descriptions: mode of cache expiration
# History: none
# Value: string
# Examples:
error_analyzer_cache_mode = temporal
# Descriptions: cache size.
# it implies days if the cache mode is temporal.
# History: none
# Value: number
# Examples:
error_analyzer_cache_size = 14
=head2 analyzer
# Descriptions: functions defined in FML::Error::Analyze
# History: none
# Value: simple_count / histgram
# Examples: simple_count
error_analyzer_function_select_list = simple_count
histgram
# Descriptions: function in FML::Error::Analyze to analyze.
# History: none
# Value: simple_count / histgram
# Examples: simple_count
error_analyzer_function = histgram
# Descriptions: error limit in using simple_count as anlyzer function.
# History: none
# Value: NUM
# Examples: 5
error_analyzer_simple_count_limit = 5
|