27 lines
939 B
Plaintext
27 lines
939 B
Plaintext
use strict;
|
|
|
|
#
|
|
# These are Ubuntu specific defaults for amavisd-new configuration
|
|
#
|
|
# DOMAIN KEYS IDENTIFIED MAIL (DKIM)
|
|
$enable_dkim_verification = 1;
|
|
# Don't be verbose about sending mail:
|
|
@whitelist_sender_acl = qw( .$mydomain );
|
|
$final_virus_destiny = D_DISCARD; # (defaults to D_BOUNCE)
|
|
$final_banned_destiny = D_DISCARD; # (defaults to D_BOUNCE)
|
|
$final_spam_destiny = D_DISCARD; # (defaults to D_REJECT)
|
|
$final_bad_header_destiny = D_PASS; # (defaults to D_PASS), D_BOUNCE suggested
|
|
|
|
$sa_tag_level_deflt = -999; # add spam info headers if at, or above that level
|
|
$sa_tag2_level_deflt = 1.0; # add 'spam detected' headers at that level
|
|
$sa_kill_level_deflt = 21.0; # triggers spam evasive actions
|
|
$sa_dsn_cutoff_level = 4; # spam level beyond which a DSN is not sent
|
|
|
|
|
|
|
|
|
|
$virus_admin = undef;
|
|
$spam_admin = undef;
|
|
|
|
#------------ Do not modify anything below this line -------------
|
|
1; # insure a defined return |