diff --git a/data/conf/rspamd/local.d/metrics.conf b/data/conf/rspamd/local.d/metrics.conf index fd7f7f9e..bc947147 100644 --- a/data/conf/rspamd/local.d/metrics.conf +++ b/data/conf/rspamd/local.d/metrics.conf @@ -43,3 +43,6 @@ group "policies" { score = 4.0; } } +symbol "CTYPE_MIXED_BOGUS" { + score = 0.0; +} diff --git a/data/conf/rspamd/local.d/options.inc b/data/conf/rspamd/local.d/options.inc index f915a151..ce17d9e0 100644 --- a/data/conf/rspamd/local.d/options.inc +++ b/data/conf/rspamd/local.d/options.inc @@ -3,7 +3,7 @@ dns { } map_watch_interval = 30s; dns { - timeout = 4s; + timeout = 15s; retransmits = 5; } disable_monitored = true; diff --git a/data/conf/rspamd/local.d/policies_group.conf b/data/conf/rspamd/local.d/policies_group.conf new file mode 100644 index 00000000..3fcc4d5a --- /dev/null +++ b/data/conf/rspamd/local.d/policies_group.conf @@ -0,0 +1,5 @@ +symbols = { + "ARC_REJECT" { + weight = 0.0; + } +} diff --git a/data/web/css/admin.css b/data/web/css/admin.css index eb6b64f8..5f4f7c0e 100644 --- a/data/web/css/admin.css +++ b/data/web/css/admin.css @@ -56,4 +56,7 @@ body.modal-open { .thumbnail img { min-height:100px; height:100px; -} \ No newline at end of file +} +.nav-tabs>li>a { + z-index: 1; +}