From f758139c8714244755ee2c5167ff761f9086395b Mon Sep 17 00:00:00 2001 From: Benjamin Southall Date: Fri, 3 Mar 2017 12:26:00 +0900 Subject: [PATCH] Add mininum post length configuration value to combat spam. Note that the posts with 0 length are still allowed in order to allow image only posts for /layer/. Fix paths for spoiler and deleted images. Change flood filters so that moderators are not restricted by them. --- inc/config.php | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/inc/config.php b/inc/config.php index 0f2d40fc..7f5e3756 100644 --- a/inc/config.php +++ b/inc/config.php @@ -457,6 +457,8 @@ // Maximum post body length. $config['max_body'] = 1800; + // Minimum post body length. + $config['min_body'] = 30; // Maximum number of post body lines to show on the index page. $config['body_truncate'] = 15; // Maximum number of characters to show on the index page. @@ -778,9 +780,9 @@ // Location of above images. $config['file_thumb'] = 'static/%s'; // Location of thumbnail to use for spoiler images. - $config['spoiler_image'] = 'static/spoiler.png'; + $config['spoiler_image'] = '/static/spoiler.png'; // Location of thumbnail to use for deleted images. - $config['image_deleted'] = 'static/deleted.png'; + $config['image_deleted'] = '/static/deleted.png'; // When a thumbnailed image is going to be the same (in dimension), just copy the entire file and use // that as a thumbnail instead of resizing/redrawing. @@ -1489,7 +1491,8 @@ $config['mod']['postunoriginal'] = ADMIN; // Bypass flood check $config['mod']['bypass_filters'] = ADMIN; - $config['mod']['flood'] = &$config['mod']['bypass_filters']; + //$config['mod']['flood'] = &$config['mod']['bypass_filters']; + $config['mod']['flood'] = MOD; // Raw HTML posting $config['mod']['rawhtml'] = ADMIN; @@ -1810,10 +1813,10 @@ ''. ''; - // Slack Report Notification - $config['slack'] = false; - $config['slack_channel'] = ""; - $config['slack_incoming_webhook_endpoint'] = "https://hooks.slack.com/services/"; + // Slack Report Notification + $config['slack'] = false; + $config['slack_channel'] = ""; + $config['slack_incoming_webhook_endpoint'] = "https://hooks.slack.com/services/"; // Password hashing function //