[Web] Allow actions in quarantine modal, fixes #1991

[Web] Fixes for Source Sans Pro font
[Rspamd] Add global rcpt blacklist and whitelist
[Compose] New Rspamd image
This commit is contained in:
root
2018-11-27 10:20:42 +01:00
parent 6620ee2fff
commit d445d7d2e7
13 changed files with 38 additions and 7 deletions

View File

@@ -1 +1 @@
# /.*@example.com/i'
# /.*@example.com/i

View File

@@ -1 +1 @@
# /.*@example.com/i'
# /.*@example.com/i

View File

@@ -0,0 +1 @@
# /.*@example.com/i

View File

@@ -0,0 +1 @@
# /.*@example.com/i

View File

@@ -49,3 +49,19 @@ GLOBAL_FROM_BL {
prefilter = true;
action = "reject";
}
GLOBAL_RCPT_WL {
type = "rcpt";
map = "$LOCAL_CONFDIR/custom/global_rcpt_whitelist.map";
regexp = true;
prefilter = true;
action = "accept";
}
GLOBAL_RCPT_BL {
type = "rcpt";
map = "$LOCAL_CONFDIR/custom/global_rcpt_blacklist.map";
regexp = true;
prefilter = true;
action = "reject";
}