Lower email sending rate limit again

This commit is contained in:
rubenwardy 2022-01-23 18:40:06 +00:00
parent 411392eb76
commit 3b354de2fc
1 changed files with 3 additions and 3 deletions

View File

@ -79,7 +79,7 @@ def send_unsubscribe_verify(email, locale):
mail.send(msg)
@celery.task(rate_limit="50/m")
@celery.task(rate_limit="25/m")
def send_email_with_reason(email: str, locale: str, subject: str, text: str, html: str, reason: str):
sub = get_email_subscription(email)
if sub.blacklisted:
@ -95,14 +95,14 @@ def send_email_with_reason(email: str, locale: str, subject: str, text: str, htm
mail.send(msg)
@celery.task(rate_limit="50/m")
@celery.task(rate_limit="25/m")
def send_user_email(email: str, locale: str, subject: str, text: str, html=None):
with force_locale(locale or "en"):
return send_email_with_reason(email, locale, subject, text, html,
gettext("You are receiving this email because you are a registered user of ContentDB."))
@celery.task(rate_limit="50/m")
@celery.task(rate_limit="25/m")
def send_anon_email(email: str, locale: str, subject: str, text: str, html=None):
with force_locale(locale or "en"):
return send_email_with_reason(email, locale, subject, text, html,