For tracing purposes, added the amavis received header to the message. MR !9
40 lines
1.1 KiB
Plaintext
40 lines
1.1 KiB
Plaintext
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
|
|
#
|
|
|
|
# Higher log level to get expected messages at startup
|
|
$log_level = 2;
|
|
|
|
$X_HEADER_LINE = "Virus Scanning product";
|
|
|
|
$virus_admin = "postmaster";
|
|
$banned_admin = "postmaster";
|
|
|
|
$final_virus_destiny = D_DISCARD; # (data not lost, see virus quarantine)
|
|
$final_banned_destiny = D_DISCARD;
|
|
$final_spam_destiny = D_PASS;
|
|
$final_bad_header_destiny = D_PASS;
|
|
|
|
$sa_spam_subject_tag = '';
|
|
$sa_tag_level_deflt = -999; # add spam info headers if at, or above that level
|
|
$sa_tag2_level_deflt = 6.31; # add 'spam detected' headers at that level
|
|
$sa_kill_level_deflt = 6.31; # triggers spam evasive actions
|
|
$sa_dsn_cutoff_level = 10; # spam level beyond which a DSN is not sent
|
|
|
|
$spam_quarantine_to = undef;
|
|
|
|
# disable the "Received" headers to be added to the mail header
|
|
#$allowed_added_header_fields{lc('Received')} = 0;
|
|
|
|
|
|
#------------ Do not modify anything below this line -------------
|
|
1; # ensure a defined return
|
|
|
|
|