Changeset 3819 in subversion


Ignore:
Timestamp:
Jul 21, 2010 3:55:20 AM (3 years ago)
Author:
thomasb
Message:

Fix default IMAP port configuration (#1486864)

Location:
trunk/roundcubemail
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/roundcubemail/CHANGELOG

    r3795 r3819  
    22=========================== 
    33 
     4- Fix default IMAP port configuration (#1486864) 
     5- Create Sent folder when starting to compose a new message (#1486802) 
    46- Fix handling of messages with Content-Type: application/* and no filename (#1484050) 
    57- Improved compose screen: resizable body and attachments list, vertical splitter, options menu 
  • trunk/roundcubemail/program/include/rcmail.php

    r3724 r3819  
    586586      if(!empty($a_host['port'])) 
    587587        $imap_port = $a_host['port']; 
    588       else if ($imap_ssl && $imap_ssl != 'tls') 
     588      else if ($imap_ssl && $imap_ssl != 'tls' && (!$config['default_port'] || $config['default_port'] == 143)) 
    589589        $imap_port = 993; 
    590590    } 
Note: See TracChangeset for help on using the changeset viewer.