[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:
@@ -1 +1 @@
|
||||
# /.*@example.com/i'
|
||||
# /.*@example.com/i
|
||||
|
@@ -1 +1 @@
|
||||
# /.*@example.com/i'
|
||||
# /.*@example.com/i
|
||||
|
1
data/conf/rspamd/custom/global_rcpt_blacklist.map
Normal file
1
data/conf/rspamd/custom/global_rcpt_blacklist.map
Normal file
@@ -0,0 +1 @@
|
||||
# /.*@example.com/i
|
1
data/conf/rspamd/custom/global_rcpt_whitelist.map
Normal file
1
data/conf/rspamd/custom/global_rcpt_whitelist.map
Normal file
@@ -0,0 +1 @@
|
||||
# /.*@example.com/i
|
@@ -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";
|
||||
}
|
||||
|
Reference in New Issue
Block a user