root/worst-offenders/trunk/plugin.php

Revision 45015, 0.7 kB (checked in by ear1grey, 2 months ago)

A new litmus test that looks for comments where the comment author name is repeated as the first word in the content.

Line 
1 <?php
2 /*
3 Plugin Name: Worst Offenders
4 Plugin URI: http://boakes.org/worst-offenders-plugin
5 Description: Worst Offenders helps identify (and remove) the most insistent spammers, making the search for false-positives far easier.
6 Author: Rich Boakes
7 Version: 3.0.0 pre-alpha
8 Author URI: http://boakes.org/
9 */
10
11 $wo3_title="WorstOffenders";
12
13 include("functions.php");
14
15 include("classes/litmus.php");
16 include("classes/all_litmus.php");
17 include("classes/ip_litmus.php");
18 include("classes/multilink_litmus.php");
19 include("classes/domain_litmus.php");
20 include("classes/email_litmus.php");
21 include("classes/md5_litmus.php");
22 include("classes/name_length_litmus.php");
23 include("classes/obvious_name_litmus.php");
24 include("classes/first_word_litmus.php");
25
26 ?>
Note: See TracBrowser for help on using the browser.