DataObjects/Core_domain.php
[Pman.Core] / NotifySmtpCheck.php
index ba7aae8..fda61bb 100644 (file)
@@ -6,16 +6,6 @@ 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();
@@ -37,37 +27,38 @@ class Pman_Core_NotifySmtpCheck extends Pman
                 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'], $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;
-                }
+            $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;
             }
         }
         
-        pritn_R($error);exit;
+        if(!empty($error)){
+            print_r($error);
+            exit;
+        }
+        
+        return;
     }
     
     function getHelo()