NotifySmtpCheck.php
[Pman.Core] / NotifySmtpCheck.php
index 542da01..b155550 100644 (file)
@@ -42,14 +42,21 @@ class Pman_Core_NotifySmtpCheck extends Pman
                 );
                 
                 $smtpmx = new Mail_smtpmx($params);
+                $smtpmx->debug = true;
                 
-                $smtpmx->_smtp = new Net_SMTP($mserver, $smtpmx->port, $smtpmx->mailname);
-                    
-                print_R($smtpmx);exit;
+                $smtpmx->_smtp = new Net_SMTP($server, $smtpmx->port, $smtpmx->mailname);
+                
+                $smtpmx->_smtp->setDebug(true);
+                
+//                print_R($smtpmx->_smtp);exit;
                 
                 $res = $smtpmx->_smtp->connect($smtpmx->timeout);
-
-                $smtpmx->_smtp->disconnect();
+                
+                if (is_a($res, 'PEAR_Error')) {
+                    print_R('error?????');exit;
+                }
+            
+//                $smtpmx->_smtp->disconnect();
 
                 print_R($res);exit;