A roundcube plugin that gives to the user the possibility to configure the imap server parameters (server address, port, protocol).
This plugin is tested under roundcube version 1.0. To have this plugin working you need to set an array of default hosts.
Example:
$config['default_host'] = array(
'ssl://imap.gmail.com'=>'Gmail',
'ssl://imap-mail.outlook.com' => 'Outlook (Hotmail)',
'ssl://imap.mail.yahoo.com' => 'Yahoo',
);
To install this plugin just add his name 'other_server' to the $config['plugins'] array in config.inc.php :
$config['plugins'] = array('other_server', ...);