NotifySmtpCheck.php
[Pman.Core] / NotifySmtpCheck.php
index 1b37936..c9854bd 100644 (file)
@@ -27,6 +27,47 @@ class Pman_Core_NotifySmtpCheck extends Pman
             return;
         }
         
+        $helo = $this->getHelo();
+        
+        $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";
+                continue;
+            }
+            
+            $socket_options = array (
+                'ssl' => array(
+                    'verify_peer'  => false,
+                    'verify_peer_name'  => false
+                )
+            );
+
+            $smtp = new Net_SMTP($server, $settings['port'], $helo, false, 0, $socket_options);
+
+            $smtp->setDebug(true);
+
+            $res = $smtp->connect(10);
+
+            if (is_a($res, 'PEAR_Error')) {
+                $error[] = "{$server} - Cound not connect";
+                continue;
+            }
+
+            $res = $smtp->auth($settings['username'], $settings['password']);
+
+            if (is_a($res, 'PEAR_Error')) {
+                $error[] = "{$server} - Cound not login";
+                continue;
+            }
+        }
+        
+        print_r($error);exit;
+    }
+    
+    function getHelo()
+    {
         $ifconfig = file_get_contents("https://ifconfig.co/");
         $dom = new DomDocument('1.0', 'utf-8');
         $dom->loadHTML($ifconfig);
@@ -45,49 +86,9 @@ class Pman_Core_NotifySmtpCheck extends Pman
         
         $e = `$cmd`;
         
-        print_R($e);exit;
+        $helo = substr(array_pop(explode(' ', $e)), 0, -2);
         
-        $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";
-                continue;
-            }
-            
-            foreach ($settings['domains'] as $dom){
-                
-                $socket_options = array (
-                    'ssl' => array(
-                        'verify_peer'  => false,
-                        'verify_peer_name'  => false,
-                        'allow_self_signed' => true
-                    )
-                );
-                
-                $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;
-                   
-            }
-            
-            
-        }
+        return $helo;
     }
     
 }
\ No newline at end of file