Fix host autoselection when default_host is an array (#1488495)

pull/17/head
Aleksander Machniak 12 years ago
parent ad8552ea6f
commit a9055c5a81

@ -1,6 +1,7 @@
CHANGELOG Roundcube Webmail
===========================
- Fix host autoselection when default_host is an array (#1488495)
- Move messages forwarding mode setting into Preferences
- Fix HTML entities handling in HTML editor (#1488483)
- Fix listing shared folders on Courier IMAP (#1488466)

@ -1017,15 +1017,16 @@ class rcmail
if (is_array($default_host)) {
$post_host = get_input_value('_host', RCUBE_INPUT_POST);
$post_user = get_input_value('_user', RCUBE_INPUT_POST);
list($user, $domain) = explode('@', $post_user);
// direct match in default_host array
if ($default_host[$post_host] || in_array($post_host, array_values($default_host))) {
if ($default_host[$post_host] || in_array($post_host, $default_host)) {
$host = $post_host;
}
// try to select host by mail domain
list($user, $domain) = explode('@', get_input_value('_user', RCUBE_INPUT_POST));
if (!empty($domain)) {
else if (!empty($domain)) {
foreach ($default_host as $storage_host => $mail_domains) {
if (is_array($mail_domains) && in_array_nocase($domain, $mail_domains)) {
$host = $storage_host;

Loading…
Cancel
Save