NotifySmtpCheck.php
[Pman.Core] / NotifySmtpCheck.php
index 1ae661c..1b37936 100644 (file)
@@ -1,9 +1,21 @@
 <?php
 
 require_once 'Pman.php';
-
+require_once "Mail.php";
+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();
@@ -15,9 +27,27 @@ class Pman_Core_NotifySmtpCheck extends Pman
             return;
         }
         
-        $error = array();
+        $ifconfig = file_get_contents("https://ifconfig.co/");
+        $dom = new DomDocument('1.0', 'utf-8');
+        $dom->loadHTML($ifconfig);
+        
+        $xpath = new DOMXPath($dom);
+        
+        $element = $xpath->query("//code[@class='ip']");
+        
+        if(!$element->length){
+            return;
+        }
+        
+        $ip = $element->item(0)->nodeValue;
+        
+        $cmd = "host {$ip}";
         
-        require_once "Mail.php";
+        $e = `$cmd`;
+        
+        print_R($e);exit;
+        
+        $error = array();
         
         foreach ($ff->Core_Notify['routes'] as $server => $settings){
             if(empty($settings['domains']) || empty($settings['username']) || empty($settings['password'])){
@@ -26,22 +56,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
+                $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);
+                
+                $smtp->setDebug(true);
+                
+                $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;
+                   
             }