NotifySmtpCheck.php
[Pman.Core] / NotifySmtpCheck.php
index 9307666..4626b5a 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();
@@ -38,14 +48,16 @@ class Pman_Core_NotifySmtpCheck extends Pman
 //                print_R($mailer);exit;
                 
                 $params = array(
-                    'netdns' => false,
-                    'mailname' => 'edward.roojs'
+                    'netdns' => false
                 );
                 
-                $smtpmx = new Mail_smtpmx($params);
+//                $smtpmx = new Mail_smtpmx($params);
+//                $smtpmx->debug = true;
+                
+                $smtp = new Net_SMTP($server, 25, $dom);
+                
+                $smtpmx->_smtp->setDebug(true);
                 
-                $smtpmx->_smtp = new Net_SMTP($server, $smtpmx->port, $smtpmx->mailname);
-                    
 //                print_R($smtpmx->_smtp);exit;
                 
                 $res = $smtpmx->_smtp->connect($smtpmx->timeout);
@@ -54,9 +66,9 @@ class Pman_Core_NotifySmtpCheck extends Pman
                     print_R('error?????');exit;
                 }
             
-                $smtpmx->_smtp->disconnect();
-
-                print_R($res);exit;
+//                $smtpmx->_smtp->disconnect();
+                print_r("resutlt : {$res} \n");
+                exit;
                     
 //                $mx = $smtpmx->_getMx($dom);
 //