NotifySmtpCheck.php
[Pman.Core] / NotifySmtpCheck.php
index 961496a..a8071ef 100644 (file)
@@ -43,16 +43,19 @@ class Pman_Core_NotifySmtpCheck extends Pman
                 
                 $smtpmx = new Mail_smtpmx($params);
                 
-                $mx = $smtpmx->_getMx($dom);
+//                $mx = $smtpmx->_getMx($dom);
                 
-                foreach ($mx as $mserver => $mpriority) {
+//                foreach ($mx as $mserver => $mpriority) {
                     
-
-                    // attempt to connect to the configured SMTP server.
+                    $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;
-                }
+//                }
                 
             }