chiark / gitweb /
REORG Delete everything that's not innduct or build system or changed for innduct
[innduct.git] / control / modules / version.pl
diff --git a/control/modules/version.pl b/control/modules/version.pl
deleted file mode 100644 (file)
index f06096f..0000000
+++ /dev/null
@@ -1,61 +0,0 @@
-##  $Id: version.pl 4932 2001-07-19 00:32:56Z rra $
-##
-##  version control message handler.
-##
-##  Copyright 2001 by Marco d'Itri <md@linux.it>
-##
-##  Redistribution and use in source and binary forms, with or without
-##  modification, are permitted provided that the following conditions
-##  are met:
-##
-##   1. Redistributions of source code must retain the above copyright
-##      notice, this list of conditions and the following disclaimer.
-##
-##   2. Redistributions in binary form must reproduce the above copyright
-##      notice, this list of conditions and the following disclaimer in the
-##      documentation and/or other materials provided with the distribution.
-
-use strict;
-
-sub control_version {
-    my ($par, $sender, $replyto, $site, $action, $log, $approved,
-        $headers, $body) = @_;
-    my ($where) = @$par;
-
-    my $version = $inn::version || '(unknown version)';
-
-    if ($action eq 'mail') {
-        my $mail = sendmail("version $sender");
-        print $mail <<END;
-$sender has requested information about your
-news software version.
-
-If this is acceptable, type:
-  echo "InterNetNews $version" | $inn::mailcmd -s "version reply from $inn::pathhost" $replyto
-
-The control message follows:
-
-END
-        print $mail map { s/^~/~~/; "$_\n" } @$headers;
-        print $mail "\n";
-        print $mail map { s/^~/~~/; "$_\n" } @$body;
-        close $mail or logdie("Cannot send mail: $!");
-    } elsif ($action eq 'log') {
-        if ($log) {
-            logger($log, "version $sender", $headers, $body);
-        } else {
-            logmsg("version $sender");
-        }
-    } elsif ($action =~ /^(doit|doifarg)$/) {
-        if ($action eq 'doifarg' and $where ne $inn::pathhost) {
-            logmsg("skipped version $sender");
-            return;
-        }
-        sendmail("version reply from $inn::pathhost", $replyto,
-            [ "InterNetNews $version\n" ]);
-
-        logger($log, "version $sender to $replyto", $headers, $body) if $log;
-    }
-}
-
-1;