NotifySmtpCheck.php
[Pman.Core] / NotifySmtpCheck.php
index 4aaa448..b155550 100644 (file)
@@ -37,19 +37,17 @@ class Pman_Core_NotifySmtpCheck extends Pman
 //                
 //                print_R($mailer);exit;
                 
-                $headers = array(
-                    'From' => $settings['username']
-                );
-                
                 $params = array(
-                    'netdns' => false,
-                    'mailname' => 'edward.roojs'
+                    'netdns' => false
                 );
                 
                 $smtpmx = new Mail_smtpmx($params);
+                $smtpmx->debug = true;
                 
                 $smtpmx->_smtp = new Net_SMTP($server, $smtpmx->port, $smtpmx->mailname);
-                    
+                
+                $smtpmx->_smtp->setDebug(true);
+                
 //                print_R($smtpmx->_smtp);exit;
                 
                 $res = $smtpmx->_smtp->connect($smtpmx->timeout);
@@ -58,7 +56,7 @@ class Pman_Core_NotifySmtpCheck extends Pman
                     print_R('error?????');exit;
                 }
             
-                $smtpmx->_smtp->disconnect();
+//                $smtpmx->_smtp->disconnect();
 
                 print_R($res);exit;