diff options
Diffstat (limited to 'debian')
-rw-r--r-- | debian/pingd.conf | 26 |
1 files changed, 15 insertions, 11 deletions
diff --git a/debian/pingd.conf b/debian/pingd.conf index dab1a8c..d1c5b89 100644 --- a/debian/pingd.conf +++ b/debian/pingd.conf @@ -3,19 +3,23 @@ # see man pingd.conf(5) for a list of all available configuration options. $CONFIG = { - 'separate_rlists' => 0, - 'combined_list' => 0, + 'separate_rlists' => 1, + 'combined_list' => 1, }; -$CONFIG->{'mixmaster'} = 'mixmaster'; -$CONFIG->{'mailin'} = '/var/mail/echolot'; -$CONFIG->{'homedir'} = '/var/lib/echolot'; -$CONFIG->{'pidfile'} = '/var/run/echolot/pingd.pid'; -$CONFIG->{'logfile'} = '/var/log/echolot/echolot.log'; +$CONFIG->{'mailin' } = '/var/mail/echolot'; -### BEGIN DEBCONF SECTION -# not configured yet -1; -### END DEBCONF SECTION +# 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; |