24 lines
573 B
Plaintext
24 lines
573 B
Plaintext
use strict;
|
|
|
|
##
|
|
## Functionality required for amavis helpers like
|
|
## amavis-release.
|
|
##
|
|
|
|
# Enable required AM.PDP protocol socket.
|
|
#
|
|
# this is incompatible with the old helpers, but one can
|
|
# have multiple inet (not unix) sockets to overcome this
|
|
# issue. Refer to the amavisd-new documentation for more
|
|
# information
|
|
|
|
$unix_socketname = "/var/lib/amavis/amavisd.sock";
|
|
|
|
$interface_policy{'SOCK'} = 'AM.PDP-SOCK';
|
|
$policy_bank{'AM.PDP-SOCK'} = {
|
|
protocol => 'AM.PDP',
|
|
auth_required_release => 0, # don't require secret-id for release
|
|
};
|
|
|
|
1; # ensure a defined return
|