NotifySmtpCheck.php
[Pman.Core] / NotifySmtpCheck.php
index 28482dc..633de41 100644 (file)
@@ -54,28 +54,29 @@ class Pman_Core_NotifySmtpCheck extends Pman
 //                $smtpmx = new Mail_smtpmx($params);
 //                $smtpmx->debug = true;
                 
-                $options = array (
-        'ssl' => array(
-            'verify_peer'  => false,
-            'verify_peer_name'  => false,
-            'allow_self_signed' => true));
+                $socket_options = array (
+                    'ssl' => array(
+                        'verify_peer'  => false,
+                        'verify_peer_name'  => false,
+                        'allow_self_signed' => true
+                    )
+                );
                 
-                $smtp = new Net_SMTP($server, 993, $dom, false, 0, $options);
+                $smtp = new Net_SMTP($server, 25, $dom, false, 0, $socket_options);
                 
                 $smtp->setDebug(true);
 //                print_R($smtp);
                 
 //                print_R($smtpmx->_smtp);exit;
                 
-                $res = $smtp->connect($smtpmx->timeout);
+                $res = $smtp->connect(10);
                 
                 if (is_a($res, 'PEAR_Error')) {
-                    print_R('error?????');exit;
+                    die("Cound not connect to {$server}");
                 }
                 
-                $r = $smtp->auth($settings['username'], $settings['password']);
+                $res = $smtp->auth($settings['username'], $settings['password']);
             
-                print_R($r);exit;
 //                $smtpmx->_smtp->disconnect();
                 print_r("resutlt : {$res} \n");
                 exit;