From 495a2d7af0a0e0b395127dbb7f2f66f895463969 Mon Sep 17 00:00:00 2001 From: towards-a-new-leftypol Date: Tue, 5 Sep 2023 14:21:33 -0400 Subject: [PATCH] set flood values to negatives so they for sure are ignored --- inc/instance-config.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/inc/instance-config.php b/inc/instance-config.php index f5631471..dfc6513f 100644 --- a/inc/instance-config.php +++ b/inc/instance-config.php @@ -65,11 +65,11 @@ $config['cookies']['mod'] = 'mod'; $config['cookies']['salt'] = 'MGYwNjhlNjU5Y2QxNWU3YjQ3MzQ1Yj'; $config['search']['enable'] = true; -$config['flood_cache'] = 60 * 15; // 15 minutes. The oldest a post can be in the flood table -$config['flood_time_any'] = 20; // time between thread creation -$config['flood_time'] = 0; -$config['flood_time_ip'] = 60; -$config['flood_time_same'] = 60; +$config['flood_cache'] = 0; // 15 minutes. The oldest a post can be in the flood table +$config['flood_time_any'] = -1; // time between thread creation +$config['flood_time'] = -1; +$config['flood_time_ip'] = -1; +$config['flood_time_same'] = -1; $config['max_body'] = 80000; $config['reply_limit'] = 600; $config['max_links'] = 40;