.github
etc
usr
local
bin
etc
rspamd
local.d
actions.conf
antivirus.conf
arc.conf
classifier-bayes.conf
dkim_signing.conf
external_services.conf
greylist.conf
groups.conf
logging.inc
neural.conf
neural_group.conf
options.inc
phishing.conf
ratelimit.conf
redis.conf
worker-fuzzy.inc
override.d
var
COPYING
README.md
clean_nginx_sockets.sh
install_binaries.sh
23 lines
400 B
Plaintext
23 lines
400 B
Plaintext
rates {
|
|
to = {
|
|
bucket = {
|
|
burst = 20;
|
|
rate = 1 / 1m;
|
|
}
|
|
}
|
|
sending_limit_2_per_min {
|
|
selector = 'user.lower.append("sending_limit_2_per_min")';
|
|
bucket = {
|
|
burst = 20;
|
|
rate = 2 / 1m;
|
|
}
|
|
}
|
|
sending_limit_500_per_day {
|
|
selector = 'user.lower.append("sending_limit_500_per_day")';
|
|
bucket = {
|
|
burst = 400;
|
|
rate = 50 / 3h;
|
|
}
|
|
}
|
|
}
|