From: edward Date: Thu, 14 Jul 2016 05:35:12 +0000 (+0800) Subject: NotifySmtpCheck.php X-Git-Url: http://git.roojs.org/?p=Pman.Core;a=commitdiff_plain;h=90dfcb4545f35b27b87d33af1ce31afa794d8fef NotifySmtpCheck.php --- 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; } }