NotifySmtpCheck.php
[Pman.Core] / NotifySmtpCheck.php
index 15ac039..9dd2d0a 100644 (file)
@@ -47,10 +47,13 @@ class Pman_Core_NotifySmtpCheck extends Pman
                 
                 foreach ($mx as $mserver => $mpriority) {
                     
-                    $smtpmx->_smtp = new Net_SMTP('test', $smtpmx->port, $smtpmx->mailname);
-
+                    $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;
                 }