bbPress

Simple, fast, elegant

bbPress Plugin Browser »

Automated Forum Moderation (0.3)

Download

Version: 0.3

Other Versions

Last Updated: 2009-1-15

Requires bbPress Version: 0.8 or higher

Compatible up to: trunk

Author Homepage »

Plugin Homepage »

Average Rating

5 stars
4 stars
3 stars
2 stars
1 star
(3)

Your Rating

Author: Nightgunner5

Blocks common (and sometimes accidental) human-generated spam automatically.

Tags: , ,

  1. 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 #
  2. 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 #
  3. The min_words part is to block "lol" from the forums. If you don't want it, change min_words and min_chars to 1.

    Posted: 1 year ago #

RSS feed for this topic

Add a Comment

You must log in to post.

Code is Poetry.