NotifySmtpCheck.php
[Pman.Core] / NotifySmtpCheck.php
index 9334adf..be4d0f5 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 
 require_once 'Pman.php';
-//require_once "Mail.php";
+require_once "Mail.php";
 require_once 'Mail/smtpmx.php';
         
 class Pman_Core_NotifySmtpCheck extends Pman
@@ -43,9 +43,30 @@ class Pman_Core_NotifySmtpCheck extends Pman
                 
                 $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;
+//                }
                 
-                pritn_R($mx);exit;
             }