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
|
# vim:set syntax=perl:
# see man pingd.conf(5) for a list of all available configuration options.
# There are a lot more than those listed in this sample.
$CONFIG = {
# A short name for your site/pinger. Is used in the statistics produced.
'sitename' => 'unconfigured',
# The local part of the pinger's email address
# In "pinger@example.com" the localpart is "pinger".
'my_localpart' => 'pinger',
# The domain part of the pinger's email address.
# In "pinger@example.com" the localpart is "example.com".
'my_domain' => 'example.com',
# The email address of the human operator that runs this pinger.
'operator_address' => 'remop@example.org',
# Name of the mixmaster executable. If it is not in your PATH make
# sure to include path information.
#'mixmaster' => '/home/pinger/Mix/mix',
# The recipient_delimiter parameter specifies the separator between user names
# and address extensions (user+foo).
#
# If it is an empty string Echolot does not make use of user defined mailboxes
# but rather encodes the message type et al in a Comment/Realname part of an
# address.
#
# The use of recipient_delimiter is strongly recommended if your MTA setup
# supports it.
'recipient_delimiter' => '+',
#'recipient_delimiter' => '',
# Also build separate rlists with data from only DSA pings, only RSA
# pings and only unencrypted pings.
'separate_rlists' => 0,
# Build a combined list of all different stats too. While this is no
# standard format it is nice to read for a human eye.
'combined_list' => 0,
# Log file and level (valid levels are debug, info, notice, warning, error,
# critical, alert, emergency)
#'logfile' => 'pingd.log',
#'loglevel' => 'info',
};
1;
|