Author: radu
Date: Mon Jun  2 08:32:39 2008
New Revision: 918

Modified:
   trunk/plugins/async/require_resolvable_fromhost

Log:
This async plugin needs the same change as #908: make the "this connection
is whitelisted note" consistent between all plugins in the distribution.


Modified: trunk/plugins/async/require_resolvable_fromhost
==============================================================================
--- trunk/plugins/async/require_resolvable_fromhost     (original)
+++ trunk/plugins/async/require_resolvable_fromhost     Mon Jun  2 08:32:39 2008
@@ -27,7 +27,7 @@
     my ( $self, $transaction, $sender ) = @_;
     
     return DECLINED
-      if ( $self->qp->connection->notes('whitelistclient') );
+      if ( $self->qp->connection->notes('whitelisthost') );
 
     if ( $sender ne "<>" ) {
         
@@ -55,7 +55,7 @@
     my ( $self, $transaction, $sender ) = @_;
     
     return DECLINED
-      if ( $self->qp->connection->notes('whitelistclient') );
+      if ( $self->qp->connection->notes('whitelisthost') );
 
     if ( $sender ne "<>" && !$transaction->notes('resolvable_fromhost') ) {
         # default of temp_resolver_failed is DENYSOFT

Reply via email to