committing changes in /etc made by "-bash"
Package changes:
This commit is contained in:
@@ -16,6 +16,7 @@ aws_s3 {
|
||||
# Required attributes
|
||||
#s3_bucket = 'xxx';
|
||||
s3_region = 'us-east-1';
|
||||
s3_host = 's3.amazonaws.com';
|
||||
#s3_secret_key = 'xxx';
|
||||
#s3_key_id = 'xxx';
|
||||
# Enable in local.d/aws_s3.conf
|
||||
|
||||
29
rspamd/modules.d/bimi.conf
Normal file
29
rspamd/modules.d/bimi.conf
Normal file
@@ -0,0 +1,29 @@
|
||||
# Please don't modify this file as your changes might be overwritten with
|
||||
# the next update.
|
||||
#
|
||||
# You can modify 'local.d/asn.conf' to add and merge
|
||||
# parameters defined inside this section
|
||||
#
|
||||
# You can modify 'override.d/asn.conf' to strictly override all
|
||||
# parameters defined inside this section
|
||||
#
|
||||
# See https://rspamd.com/doc/faq.html#what-are-the-locald-and-overrided-directories
|
||||
# for details
|
||||
#
|
||||
# Module documentation can be found at https://rspamd.com/doc/modules/asn.html
|
||||
|
||||
bimi {
|
||||
# Required attributes
|
||||
#helper_url = "http://127.0.0.1:3030",
|
||||
helper_timeout = 5s;
|
||||
helper_sync = true;
|
||||
vmc_only = true;
|
||||
redis_prefix = 'rs_bimi';
|
||||
redis_min_expiry = 24h;
|
||||
|
||||
# Enable in local.d/bimi.conf
|
||||
enabled = false;
|
||||
.include(try=true,priority=5) "${DBDIR}/dynamic/bimi.conf"
|
||||
.include(try=true,priority=1,duplicate=merge) "$LOCAL_CONFDIR/local.d/bimi.conf"
|
||||
.include(try=true,priority=10) "$LOCAL_CONFDIR/override.d/bimi.conf"
|
||||
}
|
||||
@@ -30,7 +30,8 @@ mime_types {
|
||||
];
|
||||
pdf = [
|
||||
"application/octet-stream",
|
||||
"application/pdf"
|
||||
"application/pdf",
|
||||
"application/x-pdf"
|
||||
];
|
||||
}
|
||||
|
||||
|
||||
@@ -238,7 +238,7 @@ rbl {
|
||||
ignore_defaults = true;
|
||||
rbl = "dbl.spamhaus.org";
|
||||
no_ip = true;
|
||||
checks = ['emails', 'dkim', 'urls'];
|
||||
checks = ['emails', 'dkim', 'helo', 'rdns', 'replyto', 'urls'];
|
||||
emails_domainonly = true;
|
||||
|
||||
returncodes = {
|
||||
@@ -269,18 +269,19 @@ rbl {
|
||||
}
|
||||
|
||||
# Not enabled by default due to privacy concerns! (see also groups.d/surbl_group.conf)
|
||||
#"SPAMHAUS_ZEN_URIBL" {
|
||||
# suffix = "zen.spamhaus.org";
|
||||
# resolve_ip = true;
|
||||
# check_emails = true;
|
||||
# ips {
|
||||
# URIBL_SBL = "127.0.0.2";
|
||||
# URIBL_SBL_CSS = "127.0.0.3";
|
||||
# URIBL_XBL = ["127.0.0.4", "127.0.0.5", "127.0.0.6", "127.0.0.7"];
|
||||
# URIBL_PBL = ["127.0.0.10", "127.0.0.11"];
|
||||
# URIBL_DROP = "127.0.0.9";
|
||||
# }
|
||||
#}
|
||||
"SPAMHAUS_ZEN_URIBL" {
|
||||
enabled = false;
|
||||
rbl = "zen.spamhaus.org";
|
||||
checks = ['emails'];
|
||||
resolve_ip = true;
|
||||
returncodes = {
|
||||
URIBL_SBL = "127.0.0.2";
|
||||
URIBL_SBL_CSS = "127.0.0.3";
|
||||
URIBL_XBL = ["127.0.0.4", "127.0.0.5", "127.0.0.6", "127.0.0.7"];
|
||||
URIBL_PBL = ["127.0.0.10", "127.0.0.11"];
|
||||
URIBL_DROP = "127.0.0.9";
|
||||
}
|
||||
}
|
||||
|
||||
"SEM_URIBL_UNKNOWN" {
|
||||
ignore_defaults = true;
|
||||
|
||||
Reference in New Issue
Block a user