[pLog-svn] r5295 - plog/branches/lifetype-1.2/class/data/validator/rules

jondaley at devel.lifetype.net jondaley at devel.lifetype.net
Mon Apr 9 10:46:10 EDT 2007


Author: jondaley
Date: 2007-04-09 10:46:10 -0400 (Mon, 09 Apr 2007)
New Revision: 5295

Modified:
   plog/branches/lifetype-1.2/class/data/validator/rules/emaildnsrule.class.php
Log:
since we don't do the right thing during temporary email failures, allow them for now. http://bugs.lifetype.net/view.php?id=718

Modified: plog/branches/lifetype-1.2/class/data/validator/rules/emaildnsrule.class.php
===================================================================
--- plog/branches/lifetype-1.2/class/data/validator/rules/emaildnsrule.class.php	2007-04-09 13:28:31 UTC (rev 5294)
+++ plog/branches/lifetype-1.2/class/data/validator/rules/emaildnsrule.class.php	2007-04-09 14:46:10 UTC (rev 5295)
@@ -94,7 +94,8 @@
                     {
                         if(ereg("^4[0-9][0-9]", $helo) || ereg("^4[0-9][0-9]", $from) || ereg ("^4[0-9][0-9]", $to)){
                             $this->_setError(ERROR_RULE_EMAIL_DNS_SERVER_TEMP_FAIL);
-                            return false;
+                                // Note: see http://bugs.lifetype.net/view.php?id=718 to fix this
+                            return true;
                         }
                         else{
                             $this->_setError(ERROR_RULE_EMAIL_DNS_NOT_PERMITTED);



More information about the pLog-svn mailing list