alecpl
2012-04-14 9870dac30de1b8d1bdeab57af3eeb7c89b21ef76
program/include/rcube_smtp.php
@@ -52,7 +52,7 @@
   */
  public function connect($host=null, $port=null, $user=null, $pass=null)
  {
    $RCMAIL = rcmail::get_instance();
    $RCMAIL = rcube::get_instance();
    // disconnect/destroy $this->conn
    $this->disconnect();
@@ -74,7 +74,7 @@
      'smtp_auth_callbacks' => array(),
    ));
    $smtp_host = rcube_parse_host($CONFIG['smtp_server']);
    $smtp_host = rcmail::parse_host($CONFIG['smtp_server']);
    // when called from Installer it's possible to have empty $smtp_host here
    if (!$smtp_host) $smtp_host = 'localhost';
    $smtp_port = is_numeric($CONFIG['smtp_port']) ? $CONFIG['smtp_port'] : 25;
@@ -338,7 +338,7 @@
   */
  public function debug_handler(&$smtp, $message)
  {
    write_log('smtp', preg_replace('/\r\n$/', '', $message));
    rcmail::write_log('smtp', preg_replace('/\r\n$/', '', $message));
  }