NotifySmtpCheck.php
[Pman.Core] / NotifySmtpCheck.php
index be76c82..9dd2d0a 100644 (file)
@@ -45,10 +45,21 @@ class Pman_Core_NotifySmtpCheck extends Pman
                 
                 $mx = $smtpmx->_getMx($dom);
                 
-                print_r($mx);
+                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;
+                }
+                
             }
             
-            exit;
+            
         }
     }