Author: msergeant
Date: Thu Mar 13 13:00:33 2008
New Revision: 858
Modified:
trunk/plugins/async/require_resolvable_fromhost
Log:
Don't reject mail from the null sender
Modified: trunk/plugins/async/require_resolvable_fromhost
==============================================================================
--- trunk/plugins/async/require_resolvable_fromhost (original)
+++ trunk/plugins/async/require_resolvable_fromhost Thu Mar 13 13:00:33 2008
@@ -57,7 +57,7 @@
return DECLINED
if ( $self->qp->connection->notes('whitelistclient') );
- if (!$transaction->notes('resolvable_fromhost')) {
+ if ( $sender ne "<>" && !$transaction->notes('resolvable_fromhost') ) {
# default of temp_resolver_failed is DENYSOFT
return Qpsmtpd::DSN->temp_resolver_failed(
"Could not resolve " . $sender->host );