DataObjects/Core_company.php
[Pman.Core] / NotifySmtpCheck.php
index 0f258d1..e4887ef 100644 (file)
@@ -6,14 +6,10 @@ require_once 'Mail/smtpmx.php';
         
 class Pman_Core_NotifySmtpCheck extends Pman
 {
-    static $cli_desc = "Check SMTP";
-    static $cli_opts = array();
-        
     function get()
     {
         $this->check();
-        
+        exit;
     }
     
     function check()
@@ -29,6 +25,8 @@ class Pman_Core_NotifySmtpCheck extends Pman
         
         $helo = $this->getHelo();
         
+        echo "HELO : {$helo} \n";
+        
         $error = array();
         
         foreach ($ff->Core_Notify['routes'] as $server => $settings){
@@ -43,11 +41,15 @@ class Pman_Core_NotifySmtpCheck extends Pman
                     '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);
-
+//            $smtp->setDebug(true);
+            
+            echo "Connecting : {$server}:{$settings['port']} \n";
+            
             $res = $smtp->connect(10);
 
             if (is_a($res, 'PEAR_Error')) {
@@ -55,6 +57,8 @@ class Pman_Core_NotifySmtpCheck extends Pman
                 continue;
             }
 
+            echo "Login As : {$settings['username']}:{$settings['password']} \n";
+            
             $res = $smtp->auth($settings['username'], $settings['password']);
 
             if (is_a($res, 'PEAR_Error')) {
@@ -63,14 +67,19 @@ class Pman_Core_NotifySmtpCheck extends Pman
             }
         }
         
-        return $error;
+        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);
+        @$dom->loadHTML($ifconfig);
         
         $xpath = new DOMXPath($dom);