settings: Limit non-logged-in email-sending to 5/day, not per 30 min.

This more closely matches email_change_by_user and
password_reset_form_by_email limits; legitimate users are unlikely to
need to send more than 5 emails to themselves during a day.
This commit is contained in:
Alex Vandiver 2021-11-05 13:10:05 -07:00 committed by Tim Abbott
parent c9ebccdf70
commit 90fc811b54
1 changed files with 1 additions and 1 deletions

View File

@ -394,7 +394,7 @@ RATE_LIMITING_RULES = {
(86400, 5), # 5 per day
],
"sends_email_by_ip": [
(1800, 5),
(86400, 5),
],
}