From 9a96fd643b7108ef51379d810f2a3acce9073e95 Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Tue, 20 Dec 2022 01:28:56 +0200 Subject: [PATCH] reduce post ratelimit from 50/day to 20/day --- files/helpers/config/const.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/helpers/config/const.py b/files/helpers/config/const.py index 0a0870e02..eb2621140 100644 --- a/files/helpers/config/const.py +++ b/files/helpers/config/const.py @@ -394,7 +394,7 @@ ERROR_MARSEYS = { EMOJI_SRCS = ['files/assets/emojis.json'] PIN_LIMIT = 3 -POST_RATE_LIMIT = '1/second;10/hour;50/day' +POST_RATE_LIMIT = '1/second;10/hour;20/day' POST_TITLE_LENGTH_LIMIT = 500 # do not make larger than 500 without altering the table POST_TITLE_HTML_LENGTH_LIMIT = 1500 # do not make larger than 1500 without altering the table POST_BODY_LENGTH_LIMIT = 20000 # do not make larger than 20000 without altering the table