NotifySmtpCheck.php
[Pman.Core] / NotifySmtpCheck.php
index 9e9f99c..8f41675 100644 (file)
@@ -6,6 +6,10 @@ require_once 'Mail/smtpmx.php';
         
 class Pman_Core_NotifySmtpCheck extends Pman
 {
+    static $cli_desc = "Check SMTP";
+    static $cli_opts = array();
+        
     function check()
     {
         $ff = HTML_FlexyFramework::get();
@@ -42,9 +46,12 @@ class Pman_Core_NotifySmtpCheck extends Pman
                 );
                 
                 $smtpmx = new Mail_smtpmx($params);
+                $smtpmx->debug = true;
                 
                 $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);
@@ -53,7 +60,7 @@ class Pman_Core_NotifySmtpCheck extends Pman
                     print_R('error?????');exit;
                 }
             
-                $smtpmx->_smtp->disconnect();
+//                $smtpmx->_smtp->disconnect();
 
                 print_R($res);exit;