diff options
Diffstat (limited to 'trunk/debian/pingd.conf')
-rw-r--r-- | trunk/debian/pingd.conf | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/trunk/debian/pingd.conf b/trunk/debian/pingd.conf new file mode 100644 index 0000000..d1c5b89 --- /dev/null +++ b/trunk/debian/pingd.conf @@ -0,0 +1,25 @@ +# vim:set syntax=perl: + +# see man pingd.conf(5) for a list of all available configuration options. + +$CONFIG = { + 'separate_rlists' => 1, + 'combined_list' => 1, + }; + +$CONFIG->{'mailin' } = '/var/mail/echolot'; + +# You probably want to modify these: +$CONFIG->{'my_localpart' } = 'echolot'; +$CONFIG->{'my_domain' } = 'pinger.example.org'; +$CONFIG->{'operator_address' } = 'abuse@pinger.example.org'; +$CONFIG->{'sitename' } = 'example'; +#$CONFIG->{'recipient_delimiter' } = '+'; +$CONFIG->{'recipient_delimiter' } = ''; + + +$CONFIG->{'mixmaster'} = 'mixmaster'; +$CONFIG->{'homedir' } = '/var/lib/echolot'; +$CONFIG->{'pidfile' } = '/var/run/echolot/pingd.pid'; +$CONFIG->{'logfile' } = '/var/log/echolot/echolot.log'; +1; |