[Rspamd] Added customizable global ratelimit file (disabled by default)

This commit is contained in:
DerLinkman 2023-12-07 12:04:45 +01:00
parent d3ed225675
commit d81f105ed7
No known key found for this signature in database
GPG Key ID: 3A6F4C563ED5BE07

View File

@ -0,0 +1,9 @@
# Uncomment below to apply the ratelimits globally. Use Ratelimits inside mailcow UI to overwrite them for a specific domain/mailbox.
# rates {
# # Format: "1 / 1h" or "20 / 1m" etc.
# to = "100 / 1s";
# to_ip = "100 / 1s";
# to_ip_from = "100 / 1s";
# bounce_to = "100 / 1h";
# bounce_to_ip = "7 / 1m";
# }