NotifySmtpCheck.php
[Pman.Core] / NotifySmtpCheck.php
index 2bda62a..2aa4d13 100644 (file)
@@ -38,14 +38,16 @@ class Pman_Core_NotifySmtpCheck extends Pman
 //                print_R($mailer);exit;
                 
                 $params = array(
-                    'netdns' => false,
-                    'mailname' => $settings['username']
+                    '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);