From 90dfcb4545f35b27b87d33af1ce31afa794d8fef Mon Sep 17 00:00:00 2001 From: edward Date: Thu, 14 Jul 2016 13:35:12 +0800 Subject: [PATCH] NotifySmtpCheck.php --- NotifySmtpCheck.php | 51 +++++++++++++++++++++------------------------ 1 file changed, 24 insertions(+), 27 deletions(-) diff --git a/NotifySmtpCheck.php b/NotifySmtpCheck.php index bf0880c9..ebfd2f78 100644 --- a/NotifySmtpCheck.php +++ b/NotifySmtpCheck.php @@ -37,33 +37,30 @@ class Pman_Core_NotifySmtpCheck extends Pman continue; } - foreach ($settings['domains'] as $dom){ - - $socket_options = array ( - 'ssl' => array( - 'verify_peer' => false, - 'verify_peer_name' => false, - 'allow_self_signed' => true - ) - ); - - $smtp = new Net_SMTP($server, $settings['port'], $helo, false, 0, $socket_options); - - $smtp->setDebug(true); - - $res = $smtp->connect(10); - - if (is_a($res, 'PEAR_Error')) { - $error[] = "{$server} - Cound not connect"; - continue; - } - - $res = $smtp->auth($settings['username'], $settings['password']); - - if (is_a($res, 'PEAR_Error')) { - $error[] = "{$server} - Cound not login"; - continue; - } + $socket_options = array ( + 'ssl' => array( + 'verify_peer' => false, + 'verify_peer_name' => false, + 'allow_self_signed' => true + ) + ); + + $smtp = new Net_SMTP($server, $settings['port'], $helo, false, 0, $socket_options); + + $smtp->setDebug(true); + + $res = $smtp->connect(10); + + if (is_a($res, 'PEAR_Error')) { + $error[] = "{$server} - Cound not connect"; + continue; + } + + $res = $smtp->auth($settings['username'], $settings['password']); + + if (is_a($res, 'PEAR_Error')) { + $error[] = "{$server} - Cound not login"; + continue; } } -- 2.39.2