| | |
| | | | RoundCube Webmail Client Script | |
| | | | | |
| | | | This file is part of the RoundCube Webmail client | |
| | | | Copyright (C) 2005-2007, RoundCube Dev, - Switzerland | |
| | | | Copyright (C) 2005-2008, RoundCube Dev, - Switzerland | |
| | | | Licensed under the GNU GPL | |
| | | | | |
| | | +-----------------------------------------------------------------------+ |
| | |
| | | else |
| | | this.message_list.focus(); |
| | | } |
| | | |
| | | if (this.env.coltypes) |
| | | this.set_message_coltypes(this.env.coltypes); |
| | | |
| | | // enable mail commands |
| | | this.enable_command('list', 'checkmail', 'compose', 'add-contact', 'search', 'reset-search', true); |
| | |
| | | |
| | | if (this.env.action=='show' || this.env.action=='preview') |
| | | { |
| | | this.enable_command('show', 'reply', 'reply-all', 'forward', 'moveto', 'delete', 'viewsource', 'print', 'load-attachment', true); |
| | | this.enable_command('show', 'reply', 'reply-all', 'forward', 'moveto', 'delete', 'mark', 'viewsource', 'print', 'load-attachment', true); |
| | | if (this.env.next_uid) |
| | | { |
| | | this.enable_command('nextmessage', true); |
| | |
| | | break; |
| | | |
| | | case 'login': |
| | | var input_user = rcube_find_object('_user'); |
| | | var input_pass = rcube_find_object('_pass'); |
| | | var input_user = rcube_find_object('rcmloginuser'); |
| | | var input_pass = rcube_find_object('rcmloginpwd'); |
| | | if (input_user) |
| | | input_user.onkeypress = function(e){ return rcmail.login_user_keypress(e); }; |
| | | if (input_user && input_user.value=='') |
| | |
| | | else if (this.task == 'addressbook' && this.drag_active) |
| | | this.copy_contact(null, props); |
| | | break; |
| | | |
| | | |
| | | case 'mark': |
| | | if (props) |
| | | this.mark_message(props); |
| | | break; |
| | | |
| | | case 'toggle_status': |
| | | if (props && !props._row) |
| | | break; |
| | |
| | | if (props._row.uid) |
| | | { |
| | | uid = props._row.uid; |
| | | this.message_list.dont_select = true; |
| | | |
| | | // toggle read/unread |
| | | if (this.message_list.rows[uid].deleted) { |
| | | flag = 'undelete'; |
| | |
| | | break; |
| | | |
| | | case 'load-attachment': |
| | | var qstring = '_mbox='+this.env.mailbox+'&_uid='+this.env.uid+'&_part='+props.part; |
| | | var qstring = '_mbox='+urlencode(this.env.mailbox)+'&_uid='+this.env.uid+'&_part='+props.part; |
| | | |
| | | // open attachment in frame if it's of a supported mimetype |
| | | if (this.env.uid && props.mimetype && find_in_array(props.mimetype, this.mimetypes)>=0) |
| | |
| | | case 'print': |
| | | var uid; |
| | | if (uid = this.get_single_uid()) |
| | | { |
| | | { |
| | | ref.printwin = window.open(this.env.comm_path+'&_action=print&_uid='+uid+'&_mbox='+urlencode(this.env.mailbox)+(this.env.safemode ? '&_safe=1' : '')); |
| | | if (this.printwin) |
| | | { |
| | | setTimeout(function(){ ref.printwin.focus(); }, 20); |
| | | if (this.env.action != 'show') |
| | | this.toggle_read_status('read', [uid]); |
| | | } |
| | | } |
| | | break; |
| | | |
| | | case 'viewsource': |
| | |
| | | this.unfocus_folder(id); |
| | | this.command('moveto', id); |
| | | } |
| | | |
| | | // Hide message command buttons until a message is selected |
| | | this.enable_command('reply', 'reply-all', 'forward', 'delete', 'print', false); |
| | | return false; |
| | | }; |
| | | |
| | | this.click_on_list = function(e) |
| | |
| | | { |
| | | this.enable_command('reply', 'reply-all', 'forward', false); |
| | | this.enable_command('show', selected); |
| | | this.enable_command('delete', 'moveto', (list.selection.length > 0 ? true : false)); |
| | | this.enable_command('delete', 'moveto', 'mark', (list.selection.length > 0 ? true : false)); |
| | | } |
| | | else |
| | | { |
| | | this.enable_command('show', 'reply', 'reply-all', 'forward', 'print', selected); |
| | | this.enable_command('delete', 'moveto', (list.selection.length > 0 ? true : false)); |
| | | this.enable_command('delete', 'moveto', 'mark', (list.selection.length > 0 ? true : false)); |
| | | } |
| | | |
| | | // start timer for message preview (wait for double click) |
| | |
| | | this.move_messages = function(mbox) |
| | | { |
| | | // exit if current or no mailbox specified or if selection is empty |
| | | if (!mbox || !this.env.uid || mbox==this.env.mailbox) |
| | | { |
| | | if (!this.message_list || !this.message_list.get_selection().length) |
| | | return; |
| | | } |
| | | if (!mbox || mbox == this.env.mailbox || (!this.env.uid && (!this.message_list || !this.message_list.get_selection().length))) |
| | | return; |
| | | |
| | | var lock = false; |
| | | var add_url = '&_target_mbox='+urlencode(mbox)+'&_from='+(this.env.action ? this.env.action : ''); |
| | |
| | | } |
| | | else |
| | | this.show_contentframe(false); |
| | | |
| | | // Hide message command buttons until a message is selected |
| | | this.enable_command('reply', 'reply-all', 'forward', 'delete', 'mark', 'print', false); |
| | | |
| | | this._with_selected_messages('moveto', lock, add_url); |
| | | }; |
| | |
| | | { |
| | | // check input fields |
| | | var input_to = rcube_find_object('_to'); |
| | | var input_cc = rcube_find_object('_cc'); |
| | | var input_bcc = rcube_find_object('_bcc'); |
| | | var input_subject = rcube_find_object('_subject'); |
| | | var input_message = rcube_find_object('_message'); |
| | | |
| | | // check for empty recipient |
| | | if (input_to && !rcube_check_email(input_to.value.replace(/^\s+/, '').replace(/[\s,;]+$/, ''), true)) |
| | | var recipients = input_to.value ? input_to.value : (input_cc.value ? input_cc.value : input_bcc.value); |
| | | if (!rcube_check_email(recipients.replace(/^\s+/, '').replace(/[\s,;]+$/, ''), true)) |
| | | { |
| | | alert(this.get_label('norecipientwarning')); |
| | | input_to.focus(); |
| | |
| | | var eid = tinyMCE.getEditorId('_message'); |
| | | // editor is a TinyMCE_Control object |
| | | var editor = tinyMCE.getInstanceById(eid); |
| | | // if this is null, we should exit |
| | | if (editor == null) { |
| | | return false; |
| | | } |
| | | var msgDoc = editor.getDoc(); |
| | | var msgBody = msgDoc.body; |
| | | |
| | |
| | | // reset vars |
| | | this.env.current_page = 1; |
| | | this.set_busy(true, 'searching'); |
| | | this.http_request('search', '_q='+urlencode(value)+(this.env.mailbox ? '&_mbox='+this.env.mailbox : '')+(this.env.source ? '&_source='+urlencode(this.env.source) : ''), true); |
| | | this.http_request('search', '_q='+urlencode(value)+(this.env.mailbox ? '&_mbox='+urlencode(this.env.mailbox) : '')+(this.env.source ? '&_source='+urlencode(this.env.source) : ''), true); |
| | | } |
| | | return true; |
| | | }; |
| | |
| | | this.set_env('folder', folder); |
| | | else |
| | | this.set_env('folder', null); |
| | | |
| | | if (this.gui_objects.createfolderhint) |
| | | this.gui_objects.createfolderhint.innerHTML = this.env.folder ? this.get_label('addsubfolderhint') : ''; |
| | | }; |
| | | |
| | | |
| | |
| | | // tell server to create and subscribe a new mailbox |
| | | this.create_folder = function(name) |
| | | { |
| | | if (this.edit_folder) |
| | | this.reset_folder_rename(); |
| | | if (this.edit_folder) |
| | | this.reset_folder_rename(); |
| | | |
| | | var form; |
| | | if ((form = this.gui_objects.editform) && form.elements['_folder_name']) |
| | | name = form.elements['_folder_name'].value; |
| | | if (this.env.folder) |
| | | if (this.env.folder && name != '') |
| | | name = this.env.folder+this.env.delimiter+name; |
| | | |
| | | if (name) |
| | |
| | | |
| | | var refrow, form; |
| | | var tbody = this.gui_objects.subscriptionlist.tBodies[0]; |
| | | var id = replace && replace.id ? replace.id : 'rcmrow'+(tbody.childNodes.length+1); |
| | | var id = 'rcmrow'+(tbody.childNodes.length+1); |
| | | var selection = this.subscription_list.get_single_selection(); |
| | | |
| | | if (replace && replace.id) |
| | | { |
| | | id = replace.id; |
| | | refid = replace.id; |
| | | } |
| | | |
| | | if (!id || !(refrow = document.getElementById(refid))) |
| | | { |
| | |
| | | else |
| | | tbody.appendChild(row); |
| | | } |
| | | |
| | | |
| | | // add to folder/row-ID map |
| | | this.env.subscriptionrows[row.id] = [name, display_name]; |
| | | |
| | | // set folder name |
| | | row.cells[0].innerHTML = display_name; |
| | | if (row.cells[1] && row.cells[1].firstChild.tagName=='INPUT') |
| | | |
| | | // set messages count to zero |
| | | if (!replace) |
| | | row.cells[1].innerHTML = '*'; |
| | | |
| | | if (!replace && row.cells[2] && row.cells[2].firstChild.tagName=='INPUT') |
| | | { |
| | | row.cells[1].firstChild.value = name; |
| | | row.cells[1].firstChild.checked = true; |
| | | row.cells[2].firstChild.value = name; |
| | | row.cells[2].firstChild.checked = true; |
| | | } |
| | | |
| | | |
| | | // add new folder to rename-folder list and clear input field |
| | | if (!replace && (form = this.gui_objects.editform)) |
| | | { |
| | |
| | | |
| | | cell.id = 'rcmHead'+col; |
| | | } |
| | | |
| | | if (col == 'subject' && this.message_list) |
| | | this.message_list.subject_col = n+1; |
| | | } |
| | | |
| | | }; |
| | | |
| | | // create a table row in the message list |
| | |
| | | if (!this.gui_objects.mailboxlist) |
| | | return false; |
| | | |
| | | var reg, text_obj; |
| | | var item = this.get_folder_li(mbox); |
| | | mbox = String(mbox).toLowerCase().replace(this.identifier_expr, ''); |
| | | |
| | | if (item && item.className && item.className.indexOf('mailbox '+mbox)>=0) |
| | | var reg, text_obj, item; |
| | | if (item = this.get_folder_li(mbox)) |
| | | { |
| | | // set new text |
| | | text_obj = item.firstChild; |