| 1 |
weasel |
204 |
# vim:set syntax=perl: |
| 2 |
|
|
|
| 3 |
weasel |
235 |
# see man pingd.conf(5) for a list of all available configuration options. |
| 4 |
weasel |
300 |
# There are a lot more than those listed in this sample. |
| 5 |
weasel |
235 |
|
| 6 |
weasel |
204 |
$CONFIG = { |
| 7 |
weasel |
300 |
# A short name for your site/pinger. Is used in the statistics produced. |
| 8 |
|
|
'sitename' => 'unconfigured', |
| 9 |
weasel |
204 |
|
| 10 |
weasel |
300 |
# The local part of the pinger's email address |
| 11 |
weasel |
400 |
# In "pinger@remailer.example.com" the localpart is "pinger". |
| 12 |
weasel |
300 |
'my_localpart' => 'pinger', |
| 13 |
weasel |
204 |
|
| 14 |
weasel |
400 |
# The FQDN of the pinger's email address. |
| 15 |
|
|
# In "pinger@remailer.example.com" the FQDN is "remailer.example.com". |
| 16 |
|
|
'my_domain' => 'remailer.example.com', |
| 17 |
weasel |
204 |
|
| 18 |
weasel |
300 |
# 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 |
weasel |
330 |
# 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 |
weasel |
300 |
# 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 |
weasel |
370 |
# Log file and level (valid levels are debug, info, notice, warning, error, |
| 46 |
|
|
# critical, alert, emergency) |
| 47 |
|
|
#'logfile' => 'pingd.log', |
| 48 |
|
|
#'loglevel' => 'info', |
| 49 |
|
|
|
| 50 |
weasel |
204 |
}; |
| 51 |
|
|
1; |