Aleksander Machniak
2013-03-02 0bf724ef1f6a980479d7d6dfc6af62aa421a2888
program/include/rcmail.php
@@ -1810,11 +1810,18 @@
        else if ($res_code == rcube_storage::READONLY) {
            $this->output->show_message('errorreadonly', 'error');
        }
        else if ($res_code == rcube_storage::OVERQUOTA) {
            $this->output->show_message('errorroverquota', 'error');
        }
        else if ($err_code && ($err_str = $this->storage->get_error_str())) {
            // try to detect access rights problem and display appropriate message
            if (stripos($err_str, 'Permission denied') !== false) {
                $this->output->show_message('errornoperm', 'error');
            }
            // try to detect full mailbox problem and display appropriate message
            else if (stripos($err_str, 'Quota exceeded') !== false) {
                $this->output->show_message('erroroverquota', 'error');
            }
            else {
                $this->output->show_message('servererrormsg', 'error', array('msg' => $err_str));
            }