mirror of https://github.com/zulip/zulip.git
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:
parent
c9ebccdf70
commit
90fc811b54
|
@ -394,7 +394,7 @@ RATE_LIMITING_RULES = {
|
|||
(86400, 5), # 5 per day
|
||||
],
|
||||
"sends_email_by_ip": [
|
||||
(1800, 5),
|
||||
(86400, 5),
|
||||
],
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue