blob: d1c5b893d9dca2f1a75e5429b75e53fb196354a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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;
|