default_settings: Add explanatory comment to "sends_email_by_ip".

Add "5 emails per day" comment
to indicate what (86400, 5) inside "sends_email_by_ip" means.
This commit is contained in:
bedo
2025-09-04 12:36:44 +03:00
committed by Tim Abbott
parent bc1ed82620
commit 72d1fa7661

View File

@@ -320,6 +320,7 @@ DEFAULT_RATE_LIMITING_RULES = {
# sending of an email, restricting the number per IP address. This # sending of an email, restricting the number per IP address. This
# is a general anti-spam measure. # is a general anti-spam measure.
"sends_email_by_ip": [ "sends_email_by_ip": [
# 5 emails per day.
(86400, 5), (86400, 5),
], ],
# Limits access to uploaded files, in web-public contexts, done by # Limits access to uploaded files, in web-public contexts, done by