Roundcube Community Forum

Release Support => Pending Issues => Topic started by: Rid on August 14, 2008, 10:11:48 AM

Title: Login IMAP Server input Field
Post by: Rid on August 14, 2008, 10:11:48 AM
Hello,

I am trying to get Roundcube running.

Every Server Im using works with $rcmail_config['default_host']
But none of them, if I try the Inputfield and $rcmail_config['default_host']=''; (2x ')

IMAP Error: Invalid host


Rid
Title: Login IMAP Server input Field
Post by: Rid on August 14, 2008, 10:23:06 AM
Hi,

I think I resolved it.

File: program/include/rcmail.php
Line: 477

Before: $host = !empty($default_host) ? get_input_value('_host', RCUBE_INPUT_POST) : $default_host;

After: $host = empty($default_host) ? get_input_value('_host', RCUBE_INPUT_POST) : $default_host;


Rid
Title: Login IMAP Server input Field
Post by: JohnDoh on August 15, 2008, 06:49:43 AM
I think this has already been fixed in trunk, please try the lastest SVN.