From e2026a4417685481d336436ecf64c5144faa4309 Mon Sep 17 00:00:00 2001 From: edward Date: Thu, 14 Jul 2016 12:15:27 +0800 Subject: [PATCH] NotifySmtpCheck.php --- NotifySmtpCheck.php | 30 ++++++++++++++++++++---------- 1 file changed, 20 insertions(+), 10 deletions(-) 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; +// } } -- 2.39.2