What is the following rate limit bucket means in /etc/rspamd/local.d/ratelimit.conf?
bucket = [{
burst = 10;
rate = "30 / 1min";
}]
Does it mean like the following?
The bucket capacity is 10 email. And when there are 30 emails sent from an authenticated sender in 1 minute, then the rest 20 emails sent previously and the new emails would be soft rejected.
Additional questions:
- But, how much is the duration of the soft reject?
- What is the soft reject units in seconds or minutes or hours and where can I find them??
Kindly help, thank you!