NotifySmtpCheck.php
[Pman.Core] / NotifySmtpCheck.php
index 335c79e..3aa283e 100644 (file)
@@ -38,14 +38,36 @@ class Pman_Core_NotifySmtpCheck extends Pman
 //                print_R($mailer);exit;
                 
                 $params = array(
-                    'netdns' => false
+                    'netdns' => false,
+                    'mailname' => $settings['username']
                 );
                 
                 $smtpmx = new Mail_smtpmx($params);
                 
-                $mx = $smtpmx->_getMx($dom);
+                $smtpmx->_smtp = new Net_SMTP($server, $smtpmx->port, $smtpmx->mailname);
+                    
+                print_R($smtpmx->_smtp);exit;
+                
+                $res = $smtpmx->_smtp->connect($smtpmx->timeout);
+
+                $smtpmx->_smtp->disconnect();
+
+                print_R($res);exit;
+                    
+//                $mx = $smtpmx->_getMx($dom);
+//                
+//                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;
+//                }
                 
-                print_r($mx);exit;
             }