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
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
I think this has already been fixed in trunk, please try the lastest SVN.