| | |
| | | |
| | | */ |
| | | |
| | | $OUTPUT->set_pagetitle(rcube_label('folders')); |
| | | |
| | | // init IMAP connection |
| | | rcmail_imap_init(TRUE); |
| | | |
| | | $OUTPUT->include_script('list.js'); |
| | | |
| | | $RCMAIL->imap_init(true); |
| | | |
| | | // subscribe to one or more mailboxes |
| | | if ($_action=='subscribe') |
| | | if ($RCMAIL->action=='subscribe') |
| | | { |
| | | if ($mboxes = get_input_value('_mboxes', RCUBE_INPUT_POST)) |
| | | $IMAP->subscribe($mboxes); |
| | | if ($mbox = get_input_value('_mbox', RCUBE_INPUT_POST)) |
| | | $IMAP->subscribe(array($mbox)); |
| | | |
| | | if ($OUTPUT->ajax_call) |
| | | $OUTPUT->remote_response('// subscribed'); |
| | | } |
| | | |
| | | // unsubscribe one or more mailboxes |
| | | else if ($_action=='unsubscribe') |
| | | else if ($RCMAIL->action=='unsubscribe') |
| | | { |
| | | if ($mboxes = get_input_value('_mboxes', RCUBE_INPUT_POST)) |
| | | $IMAP->unsubscribe($mboxes); |
| | | if ($mbox = get_input_value('_mbox', RCUBE_INPUT_POST)) |
| | | $IMAP->unsubscribe(array($mbox)); |
| | | |
| | | if ($OUTPUT->ajax_call) |
| | | $OUTPUT->remote_response('// unsubscribed'); |
| | | } |
| | | |
| | | // create a new mailbox |
| | | else if ($_action=='create-folder') |
| | | else if ($RCMAIL->action=='create-folder') |
| | | { |
| | | if (!empty($_POST['_name'])) |
| | | $create = $IMAP->create_mailbox(trim(get_input_value('_name', RCUBE_INPUT_POST, FALSE, 'UTF-7')), TRUE); |
| | | |
| | | { |
| | | $name = trim(get_input_value('_name', RCUBE_INPUT_POST, FALSE, 'UTF-7')); |
| | | // #1485036 (RFC3501, 5.1.3) TODO: it should be done on read not on write |
| | | $name = str_replace('&-', '&', $name); |
| | | $create = $IMAP->create_mailbox($name, TRUE); |
| | | } |
| | | |
| | | if ($create && $OUTPUT->ajax_call) |
| | | { |
| | | $delimiter = $IMAP->get_hierarchy_delimiter(); |
| | | $foldersplit = explode($delimiter, $create); |
| | | $display_create = str_repeat(' ', substr_count($create, $delimiter)) . rcube_charset_convert($foldersplit[count($foldersplit)-1], 'UTF-7'); |
| | | $OUTPUT->command('add_folder_row', $create, $display_create); |
| | | $OUTPUT->send(); |
| | | } |
| | | else if (!$create && $OUTPUT->ajax_call) |
| | | { |
| | | $OUTPUT->show_message('errorsaving', 'error'); |
| | | $OUTPUT->remote_response(); |
| | | } |
| | | else if (!$create) |
| | | { |
| | | $OUTPUT->show_message('errorsaving', 'error'); |
| | | } |
| | | } |
| | | |
| | | // rename a mailbox |
| | | else if ($_action=='rename-folder') |
| | | else if ($RCMAIL->action=='rename-folder') |
| | | { |
| | | $a_mboxes = array_unique(array_merge($IMAP->list_mailboxes(), $IMAP->list_unsubscribed())); |
| | | $delimiter = $IMAP->get_hierarchy_delimiter(); |
| | | |
| | | if (!empty($_POST['_folder_oldname']) && !empty($_POST['_folder_newname'])) |
| | | $rename = $IMAP->rename_mailbox(($oldname = get_input_value('_folder_oldname', RCUBE_INPUT_POST)), trim(get_input_value('_folder_newname', RCUBE_INPUT_POST, FALSE, 'UTF-7'))); |
| | | |
| | | { |
| | | $name = trim(get_input_value('_folder_newname', RCUBE_INPUT_POST, FALSE, 'UTF-7')); |
| | | // #1485036 (RFC3501, 5.1.3) TODO: it should be done on read not on write |
| | | $name = str_replace('&-', '&', $name); |
| | | $rename = $IMAP->rename_mailbox(($oldname = get_input_value('_folder_oldname', RCUBE_INPUT_POST)), $name); |
| | | } |
| | | |
| | | if ($rename && $OUTPUT->ajax_call) |
| | | { |
| | | $a_mboxes = array_unique(array_merge($IMAP->list_mailboxes(), $IMAP->list_unsubscribed())); |
| | | $delimiter = $IMAP->get_hierarchy_delimiter(); |
| | | $foldersplit = explode($delimiter, $rename); |
| | | $level = count($foldersplit) - 1; |
| | | $display_rename = str_repeat(' ', $level) . rcube_charset_convert($foldersplit[$level], 'UTF-7'); |
| | | $OUTPUT->command('replace_folder_row', $oldname, $rename, $display_rename); |
| | | |
| | | foreach ($a_mboxes as $mbox) |
| | | if (preg_match('/^'.preg_quote($oldname . $delimiter, '/').'/', $mbox)) |
| | | { |
| | |
| | | $OUTPUT->command('replace_folder_row', $mbox, $c_rename, $display_rename); |
| | | } |
| | | $OUTPUT->command('reset_folder_rename'); |
| | | $OUTPUT->send(); |
| | | } |
| | | else if (!$rename && $OUTPUT->ajax_call) |
| | | { |
| | | $OUTPUT->command('reset_folder_rename'); |
| | | $OUTPUT->show_message('errorsaving', 'error'); |
| | | $OUTPUT->send(); |
| | | } |
| | | else if (!$rename) |
| | | $OUTPUT->show_message('errorsaving', 'error'); |
| | | } |
| | | |
| | | // delete an existing IMAP mailbox |
| | | else if ($_action=='delete-folder') |
| | | else if ($RCMAIL->action=='delete-folder') |
| | | { |
| | | $a_mboxes = array_merge($IMAP->list_mailboxes(), $IMAP->list_unsubscribed()); |
| | | $delimiter = $IMAP->get_hierarchy_delimiter(); |
| | |
| | | } |
| | | } |
| | | $OUTPUT->show_message('folderdeleted', 'confirmation'); |
| | | $OUTPUT->send(); |
| | | } |
| | | else if ($OUTPUT->ajax_call) |
| | | else if (!$deleted) |
| | | { |
| | | $OUTPUT->show_message('errorsaving', 'error'); |
| | | $OUTPUT->send(); |
| | | } |
| | | } |
| | | |
| | | if ($OUTPUT->ajax_call) |
| | | $OUTPUT->send(); |
| | | |
| | | |
| | | // build table with all folders listed by server |
| | |
| | | $delimiter = $IMAP->get_hierarchy_delimiter(); |
| | | $a_js_folders = array(); |
| | | |
| | | $checkbox_subscribe = new checkbox(array('name' => '_subscribed[]', 'onclick' => JS_OBJECT_NAME.".command(this.checked?'subscribe':'unsubscribe',this.value)")); |
| | | $checkbox_subscribe = new html_checkbox(array('name' => '_subscribed[]', 'onclick' => JS_OBJECT_NAME.".command(this.checked?'subscribe':'unsubscribe',this.value)")); |
| | | |
| | | if (!empty($attrib['deleteicon'])) |
| | | $del_button = sprintf('<img src="%s%s" alt="%s" border="0" />', $CONFIG['skin_path'], $attrib['deleteicon'], rcube_label('delete')); |
| | |
| | | $foldersplit = explode($delimiter, $folder); |
| | | $level = count($foldersplit) - 1; |
| | | $display_folder = str_repeat(' ', $level) . rcube_charset_convert($foldersplit[$level], 'UTF-7'); |
| | | $folder_html = $CONFIG['protect_default_folders'] && in_array($folder, $CONFIG['default_imap_folders']) ? rcube_label(strtolower($folder)) : $display_folder; |
| | | $folder_html = $CONFIG['protect_default_folders'] && in_array($folder, $CONFIG['default_imap_folders']) ? rcmail_localize_foldername($folder) : $display_folder; |
| | | |
| | | if (!$protected) |
| | | $a_js_folders['rcmrow'.($i+1)] = array($folder, rcube_charset_convert($folder, 'UTF-7')); |
| | |
| | | // return the complete edit form as table |
| | | $out = "$form_start\n"; |
| | | |
| | | $input = new textfield(array('name' => '_folder_name')); |
| | | $input = new html_inputfield(array('name' => '_folder_name')); |
| | | $out .= $input->show(); |
| | | |
| | | if (get_boolean($attrib['button'])) |
| | | { |
| | | $button = new input_field(array('type' => 'button', |
| | | $button = new html_inputfield(array('type' => 'button', |
| | | 'value' => rcube_label('create'), |
| | | 'onclick' => JS_OBJECT_NAME.".command('create-folder',this.form)")); |
| | | $out .= $button->show(); |
| | |
| | | $out = "$form_start\n"; |
| | | |
| | | $a_unsubscribed = $IMAP->list_unsubscribed(); |
| | | $select_folder = new select(array('name' => '_folder_oldname', 'id' => 'rcmfd_oldfolder')); |
| | | $select_folder = new html_select(array('name' => '_folder_oldname', 'id' => 'rcmfd_oldfolder')); |
| | | |
| | | foreach ($a_unsubscribed as $i => $folder) |
| | | { |
| | |
| | | $out .= $select_folder->show(); |
| | | |
| | | $out .= " to "; |
| | | $inputtwo = new textfield(array('name' => '_folder_newname')); |
| | | $inputtwo = new html_inputfield(array('name' => '_folder_newname')); |
| | | $out .= $inputtwo->show(); |
| | | |
| | | if (get_boolean($attrib['button'])) |
| | | { |
| | | $button = new input_field(array('type' => 'button', |
| | | $button = new html_inputfield(array('type' => 'button', |
| | | 'value' => rcube_label('rename'), |
| | | 'onclick' => JS_OBJECT_NAME.".command('rename-folder',this.form)")); |
| | | $out .= $button->show(); |
| | |
| | | return $out; |
| | | } |
| | | |
| | | $OUTPUT->include_script('list.js'); |
| | | |
| | | // register UI objects |
| | | $OUTPUT->add_handlers(array( |