summaryrefslogtreecommitdiff
path: root/pingd.conf.sample
diff options
context:
space:
mode:
authorPeter Palfrader <peter@palfrader.org>2002-09-12 17:21:59 +0000
committerPeter Palfrader <peter@palfrader.org>2002-09-12 17:21:59 +0000
commit76208645376520df36e155b56e515594f7f7a6d6 (patch)
tree54fbb748040f00222bbc685d503ce8852b4496a9 /pingd.conf.sample
parentd931db7fc5cc86fe91e86b71a0515bbd6f88f1c0 (diff)
Comment given config options
Diffstat (limited to 'pingd.conf.sample')
-rw-r--r--pingd.conf.sample32
1 files changed, 25 insertions, 7 deletions
diff --git a/pingd.conf.sample b/pingd.conf.sample
index 2b63f0c..d12ae74 100644
--- a/pingd.conf.sample
+++ b/pingd.conf.sample
@@ -1,17 +1,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 = {
- 'sitename' => 'unconfigured',
+ # A short name for your site/pinger. Is used in the statistics produced.
+ 'sitename' => 'unconfigured',
- 'my_localpart' => 'pinger',
- 'my_domain' => 'example.com',
- 'operator_address' => 'remop@example.org',
+ # The local part of the pinger's email address
+ # In "pinger@example.com" the localpart is "pinger".
+ 'my_localpart' => 'pinger',
- #'mixmaster' => '/home/pinger/Mix/mix',
+ # 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,
- 'separate_rlists' => 0,
- 'combined_list' => 0,
};
1;