Changeset 9048094 in github


Ignore:
Timestamp:
Jul 21, 2010 3:55:20 AM (3 years ago)
Author:
thomascube <thomas@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
Children:
559de22
Parents:
f0ac2b9
Message:

Fix default IMAP port configuration (#1486864)

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • CHANGELOG

    r3e58bf2 r9048094  
    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 
  • program/include/rcmail.php

    r6a642d1 r9048094  
    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.