NotifySmtpCheck.php
[Pman.Core] / NotifySmtpCheck.php
index 42d9966..e2e5183 100644 (file)
@@ -1,7 +1,9 @@
 <?php
 
 require_once 'Pman.php';
-
+require_once "Mail.php";
+require_once 'Mail/smtpmx.php';
+        
 class Pman_Core_NotifySmtpCheck extends Pman
 {
     function check()
@@ -17,15 +19,47 @@ class Pman_Core_NotifySmtpCheck extends Pman
         
         $error = array();
         
-        require_once "Mail.php";
-        
         foreach ($ff->Core_Notify['routes'] as $server => $settings){
-            if(empty($settings['username']) || empty($settings['password'])){
-                $error[] = "{$server} missing username or password";
+            if(empty($settings['domains']) || empty($settings['username']) || empty($settings['password'])){
+                $error[] = "{$server} missing domains / username / password";
                 continue;
             }
             
-            $smtp = Mail::factory();
+            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);
+                
+                $mx = $smtpmx->_getMx($dom);
+                
+                foreach ($mx as $mserver => $mpriority) {
+                    
+                    $smtpmx->_smtp = new Net_SMTP($server, $smtpmx->port, $smtpmx->mailname);
+                    
+//                    print_R($smtpmx);exit;
+                    $res = $smtpmx->_smtp->connect($smtpmx->timeout);
+
+                    $smtpmx->_smtp->disconnect();
+                    
+                    print_R($res);exit;
+                }
+                
+            }
+            
+            
         }
     }