Blocks common (and sometimes accidental) human-generated spam automatically.
bbPress Plugin Browser »
Automated Forum Moderation (0.3)
Download
Version: 0.3
Last Updated: 2009-1-15
Requires bbPress Version: 0.8 or higher
Compatible up to: trunk
Average Rating





Your Rating
Author: Nightgunner5
-
Please don't use this until the 0.2 revision - it has a strange problem of deleting topics randomly at the moment.
Posted: 1 year ago # -
I was going to ask 'how does this do that?' but looking at the code, I THINK I know...
$automated_forum_moderation_data = array( 'max_days' => 30, // Maximum time since the last post in a topic to allow posting 'allow_double_post' => false, // Allow posting twice (false, true, or an array of forum IDs to allow it in) 'allow_double_post_after' => 60, //the number of minutes since the previous post by that user (if the user is the last poster on a topic) that a new post can be made. false if not applicable 'min_words' => 2, // Minimum words in a post 'min_chars' => 5 // Minimum characters in a post );You're just checking for the common posting habits found in bad users. Doubleposting and too few words/characters. I'm not sure too few words will help much, and the time since last post seems an odd choice. Sometimes users are infrequent guests. it's interesting logic, though! :)
Posted: 1 year ago # -
The
min_wordspart is to block "lol" from the forums. If you don't want it, changemin_wordsandmin_charsto1.Posted: 1 year ago #
Add a Comment
You must log in to post.