harshadyeola
10 years ago
5 changed files with 88 additions and 0 deletions
@ -0,0 +1,27 @@ |
|||
use strict; |
|||
|
|||
# You can modify this file to re-enable SPAM checking through spamassassin |
|||
# and to re-enable antivirus checking. |
|||
|
|||
# |
|||
# Default antivirus checking mode |
|||
# Please note, that anti-virus checking is DISABLED by |
|||
# default. |
|||
# If You wish to enable it, please uncomment the following lines: |
|||
|
|||
|
|||
@bypass_virus_checks_maps = ( |
|||
\%bypass_virus_checks, \@bypass_virus_checks_acl, \$bypass_virus_checks_re); |
|||
|
|||
|
|||
# |
|||
# Default SPAM checking mode |
|||
# Please note, that anti-spam checking is DISABLED by |
|||
# default. |
|||
# If You wish to enable it, please uncomment the following lines: |
|||
|
|||
|
|||
@bypass_spam_checks_maps = ( |
|||
\%bypass_spam_checks, \@bypass_spam_checks_acl, \$bypass_spam_checks_re); |
|||
|
|||
1; # ensure a defined return |
@ -0,0 +1,17 @@ |
|||
use strict; |
|||
$sa_spam_subject_tag = undef; |
|||
$spam_quarantine_to = undef; |
|||
$sa_tag_level_deflt = undef; |
|||
|
|||
# Prevent spams from automatically rejected by mail-server |
|||
$final_spam_destiny = D_PASS; |
|||
|
|||
# We need to provide list of domains for which filtering need to be done |
|||
@lookup_sql_dsn = ( |
|||
['DBI:mysql:database=vimbadmin;host=127.0.0.1;port=3306', |
|||
'vimbadmin', |
|||
'{{password}}']); |
|||
|
|||
$sql_select_policy = 'SELECT domain FROM domain WHERE CONCAT("@",domain) IN (%k)'; |
|||
|
|||
1; # ensure a defined return |
Loading…
Reference in new issue