NotifySmtpCheck.php
[Pman.Core] / NotifySmtpCheck.php
index 0113564..6115092 100644 (file)
@@ -36,23 +36,6 @@ class Pman_Core_NotifySmtpCheck extends Pman
             }
             
             foreach ($settings['domains'] as $dom){
-//                $mailer = Mail::factory('smtp', array(
-//                    'host'    => $dom ,
-//                    'localhost' => $server,
-//                    'timeout' => 15,
-//                    'auth' => true,
-//                    'username' => $settings['username'],
-//                    'password' => $settings['password']
-//                ));
-//                
-//                print_R($mailer);exit;
-                
-//                $params = array(
-//                    'netdns' => false
-//                );
-                
-//                $smtpmx = new Mail_smtpmx($params);
-//                $smtpmx->debug = true;
                 
                 $socket_options = array (
                     'ssl' => array(
@@ -62,23 +45,23 @@ class Pman_Core_NotifySmtpCheck extends Pman
                     )
                 );
                 
-                $smtp = new Net_SMTP($server, 993, $dom, false, 0, $socket_options);
+                $smtp = new Net_SMTP($server, 25, '058177247238.ctinets.com', false, 0, $socket_options);
                 
                 $smtp->setDebug(true);
-//                print_R($smtp);
-                
-//                print_R($smtpmx->_smtp);exit;
                 
                 $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");
+                if (is_a($res, 'PEAR_Error')) {
+                    die($res);
+                }
+                
+                print_R("SUCCESS? {$res} \n");
                 exit;
                     
 //                $mx = $smtpmx->_getMx($dom);