NotifySmtpCheck.php
[Pman.Core] / NotifySmtpCheck.php
index 1a77708..6115092 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();
@@ -26,39 +36,33 @@ class Pman_Core_NotifySmtpCheck extends Pman
             }
             
             foreach ($settings['domains'] as $dom){
-//                $mailer = Mail::factory('smtp', array(
-//                    'host'    => $dom ,
-//                    'localhost' => $server,
-//                    'timeout' => 15,
-//                    'auth' => true,
-//                    'username' => $settings['username'],
-//                    'password' => $settings['password']
-//                ));
-//                
-//                print_R($mailer);exit;
                 
-                $params = array(
-                    'netdns' => false
+                $socket_options = array (
+                    'ssl' => array(
+                        'verify_peer'  => false,
+                        'verify_peer_name'  => false,
+                        'allow_self_signed' => true
+                    )
                 );
                 
-                $smtpmx = new Mail_smtpmx($params);
-                $smtpmx->debug = true;
-                
-                $smtpmx->_smtp = new Net_SMTP($server, $smtpmx->port, 'edward.roojs');
+                $smtp = new Net_SMTP($server, 25, '058177247238.ctinets.com', false, 0, $socket_options);
                 
-                $smtpmx->_smtp->setDebug(true);
+                $smtp->setDebug(true);
                 
-//                print_R($smtpmx->_smtp);exit;
-                
-                $res = $smtpmx->_smtp->connect($smtpmx->timeout);
+                $res = $smtp->connect(10);
                 
                 if (is_a($res, 'PEAR_Error')) {
-                    print_R('error?????');exit;
+                    die("Cound not connect to {$server}");
                 }
+                
+                $res = $smtp->auth($settings['username'], $settings['password']);
             
-//                $smtpmx->_smtp->disconnect();
-
-                print_R($res);exit;
+                if (is_a($res, 'PEAR_Error')) {
+                    die($res);
+                }
+                
+                print_R("SUCCESS? {$res} \n");
+                exit;
                     
 //                $mx = $smtpmx->_getMx($dom);
 //