Pman.js
[Pman.Core] / NotifySmtpCheck.php
index 67bc8a4..7a2670a 100644 (file)
@@ -1,19 +1,20 @@
 <?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()
+    function __construct()
+    {
+        require_once "Mail.php";
+        require_once 'Mail/smtpmx.php';
+    }
+    
+    function get($v, $opts=array())
     {
         $this->check();
-        
+        exit;
     }
     
     function check()
@@ -27,77 +28,81 @@ class Pman_Core_NotifySmtpCheck extends Pman
             return;
         }
         
+        $helo = $this->getHelo();
+        
+        echo "HELO : {$helo} \n";
+        
         $error = array();
         
         foreach ($ff->Core_Notify['routes'] as $server => $settings){
             if(empty($settings['domains']) || empty($settings['username']) || empty($settings['password'])){
-                $error[] = "{$server} missing domains / username / password";
+                $error[] = "{$server} - Missing domains / username / password";
                 continue;
             }
             
-            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
-//                );
-                
-//                $smtpmx = new Mail_smtpmx($params);
-//                $smtpmx->debug = true;
-                
-                $options = array (
-        'ssl' => array(
-            'verify_peer'  => false,
-            'verify_peer_name'  => false,
-            'allow_self_signed' => true));
-                
-                $smtp = new Net_SMTP($server, 993, $dom, false, 0, $options);
-                
-                $smtp->setDebug(true);
-//                print_R($smtp);
-                
-//                print_R($smtpmx->_smtp);exit;
-                
-                $res = $smtp->connect(10);
-                
-                if (is_a($res, 'PEAR_Error')) {
-                    print_R('error?????');exit;
-                }
-                
-                $r = $smtp->auth($settings['username'], $settings['password']);
-            
-                print_R($r);exit;
-//                $smtpmx->_smtp->disconnect();
-                print_r("resutlt : {$res} \n");
-                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;
-//                }
-                
+            $socket_options = array (
+                'ssl' => array(
+                    'verify_peer'  => false,
+                    'verify_peer_name'  => false
+                )
+            );
+            if (empty($settings['port'])) {
+                $settings['port'] = 25;
             }
+            $smtp = new Net_SMTP($server, $settings['port'], $helo, false, 0, $socket_options);
+
+//            $smtp->setDebug(true);
+            
+            echo "Connecting : {$server}:{$settings['port']} \n";
             
+            $res = $smtp->connect(10);
+
+            if (is_a($res, 'PEAR_Error')) {
+                $error[] = "{$server} - Cound not connect";
+                continue;
+            }
+
+            echo "Login As : {$settings['username']}:{$settings['password']} \n";
             
+            $res = $smtp->auth($settings['username'], $settings['password']);
+
+            if (is_a($res, 'PEAR_Error')) {
+                $error[] = "{$server} - Cound not login";
+                continue;
+            }
+        }
+        
+        if(!empty($error)){
+            print_r($error);
+            exit;
         }
+        
+        return;
+    }
+    
+    function getHelo()
+    {
+        $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}";
+        
+        $e = `$cmd`;
+        
+        $helo = substr(array_pop(explode(' ', $e)), 0, -2);
+        
+        return $helo;
     }
     
 }
\ No newline at end of file