2015-07-14 22:37:13 +00:00
|
|
|
use strict;
|
|
|
|
|
|
|
|
#
|
|
|
|
# Place your configuration directives here. They will override those in
|
|
|
|
# earlier files.
|
|
|
|
#
|
|
|
|
# See /usr/share/doc/amavisd-new/ for documentation and examples of
|
|
|
|
# the directives you can use in this file
|
|
|
|
#
|
|
|
|
|
|
|
|
# DOCKERMAIL DOMAINS START
|
|
|
|
# DOCKERMAIL DOMAINS END
|
|
|
|
|
|
|
|
# See http://opensource.apple.com/source/amavisd/amavisd-114/amavisd/amavisd-new-2.4.4/amavisd.conf-sample
|
|
|
|
# for details on asterisk reinjection configuration
|
2015-07-25 01:24:55 +00:00
|
|
|
$forward_method = 'smtp:*:10025';
|
|
|
|
$notify_method = $forward_method;
|
2015-07-14 22:37:13 +00:00
|
|
|
|
2015-07-25 01:24:55 +00:00
|
|
|
# Bind on all interfaces (needed to expose this to linked containers)
|
|
|
|
$inet_socket_bind = '0.0.0.0';
|
|
|
|
# Accept incoming requests from all addresses (change if used outside of linked containers!)
|
|
|
|
@inet_acl = qw( ::/0 );
|
2015-07-14 22:37:13 +00:00
|
|
|
|
|
|
|
#------------ Do not modify anything below this line -------------
|
|
|
|
1; # ensure a defined return
|