[svn:qpsmtpd] rev 391 - branches/high_perf/plugins

[email protected] 8 Mar 2005 23:34:51 -0000
Newsgroups perl.cvs.qpsmtpd
Message-ID <[email protected]>
Author: msergeant
Date: Tue Mar  8 15:34:51 2005
New Revision: 391

Modified:
   branches/high_perf/plugins/check_earlytalker
   branches/high_perf/plugins/dnsbl
   branches/high_perf/plugins/require_resolvable_fromhost
   branches/high_perf/plugins/rhsbl
Log:
Remove remnants of older name of this project :-)


Modified: branches/high_perf/plugins/check_earlytalker
==============================================================================
--- branches/high_perf/plugins/check_earlytalker	(original)
+++ branches/high_perf/plugins/check_earlytalker	Tue Mar  8 15:34:51 2005
@@ -71,7 +71,7 @@
 sub connect_handler {
   my ($self, $transaction) = @_;
   
-  if ($self->argh->can_read($self->{_args}->{'wait'})) {
+  if ($self->qp->can_read($self->{_args}->{'wait'})) {
     $self->log(LOGNOTICE, 'remote host started talking before we said hello');
     if ($self->{_args}->{'defer-reject'}) {
 	$self->connection->notes('earlytalker', 1);

Modified: branches/high_perf/plugins/dnsbl
==============================================================================
--- branches/high_perf/plugins/dnsbl	(original)
+++ branches/high_perf/plugins/dnsbl	Tue Mar  8 15:34:51 2005
@@ -42,7 +42,7 @@
         callback => sub { $self->process_a_result($dnsbl_zones{$dnsbl}, @_) },
         host => "$reversed_ip.$dnsbl",
         type => 'A',
-        client => $self->argh->input_sock,
+        client => $self->qp->input_sock,
       );
     } else {
       $self->log(LOGDEBUG, "Checking $reversed_ip.$dnsbl for TXT record in the background");
@@ -50,7 +50,7 @@
         callback => sub { $self->process_txt_result(@_) },
         host => "$reversed_ip.$dnsbl",
         type => 'TXT',
-        client => $self->argh->input_sock,
+        client => $self->qp->input_sock,
       );
     }
   }

Modified: branches/high_perf/plugins/require_resolvable_fromhost
==============================================================================
--- branches/high_perf/plugins/require_resolvable_fromhost	(original)
+++ branches/high_perf/plugins/require_resolvable_fromhost	Tue Mar  8 15:34:51 2005
@@ -30,12 +30,12 @@
         callback => sub { $self->dns_result(@_) },
         host => $host,
         type => "MX",
-        client => $self->argh->input_sock,
+        client => $self->qp->input_sock,
     );
     Danga::DNS->new(
         callback => sub { $self->dns_result(@_) },
         host => $host,
-        client => $self->argh->input_sock,
+        client => $self->qp->input_sock,
     );
 }
 

Modified: branches/high_perf/plugins/rhsbl
==============================================================================
--- branches/high_perf/plugins/rhsbl	(original)
+++ branches/high_perf/plugins/rhsbl	Tue Mar  8 15:34:51 2005
@@ -30,7 +30,7 @@
         Danga::DNS->new(
           callback => sub { $self->process_result($host, $rhsbl_zones{$rhsbl}, @_) },
           host => "$host.$rhsbl",
-          client => $self->argh->input_sock,
+          client => $self->qp->input_sock,
         );
       }
     }