From: Matthew Vernon Date: Sun, 5 Jan 2014 13:28:25 +0000 (+0000) Subject: Remove the blacklist of posters X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~webstump/git?a=commitdiff_plain;h=f74ee06e256c2470ad5ed264b090486856258b7f;p=modbot-ulm.git Remove the blacklist of posters The ULM mods want a watchlist for posters, not a blacklist. So remove the blacklisted posters list, and replace the option to blacklist a poster with the option to add them to the watch list. --- diff --git a/webstump/doc/help/filter-lists.html b/webstump/doc/help/filter-lists.html index fe7fad7..6a1199c 100644 --- a/webstump/doc/help/filter-lists.html +++ b/webstump/doc/help/filter-lists.html @@ -15,9 +15,6 @@ The algorithm for every incoming article is as follows:
    -
  1. Reject message if the author is listed in the List of Banned Posters.. -
  2. File message for human review if the author is listed in the List of Untrusted Posters. diff --git a/webstump/scripts/filter.lib.pl b/webstump/scripts/filter.lib.pl index b82a55a..891f7c9 100644 --- a/webstump/scripts/filter.lib.pl +++ b/webstump/scripts/filter.lib.pl @@ -92,11 +92,6 @@ sub review_incoming_message { # Newsgroup, From, Subject, RealSubject, Message, my $from = pop( @_ ); my $newsgroup = pop( @_ ); - if( &name_is_in_list( $from, "bad.posters.list" ) ) { - &process_approval_decision( $subject, $newsgroup, $dir, "reject blocklist", "", "auto bad poster" ); - return; - } - my $warning_file = &article_file_name( $dir ) . "/stump-warning.txt"; my $match; diff --git a/webstump/scripts/html_output.pl b/webstump/scripts/html_output.pl index 505ff32..61f2b13 100644 --- a/webstump/scripts/html_output.pl +++ b/webstump/scripts/html_output.pl @@ -258,20 +258,18 @@ sub html_moderate_article { Don't change poster's status White-list poster - Ban All Posts by this Person (Careful!) + +Add poster to watch list

    -NOTE: Decisions to ban and whitelist posters can be reversed by -logging in as \"admin\" and editing respective lists of whitelisted -and banned threads. +NOTE: Decisions to watchlist and whitelist posters can be reversed by +editing the respective lists of whitelisted and watchlisted posters. "; &link_to_help( "filter-lists", "automatic filtering and filter lists, blacklisting and preapproved threads." ); - print "Be really careful about blacklisting of everyone except spammers.

    + print "

    Review ONE article in next screen @@ -755,7 +753,6 @@ sub html_newsgroup_management {