chiark / gitweb /
Allow suppressing publication of posted messages according to rejection reason
authorIan Jackson <ijackson@chiark.greenend.org.uk>
Fri, 23 Nov 2012 17:50:02 +0000 (17:50 +0000)
committerIan Jackson <ijackson@chiark.greenend.org.uk>
Fri, 23 Nov 2012 17:50:02 +0000 (17:50 +0000)
This is done by creating
  BASEDIR/settings.publish-rejection-kinds
with a series of lines of the form
  [!]<glob-pattern>
where <glob-pattern> may contain * and ? and matches the short
rejection reason keyword.  First match wins; ! means do not publish;
if file does not exist or we run off the end, we do publish.

All of this depends on PUBLISHREJECTIONS=true in settings.

.gitignore
get-settings
xlog/bin/record

index 62f0c8582d28af40cdf5b800dc379bfb3a73dae7..1b1e591d0e6e450d7675b1f5ef11b0f17cbe6eea 100644 (file)
@@ -41,5 +41,6 @@
 /README.auto
 
 /settings
+/settings.publish-rejections-kinds
 /moderators
 /persistent-autosettings
index 1848cea99729decb4a451a268a029fa9a88388e5..3250905eece6aacaf33aeea436826c35bd7b5ac0 100644 (file)
@@ -25,7 +25,7 @@ export BASEDIR
 
 PUBREJOPT=''
 if $PUBLISHREJECTIONS; then
-       PUBREJOPT=-P
+       PUBREJOPT="-P$BASEDIR/settings.publish-rejection-kinds"
 fi
 export PUBREJOPT
 
index 7b6cf6035f796b2ca0fed0f17c08fc08db55a623..2e9bc7003ebfcb810df69bfc3f6700bdb2f3381f 100755 (executable)
@@ -2,13 +2,18 @@
 
 use strict (qw(vars));
 use IO::Handle;
+use POSIX;
 
 our %f;
 
+my $publish_rejections_patfile= '/dev/null';
 my $publish_rejections= 0;
 if ($ARGV[0] eq '-P') {
     $publish_rejections= 1;
     shift @ARGV;
+} elsif ($ARGV[0] =~ s/^\-P//) {
+    $publish_rejections= 1;
+    $publish_rejections_patfile= shift @ARGV;
 }
 
 our ($how) = @_;
@@ -134,8 +139,32 @@ STDIN->error and die $!;
 
 $f{Now}= time;
 
+sub want_publish_rejection_kind ($) {
+    my ($kind) = @_;
+    return 1 if $publish_rejections_patfile eq '';
+    if (!open PF, '<', $publish_rejections_patfile) {
+       return 1 if $!==&ENOENT;
+       die "$publish_rejections_patfile: $!";
+    }
+    while (<PF>) {
+       s/^\s+//;
+       s/\s+$//;
+       next if m/^\#/;
+       next unless m/\S/;
+       my $yn = !s/^\!//;
+       s/[^0-9a-zA-Z*?]/\\$&/g;
+       s/\*/.*/g;
+       s/\?/./g;
+        return $yn if $kind =~ m/^$_$/;
+    }
+    close PF or die $!;
+    return 1;
+}
+
 if ($publish_rejections &&
-    $f{Event} =~ m/^notify reject /) {
+    $f{Event} =~ m/^notify reject (\S+)/ &&
+    want_publish_rejection_kind($1))
+{
     $f{CopyRef}= $f{MessageNum} || $f{MessageID};
     $f{CopyRef} =~ s/\W/ sprintf '-%02x', ord($&) /ge;
     open I, ">$dir/public/nr-$f{CopyRef}.txt" or die $!;