NotifySmtpCheck.php
[Pman.Core] / NotifySmtpCheck.php
index fc90ddf..f6af184 100644 (file)
@@ -6,6 +6,16 @@ require_once 'Mail/smtpmx.php';
         
 class Pman_Core_NotifySmtpCheck extends Pman
 {
+    static $cli_desc = "Check SMTP";
+    static $cli_opts = array();
+        
+    function get()
+    {
+        $this->check();
+        
+    }
+    
     function check()
     {
         $ff = HTML_FlexyFramework::get();
@@ -42,17 +52,36 @@ class Pman_Core_NotifySmtpCheck extends Pman
                 );
                 
                 $smtpmx = new Mail_smtpmx($params);
+                $smtpmx->debug = true;
                 
-//                $mx = $smtpmx->_getMx($dom);
+                $smtpmx->_smtp = new Net_SMTP($server, $smtpmx->port, $smtpmx->mailname);
                 
-//                foreach ($mx as $mserver => $mpriority) {
-                    
-                    $smtpmx->_smtp = new Net_SMTP($server, $smtpmx->port, $smtpmx->mailname);
-                    
-                    print_R($smtpmx->_smtp);exit;
-                    $res = $smtpmx->_smtp->connect($smtpmx->timeout);
+                $smtpmx->_smtp->setDebug(true);
+                
+//                print_R($smtpmx->_smtp);exit;
+                
+                $res = $smtpmx->_smtp->connect($smtpmx->timeout);
+                
+                if (is_a($res, 'PEAR_Error')) {
+                    print_R('error?????');exit;
+                }
+            
+//                $smtpmx->_smtp->disconnect();
 
-                    print_R($res);exit;
+                print_R($res);exit;
+                    
+//                $mx = $smtpmx->_getMx($dom);
+//                
+//                foreach ($mx as $mserver => $mpriority) {
+//                    
+//                    $smtpmx->_smtp = new Net_SMTP($mserver, $smtpmx->port, $smtpmx->mailname);
+//                    
+////                    print_R($smtpmx);exit;
+//                    $res = $smtpmx->_smtp->connect($smtpmx->timeout);
+//
+//                    $smtpmx->_smtp->disconnect();
+//                    
+//                    print_R($res);exit;
 //                }
                 
             }