From 4349499dddc6146bb18be98732c0d1868a1fadc3 Mon Sep 17 00:00:00 2001 From: towards-a-new-leftypol Date: Sat, 15 Jun 2024 20:06:32 -0400 Subject: [PATCH] Up the anti-bot hash expiration time to 120 days --- inc/instance-config.php | 1 + 1 file changed, 1 insertion(+) diff --git a/inc/instance-config.php b/inc/instance-config.php index adfb254d..ec49e080 100644 --- a/inc/instance-config.php +++ b/inc/instance-config.php @@ -133,6 +133,7 @@ $config['post_date'] = '%F (%a) %T'; $config['thread_subject_in_title'] = true; $config['spam']['enabled'] = true; +$config['spam']['hidden_inputs_expire'] = 60 * 60 * 24 * 120; //keep hashes for 120 days in the database just in case someone posts on a slow board. $config['spam_noticer']['enabled'] = true; $config['spam_noticer']['base_url'] = 'http://localhost:8300'; $config['spam_noticer']['ui_url'] = 'https://spamnoticer.leftychan.net/static/index.html';