blob: d12ae7412831ab9cac6c92f189c606b97d7093ba (
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
|
# 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',
# 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,
};
1;
|