X-Git-Url: http://git.roojs.org/?p=Pman.Core;a=blobdiff_plain;f=NotifySmtpCheck.php;h=7a2670ae639053984ea3281732690bb43a4f82f6;hp=ebfd2f78d26aad17a09ed4b936ea30896f9d2f99;hb=refs%2Fheads%2Fwip_alan_T6343_generic_progress_bar_delete;hpb=90dfcb4545f35b27b87d33af1ce31afa794d8fef diff --git a/NotifySmtpCheck.php b/NotifySmtpCheck.php index ebfd2f78..7a2670ae 100644 --- a/NotifySmtpCheck.php +++ b/NotifySmtpCheck.php @@ -1,19 +1,20 @@ check(); - + exit; } function check() @@ -29,6 +30,8 @@ class Pman_Core_NotifySmtpCheck extends Pman $helo = $this->getHelo(); + echo "HELO : {$helo} \n"; + $error = array(); foreach ($ff->Core_Notify['routes'] as $server => $settings){ @@ -40,15 +43,18 @@ class Pman_Core_NotifySmtpCheck extends Pman $socket_options = array ( 'ssl' => array( 'verify_peer' => false, - 'verify_peer_name' => false, - 'allow_self_signed' => true + 'verify_peer_name' => false ) ); - + if (empty($settings['port'])) { + $settings['port'] = 25; + } $smtp = new Net_SMTP($server, $settings['port'], $helo, false, 0, $socket_options); - $smtp->setDebug(true); - +// $smtp->setDebug(true); + + echo "Connecting : {$server}:{$settings['port']} \n"; + $res = $smtp->connect(10); if (is_a($res, 'PEAR_Error')) { @@ -56,6 +62,8 @@ class Pman_Core_NotifySmtpCheck extends Pman continue; } + echo "Login As : {$settings['username']}:{$settings['password']} \n"; + $res = $smtp->auth($settings['username'], $settings['password']); if (is_a($res, 'PEAR_Error')) { @@ -64,14 +72,19 @@ class Pman_Core_NotifySmtpCheck extends Pman } } - print_r($error);exit; + if(!empty($error)){ + print_r($error); + exit; + } + + return; } function getHelo() { $ifconfig = file_get_contents("https://ifconfig.co/"); $dom = new DomDocument('1.0', 'utf-8'); - $dom->loadHTML($ifconfig); + @$dom->loadHTML($ifconfig); $xpath = new DOMXPath($dom);