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