From: edward Date: Thu, 14 Jul 2016 04:15:27 +0000 (+0800) Subject: NotifySmtpCheck.php X-Git-Url: http://git.roojs.org/?p=Pman.Core;a=commitdiff_plain;h=e2026a4417685481d336436ecf64c5144faa4309 NotifySmtpCheck.php --- diff --git a/NotifySmtpCheck.php b/NotifySmtpCheck.php index 9dd2d0a1..542da014 100644 --- a/NotifySmtpCheck.php +++ b/NotifySmtpCheck.php @@ -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; +// } }