- Fix issue with folder creation under INBOX. namespace (#1488349)

pull/1/head
alecpl 13 years ago
parent 06c990ead2
commit 18a3dcaf56

@ -1,6 +1,7 @@
CHANGELOG Roundcube Webmail
===========================
- Fix issue with folder creation under INBOX. namespace (#1488349)
- Added mailto: protocol handler registration link in User Preferences (#1486580)
- Handle identity details box with an iframe (#1487020)
- Fix issue where some text from original message was missing on reply (#1488340)

@ -4984,7 +4984,7 @@ function rcube_webmail()
if (!this.gui_objects.subscriptionlist)
return false;
var row, n, i, tmp, folders, rowid, list = [], slist = [],
var row, n, i, tmp, tmp_name, folders, rowid, list = [], slist = [],
tbody = this.gui_objects.subscriptionlist.tBodies[0],
refrow = $('tr', tbody).get(1),
id = 'rcmrow'+((new Date).getTime());
@ -5020,8 +5020,12 @@ function rcube_webmail()
for (n in folders) {
// protected folder
if (folders[n][2]) {
tmp_name = folders[n][0] + this.env.delimiter;
// prefix namespace cannot have subfolders (#1488349)
if (tmp_name == this.env.prefix_ns)
continue;
slist.push(folders[n][0]);
tmp = folders[n][0]+this.env.delimiter;
tmp = tmp_name;
}
// protected folder's child
else if (tmp && folders[n][0].indexOf(tmp) == 0)

@ -115,6 +115,15 @@ function rcmail_folder_form($attrib)
}
else {
$selected = isset($_POST['_parent']) ? $_POST['_parent'] : $path_id;
$exceptions = array($mbox_imap);
// Exclude 'prefix' namespace from parent folders list (#1488349)
// If INBOX. namespace exists, folders created as INBOX subfolders
// will be listed at the same level - selecting INBOX as a parent does nothing
if ($prefix = $storage->get_namespace('prefix')) {
$exceptions[] = substr($prefix, 0, -1);
}
$select = rcmail_mailbox_select(array(
'name' => '_parent',
'noselection' => '---',
@ -122,7 +131,7 @@ function rcmail_folder_form($attrib)
'maxlength' => 150,
'unsubscribed' => true,
'skip_noinferiors' => true,
'exceptions' => array($mbox_imap),
'exceptions' => $exceptions,
));
$form['props']['fieldsets']['location']['content']['path'] = array(

@ -415,6 +415,7 @@ function rcmail_rename_folder($oldname, $newname)
$OUTPUT->set_pagetitle(rcube_label('folders'));
$OUTPUT->include_script('list.js');
$OUTPUT->set_env('quota', $STORAGE->get_capability('QUOTA'));
$OUTPUT->set_env('prefix_ns', $STORAGE->get_namespace('prefix'));
// add some labels to client
$OUTPUT->add_label('deletefolderconfirm', 'purgefolderconfirm', 'folderdeleting',

Loading…
Cancel
Save