| 1 |
# vim:set syntax=perl:
|
| 2 |
|
| 3 |
# see man pingd.conf(5) for a list of all available configuration options.
|
| 4 |
# There are a lot more than those listed in this sample.
|
| 5 |
|
| 6 |
$CONFIG = {
|
| 7 |
# A short name for your site/pinger. Is used in the statistics produced.
|
| 8 |
'sitename' => 'unconfigured',
|
| 9 |
|
| 10 |
# The local part of the pinger's email address
|
| 11 |
# In "pinger@example.com" the localpart is "pinger".
|
| 12 |
'my_localpart' => 'pinger',
|
| 13 |
|
| 14 |
# The domain part of the pinger's email address.
|
| 15 |
# In "pinger@example.com" the localpart is "example.com".
|
| 16 |
'my_domain' => 'example.com',
|
| 17 |
|
| 18 |
# The email address of the human operator that runs this pinger.
|
| 19 |
'operator_address' => 'remop@example.org',
|
| 20 |
|
| 21 |
# Name of the mixmaster executable. If it is not in your PATH make
|
| 22 |
# sure to include path information.
|
| 23 |
#'mixmaster' => '/home/pinger/Mix/mix',
|
| 24 |
|
| 25 |
# The recipient_delimiter parameter specifies the separator between user names
|
| 26 |
# and address extensions (user+foo).
|
| 27 |
#
|
| 28 |
# If it is an empty string Echolot does not make use of user defined mailboxes
|
| 29 |
# but rather encodes the message type et al in a Comment/Realname part of an
|
| 30 |
# address.
|
| 31 |
#
|
| 32 |
# The use of recipient_delimiter is strongly recommended if your MTA setup
|
| 33 |
# supports it.
|
| 34 |
'recipient_delimiter' => '+',
|
| 35 |
#'recipient_delimiter' => '',
|
| 36 |
|
| 37 |
# Also build separate rlists with data from only DSA pings, only RSA
|
| 38 |
# pings and only unencrypted pings.
|
| 39 |
'separate_rlists' => 0,
|
| 40 |
|
| 41 |
# Build a combined list of all different stats too. While this is no
|
| 42 |
# standard format it is nice to read for a human eye.
|
| 43 |
'combined_list' => 0,
|
| 44 |
|
| 45 |
};
|
| 46 |
1;
|