NotifySmtpCheck.php
[Pman.Core] / NotifySmtpCheck.php
index 3aa283e..4688f36 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();
@@ -17,6 +27,9 @@ class Pman_Core_NotifySmtpCheck extends Pman
             return;
         }
         
+        $ip = file_get_contents("https://ifconfig.co/");
+        print_R($ip);exit;
+        
         $error = array();
         
         foreach ($ff->Core_Notify['routes'] as $server => $settings){
@@ -26,48 +39,34 @@ 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,
-                    'mailname' => $settings['username']
+                $socket_options = array (
+                    'ssl' => array(
+                        'verify_peer'  => false,
+                        'verify_peer_name'  => false,
+                        'allow_self_signed' => true
+                    )
                 );
                 
-                $smtpmx = new Mail_smtpmx($params);
+                $smtp = new Net_SMTP($server, $settings['port'], '058177247238.ctinets.com', false, 0, $socket_options);
                 
-                $smtpmx->_smtp = new Net_SMTP($server, $smtpmx->port, $smtpmx->mailname);
-                    
-                print_R($smtpmx->_smtp);exit;
+                $smtp->setDebug(true);
                 
-                $res = $smtpmx->_smtp->connect($smtpmx->timeout);
-
-                $smtpmx->_smtp->disconnect();
-
-                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;
-//                }
+                $res = $smtp->connect(10);
+                
+                if (is_a($res, 'PEAR_Error')) {
+                    die("Cound not connect to {$server}");
+                }
+                
+                $res = $smtp->auth($settings['username'], $settings['password']);
+            
+                if (is_a($res, 'PEAR_Error')) {
+                    die($res);
+                }
                 
+                print_R("SUCCESS? {$res} \n");
+                exit;
+                   
             }