Opened 7 years ago

Closed 7 years ago

#1420654 closed Bugs (Fixed)

RoundCube always use port 143 to connect to IMAP server

Reported by: nobody Owned by: roundcube
Priority: 5 Milestone:
Component: IMAP connection Version: 0.1-beta
Severity: Keywords:
Cc:

Description

Even if you change the default port number in the
config file, RoundCube try to connect to IMAP server
using port 143.

Change History (3)

comment:1 Changed 7 years ago by spider_007

Logged In: YES 
user_id=860043

See the following code; might you have overridden the
portnumber in the default_host variable? What is your
default_host entry?

$a_host = parse_url($host);
$imap_port = isset($a_host['port']) ? $a_host['port'] :
($imap_ssl ? 993 : $CONFIG['default_port']);

comment:2 Changed 7 years ago by nobody

Logged In: NO 

Hi.
As You might know You can use 
$rcmail_config['default_host'] = 'localhost:785';

/GunFro

comment:3 Changed 7 years ago by roundcube

  • Status changed from assigned to closed
Note: See TracTickets for help on using tickets.