forked from infra/ansible
38 lines
875 B
Django/Jinja
38 lines
875 B
Django/Jinja
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
|
|
#
|
|
|
|
$remove_existing_spam_headers = 1;
|
|
|
|
$sa_tag_level_deflt = undef;
|
|
$sa_tag2_level_deflt = 5.0;
|
|
$sa_kill_level_deflt = $sa_tag2_level_deflt;
|
|
$sa_spam_subject_tag = undef;
|
|
|
|
$final_virus_destiny = D_PASS;
|
|
$final_banned_destiny = D_PASS;
|
|
$final_spam_destiny = D_PASS;
|
|
$final_bad_header_destiny = D_PASS;
|
|
|
|
$virus_admin = undef;
|
|
|
|
$virus_quarantine_to = undef;
|
|
$spam_quarantine_to = undef;
|
|
|
|
$X_HEADER_LINE = "$myproduct_name at $mydomain";
|
|
|
|
@local_domains_acl = ("{{ mail_domain }}"
|
|
{%- for domain in mail_domains %}
|
|
, "{{ domain }}"
|
|
{%- endfor %}
|
|
);
|
|
|
|
#------------ Do not modify anything below this line -------------
|
|
1; # ensure a defined return
|