NotifySmtpCheck.php
authoredward <edward@roojs.com>
Thu, 14 Jul 2016 04:15:27 +0000 (12:15 +0800)
committeredward <edward@roojs.com>
Thu, 14 Jul 2016 04:15:27 +0000 (12:15 +0800)
NotifySmtpCheck.php

index 9dd2d0a..542da01 100644 (file)
@@ -43,19 +43,29 @@ class Pman_Core_NotifySmtpCheck extends Pman
                 
                 $smtpmx = new Mail_smtpmx($params);
                 
-                $mx = $smtpmx->_getMx($dom);
-                
-                foreach ($mx as $mserver => $mpriority) {
-                    
-                    $smtpmx->_smtp = new Net_SMTP($mserver, $smtpmx->port, $smtpmx->mailname);
+                $smtpmx->_smtp = new Net_SMTP($mserver, $smtpmx->port, $smtpmx->mailname);
                     
-//                    print_R($smtpmx);exit;
-                    $res = $smtpmx->_smtp->connect($smtpmx->timeout);
+                print_R($smtpmx);exit;
+                
+                $res = $smtpmx->_smtp->connect($smtpmx->timeout);
 
-                    $smtpmx->_smtp->disconnect();
+                $smtpmx->_smtp->disconnect();
+
+                print_R($res);exit;
                     
-                    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;
+//                }
                 
             }