Hotfixes for release 0.4.1 building new 0.4.2 version
| | |
| | | CHANGELOG Roundcube Webmail |
| | | =========================== |
| | | |
| | | - Fix handling of backslash as IMAP delimiter |
| | | - Fix charset replacement in HTML message bodies (#1487021) |
| | | - Fix: contact group input is empty when using rename action more than once on the same group record |
| | | - Fix "Server Error! (Not Found)" when using utils/save-pref action (#1487023) |
| | | - Fix handling of Thunderbird's vCards (#1487024) |
| | | |
| | | RELEASE 0.4.1 |
| | | ------------- |
| | | |
| | | - Fix space-stuffing in format=flowed messages (#1487018) |
| | | - Fix msgexport.sh now using the new imap wrapper |
| | | - Avoid displaying password on shell (#1486947) |
| | |
| | | /* |
| | | +-------------------------------------------------------------------------+ |
| | | | Roundcube Webmail IMAP Client | |
| | | | Version 0.4.1 | |
| | | | Version 0.4.2 | |
| | | | | |
| | | | Copyright (C) 2005-2010, Roundcube Dev. - Switzerland | |
| | | | | |
| | |
| | | } |
| | | } |
| | | |
| | | // don't check for valid request tokens in these actions |
| | | $request_check_whitelist = array('login'=>1, 'spell'=>1); |
| | | |
| | | // check client X-header to verify request origin |
| | | if ($OUTPUT->ajax_call) { |
| | | if (!$RCMAIL->config->get('devel_mode') && rc_request_header('X-Roundcube-Request') != $RCMAIL->get_request_token() && !empty($RCMAIL->user->ID)) { |
| | | header('HTTP/1.1 404 Not Found'); |
| | | die("Invalid Request"); |
| | | } |
| | | } |
| | | // check request token in POST form submissions |
| | | else if (!empty($_POST) && !$request_check_whitelist[$RCMAIL->action] && !$RCMAIL->check_request()) { |
| | | $OUTPUT->show_message('invalidrequest', 'error'); |
| | | $OUTPUT->send($RCMAIL->task); |
| | | } |
| | | |
| | | // not logged in -> show login page |
| | | if (empty($RCMAIL->user->ID)) { |
| | | if ($OUTPUT->ajax_call) |
| | |
| | | $OUTPUT->set_env('task', 'login'); |
| | | $OUTPUT->send('login'); |
| | | } |
| | | // CSRF prevention |
| | | else { |
| | | // don't check for valid request tokens in these actions |
| | | $request_check_whitelist = array('login'=>1, 'spell'=>1); |
| | | |
| | | // check client X-header to verify request origin |
| | | if ($OUTPUT->ajax_call) { |
| | | if (rc_request_header('X-Roundcube-Request') != $RCMAIL->get_request_token()) { |
| | | header('HTTP/1.1 404 Not Found'); |
| | | die("Invalid Request"); |
| | | } |
| | | } |
| | | // check request token in POST form submissions |
| | | else if (!empty($_POST) && !$request_check_whitelist[$RCMAIL->action] && !$RCMAIL->check_request()) { |
| | | $OUTPUT->show_message('invalidrequest', 'error'); |
| | | $OUTPUT->send($RCMAIL->task); |
| | | } |
| | | } |
| | | |
| | | // handle keep-alive signal |
| | | // handle special actions |
| | | if ($RCMAIL->action == 'keep-alive') { |
| | | $OUTPUT->reset(); |
| | | $OUTPUT->send(); |
| | | } |
| | | else if ($RCMAIL->action == 'save-pref') { |
| | | include 'steps/utils/save_pref.inc'; |
| | | } |
| | | |
| | | |
| | | // map task/action to a certain include file |
| | |
| | | | program/include/iniset.php | |
| | | | | |
| | | | This file is part of the Roundcube Webmail client | |
| | | | Copyright (C) 2008-2009, Roundcube Dev, - Switzerland | |
| | | | Copyright (C) 2008-2010, Roundcube Dev, - Switzerland | |
| | | | Licensed under the GNU GPL | |
| | | | | |
| | | | PURPOSE: | |
| | |
| | | } |
| | | |
| | | // application constants |
| | | define('RCMAIL_VERSION', '0.4.1'); |
| | | define('RCMAIL_VERSION', '0.4.2'); |
| | | define('RCMAIL_CHARSET', 'UTF-8'); |
| | | define('JS_OBJECT_NAME', 'rcmail'); |
| | | define('RCMAIL_START', microtime(true)); |
| | |
| | | return true; |
| | | } |
| | | |
| | | if (!$this->getCapability('NAMESPACE')) { |
| | | return false; |
| | | } |
| | | |
| | | if (!$this->putLine("ns1 NAMESPACE")) { |
| | | return false; |
| | | } |
| | | do { |
| | | $line = $this->readLine(1024); |
| | | if (preg_match('/^\* NAMESPACE/', $line)) { |
| | | $i = 0; |
| | | $line = $this->unEscape($line); |
| | | $data = $this->parseNamespace(substr($line,11), $i, 0, 0); |
| | | } |
| | | } while (!$this->startsWith($line, 'ns1', true, true)); |
| | | |
| | | if (!is_array($data)) { |
| | | if (!is_array($data = $this->_namespace())) { |
| | | return false; |
| | | } |
| | | |
| | |
| | | } |
| | | |
| | | do { |
| | | $line = $this->readLine(500); |
| | | if ($line[0] == '*') { |
| | | $line = rtrim($line); |
| | | $a = rcube_explode_quoted_string(' ', $this->unEscape($line)); |
| | | if ($a[0] == '*') { |
| | | $delimiter = str_replace('"', '', $a[count($a)-2]); |
| | | } |
| | | $line = $this->readLine(1024); |
| | | if (preg_match('/^\* LIST \([^\)]*\) "*([^"]+)"* ""/', $line, $m)) { |
| | | $delimiter = $this->unEscape($m[1]); |
| | | } |
| | | } while (!$this->startsWith($line, 'ghd', true, true)); |
| | | |
| | |
| | | |
| | | // if that fails, try namespace extension |
| | | // try to fetch namespace data |
| | | if (!$this->putLine("ns1 NAMESPACE")) { |
| | | return false; |
| | | } |
| | | |
| | | do { |
| | | $line = $this->readLine(1024); |
| | | if (preg_match('/^\* NAMESPACE/', $line)) { |
| | | $i = 0; |
| | | $line = $this->unEscape($line); |
| | | $data = $this->parseNamespace(substr($line,11), $i, 0, 0); |
| | | } |
| | | } while (!$this->startsWith($line, 'ns1', true, true)); |
| | | |
| | | if (!is_array($data)) { |
| | | if (!is_array($data = $this->_namespace())) { |
| | | return false; |
| | | } |
| | | |
| | |
| | | $delimiter = $first_userspace[1]; |
| | | |
| | | return $delimiter; |
| | | } |
| | | |
| | | function _namespace() |
| | | { |
| | | if (!$this->getCapability('NAMESPACE')) { |
| | | return false; |
| | | } |
| | | |
| | | if (!$this->putLine("ns1 NAMESPACE")) { |
| | | return false; |
| | | } |
| | | |
| | | do { |
| | | $line = $this->readLine(1024); |
| | | if (preg_match('/^\* NAMESPACE/', $line)) { |
| | | $i = 0; |
| | | $data = $this->parseNamespace(substr($line,11), $i, 0, 0); |
| | | } |
| | | } while (!$this->startsWith($line, 'ns1', true, true)); |
| | | |
| | | if (!is_array($data)) { |
| | | return false; |
| | | } |
| | | |
| | | return $data; |
| | | } |
| | | |
| | | function connect($host, $user, $password, $options=null) |
| | |
| | | // folder name |
| | | $folders[] = preg_replace(array('/^"/', '/"$/'), '', $this->unEscape($m[3])); |
| | | // attributes |
| | | // $attrib = explode(' ', $m[1]); |
| | | // $attrib = explode(' ', $this->unEscape($m[1])); |
| | | // delimiter |
| | | // $delim = $m[2]; |
| | | // $delim = $this->unEscape($m[2]); |
| | | } |
| | | } while (!$this->startsWith($line, $key, true)); |
| | | |
| | |
| | | } else if ($c == '\\') { |
| | | $i++; |
| | | if ($in_quotes) { |
| | | $data[$elem] .= $c.$str[$i]; |
| | | $data[$elem] .= $str[$i]; |
| | | } |
| | | } else if ($c == '"') { |
| | | $in_quotes = !$in_quotes; |
| | |
| | | if ($in_vcard_block && !empty($line)) |
| | | $vcard_block .= $line . "\n"; |
| | | |
| | | if (trim($line) == 'END:VCARD') { |
| | | $line = trim($line); |
| | | |
| | | if (preg_match('/^END:VCARD$/i', $line)) { |
| | | // parse vcard |
| | | $obj = new rcube_vcard(self::cleanup($vcard_block), $charset); |
| | | if (!empty($obj->displayname)) |
| | |
| | | |
| | | $in_vcard_block = false; |
| | | } |
| | | else if (trim($line) == 'BEGIN:VCARD') { |
| | | else if (preg_match('/^BEGIN:VCARD$/i', $line)) { |
| | | $vcard_block = $line . "\n"; |
| | | $in_vcard_block = true; |
| | | } |
| | |
| | | } |
| | | } |
| | | |
| | | this.http_post('utils/save-pref', '_name=collapsed_folders&_value='+urlencode(this.env.collapsed_folders)); |
| | | this.http_post('save-pref', '_name=collapsed_folders&_value='+urlencode(this.env.collapsed_folders)); |
| | | this.set_unread_count_display(id, false); |
| | | }; |
| | | |
| | |
| | | if ((found = $.inArray('subject', this.env.coltypes)) >= 0) |
| | | this.set_env('subject_col', found); |
| | | |
| | | this.http_post('utils/save-pref', { '_name':'list_cols', '_value':this.env.coltypes, '_session':'list_attrib/columns' }); |
| | | this.http_post('save-pref', { '_name':'list_cols', '_value':this.env.coltypes, '_session':'list_attrib/columns' }); |
| | | }; |
| | | |
| | | this.check_droptarget = function(id) |
| | |
| | | $html = '<head></head>'. $html; |
| | | $html = substr_replace($html, '<meta http-equiv="Content-Type" content="text/html; charset='.RCMAIL_CHARSET.'" />', intval(stripos($html, '<head>')+6), 0); |
| | | } |
| | | |
| | | // turn relative into absolute urls |
| | | $html = rcmail_resolve_base($html); |
| | | |
| | |
| | | rcmail.env.contentframe = null; |
| | | rcmail.show_contentframe(false); |
| | | } |
| | | rcmail.http_post('utils/save-pref', '_name=preview_pane&_value='+(elem.checked?1:0)); |
| | | rcmail.http_post('save-pref', '_name=preview_pane&_value='+(elem.checked?1:0)); |
| | | }, |
| | | |
| | | /* Message composing */ |