]> git.donarmstrong.com Git - roundcube.git/blob - program/js/app.js.src
411aa2ba4e31ca563063254d1634dc915474c076
[roundcube.git] / program / js / app.js.src
1 /*
2  +-----------------------------------------------------------------------+
3  | Roundcube Webmail Client Script                                       |
4  |                                                                       |
5  | This file is part of the Roundcube Webmail client                     |
6  | Copyright (C) 2005-2010, Roundcube Dev, - Switzerland                 |
7  | Licensed under the GNU GPL                                            |
8  |                                                                       |
9  +-----------------------------------------------------------------------+
10  | Authors: Thomas Bruederli <roundcube@gmail.com>                       |
11  |          Aleksander 'A.L.E.C' Machniak <alec@alec.pl>                 |
12  |          Charles McNulty <charles@charlesmcnulty.com>                 |
13  +-----------------------------------------------------------------------+
14  | Requires: jquery.js, common.js, list.js                               |
15  +-----------------------------------------------------------------------+
16
17   $Id: app.js 4763 2011-05-13 17:31:09Z alec $
18 */
19
20
21 function rcube_webmail()
22 {
23   this.env = {};
24   this.labels = {};
25   this.buttons = {};
26   this.buttons_sel = {};
27   this.gui_objects = {};
28   this.gui_containers = {};
29   this.commands = {};
30   this.command_handlers = {};
31   this.onloads = [];
32   this.messages = {};
33
34   // create protected reference to myself
35   this.ref = 'rcmail';
36   var ref = this;
37
38   // webmail client settings
39   this.dblclick_time = 500;
40   this.message_time = 2000;
41
42   this.identifier_expr = new RegExp('[^0-9a-z\-_]', 'gi');
43
44   // mimetypes supported by the browser (default settings)
45   this.mimetypes = new Array('text/plain', 'text/html', 'text/xml',
46     'image/jpeg', 'image/gif', 'image/png',
47     'application/x-javascript', 'application/pdf', 'application/x-shockwave-flash');
48
49   // default environment vars
50   this.env.keep_alive = 60;        // seconds
51   this.env.request_timeout = 180;  // seconds
52   this.env.draft_autosave = 0;     // seconds
53   this.env.comm_path = './';
54   this.env.blankpage = 'program/blank.gif';
55
56   // set jQuery ajax options
57   $.ajaxSetup({
58     cache:false,
59     error:function(request, status, err){ ref.http_error(request, status, err); },
60     beforeSend:function(xmlhttp){ xmlhttp.setRequestHeader('X-Roundcube-Request', ref.env.request_token); }
61   });
62
63   // set environment variable(s)
64   this.set_env = function(p, value)
65   {
66     if (p != null && typeof(p) == 'object' && !value)
67       for (var n in p)
68         this.env[n] = p[n];
69     else
70       this.env[p] = value;
71   };
72
73   // add a localized label to the client environment
74   this.add_label = function(key, value)
75   {
76     this.labels[key] = value;
77   };
78
79   // add a button to the button list
80   this.register_button = function(command, id, type, act, sel, over)
81   {
82     if (!this.buttons[command])
83       this.buttons[command] = [];
84
85     var button_prop = {id:id, type:type};
86     if (act) button_prop.act = act;
87     if (sel) button_prop.sel = sel;
88     if (over) button_prop.over = over;
89
90     this.buttons[command].push(button_prop);
91   };
92
93   // register a specific gui object
94   this.gui_object = function(name, id)
95   {
96     this.gui_objects[name] = id;
97   };
98
99   // register a container object
100   this.gui_container = function(name, id)
101   {
102     this.gui_containers[name] = id;
103   };
104
105   // add a GUI element (html node) to a specified container
106   this.add_element = function(elm, container)
107   {
108     if (this.gui_containers[container] && this.gui_containers[container].jquery)
109       this.gui_containers[container].append(elm);
110   };
111
112   // register an external handler for a certain command
113   this.register_command = function(command, callback, enable)
114   {
115     this.command_handlers[command] = callback;
116
117     if (enable)
118       this.enable_command(command, true);
119   };
120
121   // execute the given script on load
122   this.add_onload = function(f)
123   {
124     this.onloads.push(f);
125   };
126
127   // initialize webmail client
128   this.init = function()
129   {
130     var p = this;
131     this.task = this.env.task;
132
133     // check browser
134     if (!bw.dom || !bw.xmlhttp_test()) {
135       this.goto_url('error', '_code=0x199');
136       return;
137     }
138
139     // find all registered gui containers
140     for (var n in this.gui_containers)
141       this.gui_containers[n] = $('#'+this.gui_containers[n]);
142
143     // find all registered gui objects
144     for (var n in this.gui_objects)
145       this.gui_objects[n] = rcube_find_object(this.gui_objects[n]);
146
147     // init registered buttons
148     this.init_buttons();
149
150     // tell parent window that this frame is loaded
151     if (this.is_framed()) {
152       parent.rcmail.set_busy(false, null, parent.rcmail.env.frame_lock);
153       parent.rcmail.env.frame_lock = null;
154     }
155
156     // enable general commands
157     this.enable_command('logout', 'mail', 'addressbook', 'settings', true);
158
159     if (this.env.permaurl)
160       this.enable_command('permaurl', true);
161
162     switch (this.task) {
163
164       case 'mail':
165         // enable mail commands
166         this.enable_command('list', 'checkmail', 'compose', 'add-contact', 'search', 'reset-search', 'collapse-folder', true);
167
168         if (this.gui_objects.messagelist) {
169
170           this.message_list = new rcube_list_widget(this.gui_objects.messagelist, {
171             multiselect:true, multiexpand:true, draggable:true, keyboard:true,
172             column_movable:this.env.col_movable, dblclick_time:this.dblclick_time
173             });
174           this.message_list.row_init = function(o){ p.init_message_row(o); };
175           this.message_list.addEventListener('dblclick', function(o){ p.msglist_dbl_click(o); });
176           this.message_list.addEventListener('click', function(o){ p.msglist_click(o); });
177           this.message_list.addEventListener('keypress', function(o){ p.msglist_keypress(o); });
178           this.message_list.addEventListener('select', function(o){ p.msglist_select(o); });
179           this.message_list.addEventListener('dragstart', function(o){ p.drag_start(o); });
180           this.message_list.addEventListener('dragmove', function(e){ p.drag_move(e); });
181           this.message_list.addEventListener('dragend', function(e){ p.drag_end(e); });
182           this.message_list.addEventListener('expandcollapse', function(e){ p.msglist_expand(e); });
183           this.message_list.addEventListener('column_replace', function(e){ p.msglist_set_coltypes(e); });
184
185           document.onmouseup = function(e){ return p.doc_mouse_up(e); };
186           this.gui_objects.messagelist.parentNode.onmousedown = function(e){ return p.click_on_list(e); };
187
188           this.message_list.init();
189           this.enable_command('toggle_status', 'toggle_flag', 'menu-open', 'menu-save', true);
190
191           // load messages
192           this.command('list');
193         }
194
195         if (this.gui_objects.qsearchbox) {
196           if (this.env.search_text != null) {
197             this.gui_objects.qsearchbox.value = this.env.search_text;
198           }
199           $(this.gui_objects.qsearchbox).focusin(function() { rcmail.message_list.blur(); });
200         }
201
202         if (this.env.trash_mailbox && this.env.mailbox != this.env.trash_mailbox)
203           this.set_alttext('delete', 'movemessagetotrash');
204
205         this.env.message_commands = ['show', 'reply', 'reply-all', 'reply-list', 'forward',
206           'moveto', 'copy', 'delete', 'open', 'mark', 'edit', 'viewsource', 'download',
207           'print', 'load-attachment', 'load-headers'];
208
209         if (this.env.action=='show' || this.env.action=='preview') {
210           this.enable_command(this.env.message_commands, this.env.uid);
211           this.enable_command('reply-list', this.env.list_post);
212
213           if (this.env.action == 'show') {
214             this.http_request('pagenav', '_uid='+this.env.uid+'&_mbox='+urlencode(this.env.mailbox),
215               this.display_message('', 'loading'));
216           }
217
218           if (this.env.blockedobjects) {
219             if (this.gui_objects.remoteobjectsmsg)
220               this.gui_objects.remoteobjectsmsg.style.display = 'block';
221             this.enable_command('load-images', 'always-load', true);
222           }
223
224           // make preview/message frame visible
225           if (this.env.action == 'preview' && this.is_framed()) {
226             this.enable_command('compose', 'add-contact', false);
227             parent.rcmail.show_contentframe(true);
228           }
229         }
230         else if (this.env.action == 'compose') {
231           this.env.compose_commands = ['send-attachment', 'remove-attachment', 'send', 'toggle-editor'];
232
233           if (this.env.drafts_mailbox)
234             this.env.compose_commands.push('savedraft')
235
236           this.enable_command(this.env.compose_commands, 'identities', true);
237
238           if (this.env.spellcheck) {
239             this.env.spellcheck.spelling_state_observer = function(s){ ref.set_spellcheck_state(s); };
240             this.env.compose_commands.push('spellcheck')
241             this.set_spellcheck_state('ready');
242             if ($("input[name='_is_html']").val() == '1')
243               this.display_spellcheck_controls(false);
244           }
245
246           document.onmouseup = function(e){ return p.doc_mouse_up(e); };
247
248           // init message compose form
249           this.init_messageform();
250         }
251         // show printing dialog
252         else if (this.env.action == 'print' && this.env.uid)
253           window.print();
254
255         // get unread count for each mailbox
256         if (this.gui_objects.mailboxlist) {
257           this.env.unread_counts = {};
258           this.gui_objects.folderlist = this.gui_objects.mailboxlist;
259           this.http_request('getunread', '');
260         }
261
262         // ask user to send MDN
263         if (this.env.mdn_request && this.env.uid) {
264           var mdnurl = '_uid='+this.env.uid+'&_mbox='+urlencode(this.env.mailbox);
265           if (confirm(this.get_label('mdnrequest')))
266             this.http_post('sendmdn', mdnurl);
267           else
268             this.http_post('mark', mdnurl+'&_flag=mdnsent');
269         }
270
271         break;
272
273
274       case 'addressbook':
275         if (this.gui_objects.folderlist)
276           this.env.contactfolders = $.extend($.extend({}, this.env.address_sources), this.env.contactgroups);
277
278         if (this.gui_objects.contactslist) {
279
280           this.contact_list = new rcube_list_widget(this.gui_objects.contactslist,
281             {multiselect:true, draggable:this.gui_objects.folderlist?true:false, keyboard:true});
282           this.contact_list.row_init = function(row){ p.triggerEvent('insertrow', { cid:row.uid, row:row }); };
283           this.contact_list.addEventListener('keypress', function(o){ p.contactlist_keypress(o); });
284           this.contact_list.addEventListener('select', function(o){ p.contactlist_select(o); });
285           this.contact_list.addEventListener('dragstart', function(o){ p.drag_start(o); });
286           this.contact_list.addEventListener('dragmove', function(e){ p.drag_move(e); });
287           this.contact_list.addEventListener('dragend', function(e){ p.drag_end(e); });
288           this.contact_list.init();
289
290           if (this.env.cid)
291             this.contact_list.highlight_row(this.env.cid);
292
293           this.gui_objects.contactslist.parentNode.onmousedown = function(e){ return p.click_on_list(e); };
294           document.onmouseup = function(e){ return p.doc_mouse_up(e); };
295           if (this.gui_objects.qsearchbox) {
296             $(this.gui_objects.qsearchbox).focusin(function() { rcmail.contact_list.blur(); });
297           }
298         }
299
300         this.set_page_buttons();
301
302         if (this.env.address_sources && this.env.address_sources[this.env.source] && !this.env.address_sources[this.env.source].readonly) {
303           this.enable_command('add', 'import', true);
304           this.enable_command('group-create', this.env.address_sources[this.env.source].groups);
305         }
306
307         if (this.env.cid) {
308           this.enable_command('show', 'edit', true);
309           // register handlers for group assignment via checkboxes
310           if (this.gui_objects.editform) {
311             $('input.groupmember').change(function(){
312               var cmd = this.checked ? 'group-addmembers' : 'group-delmembers';
313               ref.http_post(cmd, '_cid='+urlencode(ref.env.cid)
314                 + '&_source='+urlencode(ref.env.source)
315                 + '&_gid='+urlencode(this.value));
316             });
317           }
318         }
319
320         if ((this.env.action=='add' || this.env.action=='edit') && this.gui_objects.editform) {
321           this.enable_command('save', true);
322           $("input[type='text']").first().select();
323         }
324         else if (this.gui_objects.qsearchbox) {
325           this.enable_command('search', 'reset-search', 'moveto', true);
326           $(this.gui_objects.qsearchbox).select();
327         }
328
329         if (this.contact_list && this.contact_list.rowcount > 0)
330           this.enable_command('export', true);
331
332         this.enable_command('list', 'listgroup', true);
333         break;
334
335
336       case 'settings':
337         this.enable_command('preferences', 'identities', 'save', 'folders', true);
338
339         if (this.env.action=='identities') {
340           this.enable_command('add', this.env.identities_level < 2);
341         }
342         else if (this.env.action=='edit-identity' || this.env.action=='add-identity') {
343           this.enable_command('add', this.env.identities_level < 2);
344           this.enable_command('save', 'delete', 'edit', 'toggle-editor', true);
345         }
346         else if (this.env.action=='folders') {
347           this.enable_command('subscribe', 'unsubscribe', 'create-folder', 'rename-folder', true);
348         }
349         else if (this.env.action == 'edit-folder' && this.gui_objects.editform) {
350           this.enable_command('save', 'folder-size', true);
351           parent.rcmail.env.messagecount = this.env.messagecount;
352           parent.rcmail.enable_command('purge', this.env.messagecount);
353           $("input[type='text']").first().select();
354         }
355
356         if (this.gui_objects.identitieslist) {
357           this.identity_list = new rcube_list_widget(this.gui_objects.identitieslist, {multiselect:false, draggable:false, keyboard:false});
358           this.identity_list.addEventListener('select', function(o){ p.identity_select(o); });
359           this.identity_list.init();
360           this.identity_list.focus();
361
362           if (this.env.iid)
363             this.identity_list.highlight_row(this.env.iid);
364         }
365         else if (this.gui_objects.sectionslist) {
366           this.sections_list = new rcube_list_widget(this.gui_objects.sectionslist, {multiselect:false, draggable:false, keyboard:false});
367           this.sections_list.addEventListener('select', function(o){ p.section_select(o); });
368           this.sections_list.init();
369           this.sections_list.focus();
370         }
371         else if (this.gui_objects.subscriptionlist)
372           this.init_subscription_list();
373
374         break;
375
376       case 'login':
377         var input_user = $('#rcmloginuser');
378         input_user.bind('keyup', function(e){ return rcmail.login_user_keyup(e); });
379
380         if (input_user.val() == '')
381           input_user.focus();
382         else
383           $('#rcmloginpwd').focus();
384
385         // detect client timezone
386         $('#rcmlogintz').val(new Date().getTimezoneOffset() / -60);
387
388         // display 'loading' message on form submit, lock submit button
389         $('form').submit(function () {
390           $('input[type=submit]', this).attr('disabled', true);
391           rcmail.display_message('', 'loading');
392         });
393
394         this.enable_command('login', true);
395         break;
396
397       default:
398         break;
399       }
400
401     // flag object as complete
402     this.loaded = true;
403
404     // show message
405     if (this.pending_message)
406       this.display_message(this.pending_message[0], this.pending_message[1]);
407
408     // map implicit containers
409     if (this.gui_objects.folderlist)
410       this.gui_containers.foldertray = $(this.gui_objects.folderlist);
411
412     // trigger init event hook
413     this.triggerEvent('init', { task:this.task, action:this.env.action });
414
415     // execute all foreign onload scripts
416     // @deprecated
417     for (var i in this.onloads) {
418       if (typeof(this.onloads[i]) == 'string')
419         eval(this.onloads[i]);
420       else if (typeof(this.onloads[i]) == 'function')
421         this.onloads[i]();
422       }
423
424     // start keep-alive interval
425     this.start_keepalive();
426   };
427
428
429   /*********************************************************/
430   /*********       client command interface        *********/
431   /*********************************************************/
432
433   // execute a specific command on the web client
434   this.command = function(command, props, obj)
435   {
436     if (obj && obj.blur)
437       obj.blur();
438
439     if (this.busy)
440       return false;
441
442     // command not supported or allowed
443     if (!this.commands[command]) {
444       // pass command to parent window
445       if (this.is_framed())
446         parent.rcmail.command(command, props);
447
448       return false;
449     }
450
451     // check input before leaving compose step
452     if (this.task=='mail' && this.env.action=='compose' && $.inArray(command, this.env.compose_commands)<0) {
453       if (this.cmp_hash != this.compose_field_hash() && !confirm(this.get_label('notsentwarning')))
454         return false;
455     }
456
457     // process external commands
458     if (typeof this.command_handlers[command] == 'function') {
459       var ret = this.command_handlers[command](props, obj);
460       return ret !== null ? ret : (obj ? false : true);
461     }
462     else if (typeof this.command_handlers[command] == 'string') {
463       var ret = window[this.command_handlers[command]](props, obj);
464       return ret !== null ? ret : (obj ? false : true);
465     }
466
467     // trigger plugin hooks
468     this.triggerEvent('actionbefore', {props:props, action:command});
469     var event_ret = this.triggerEvent('before'+command, props);
470     if (typeof event_ret != 'undefined') {
471       // abort if one the handlers returned false
472       if (event_ret === false)
473         return false;
474       else
475         props = event_ret;
476     }
477
478     // process internal command
479     switch (command) {
480
481       case 'login':
482         if (this.gui_objects.loginform)
483           this.gui_objects.loginform.submit();
484         break;
485
486       // commands to switch task
487       case 'mail':
488       case 'addressbook':
489       case 'settings':
490       case 'logout':
491         this.switch_task(command);
492         break;
493
494       case 'permaurl':
495         if (obj && obj.href && obj.target)
496           return true;
497         else if (this.env.permaurl)
498           parent.location.href = this.env.permaurl;
499         break;
500
501       case 'menu-open':
502       case 'menu-save':
503         this.triggerEvent(command, {props:props});
504         return false;
505
506       case 'open':
507         var uid;
508         if (uid = this.get_single_uid()) {
509           obj.href = '?_task='+this.env.task+'&_action=show&_mbox='+urlencode(this.env.mailbox)+'&_uid='+uid;
510           return true;
511         }
512         break;
513
514       case 'list':
515         if (this.task=='mail') {
516           if (!this.env.search_request || (props && props != this.env.mailbox))
517             this.reset_qsearch();
518
519           this.list_mailbox(props);
520
521           if (this.env.trash_mailbox)
522             this.set_alttext('delete', this.env.mailbox != this.env.trash_mailbox ? 'movemessagetotrash' : 'deletemessage');
523         }
524         else if (this.task=='addressbook') {
525           if (!this.env.search_request || (props != this.env.source))
526             this.reset_qsearch();
527
528           this.list_contacts(props);
529           this.enable_command('add', 'import', (this.env.address_sources && !this.env.address_sources[this.env.source].readonly));
530         }
531         break;
532
533       case 'load-headers':
534         this.load_headers(obj);
535         break;
536
537       case 'sort':
538         var sort_order, sort_col = props;
539
540         if (this.env.sort_col==sort_col)
541           sort_order = this.env.sort_order=='ASC' ? 'DESC' : 'ASC';
542         else
543           sort_order = 'ASC';
544
545         // set table header and update env
546         this.set_list_sorting(sort_col, sort_order);
547
548         // reload message list
549         this.list_mailbox('', '', sort_col+'_'+sort_order);
550         break;
551
552       case 'nextpage':
553         this.list_page('next');
554         break;
555
556       case 'lastpage':
557         this.list_page('last');
558         break;
559
560       case 'previouspage':
561         this.list_page('prev');
562         break;
563
564       case 'firstpage':
565         this.list_page('first');
566         break;
567
568       case 'expunge':
569         if (this.env.messagecount)
570           this.expunge_mailbox(this.env.mailbox);
571         break;
572
573       case 'purge':
574       case 'empty-mailbox':
575         if (this.env.messagecount)
576           this.purge_mailbox(this.env.mailbox);
577         break;
578
579       // common commands used in multiple tasks
580       case 'show':
581         if (this.task=='mail') {
582           var uid = this.get_single_uid();
583           if (uid && (!this.env.uid || uid != this.env.uid)) {
584             if (this.env.mailbox == this.env.drafts_mailbox)
585               this.goto_url('compose', '_draft_uid='+uid+'&_mbox='+urlencode(this.env.mailbox), true);
586             else
587               this.show_message(uid);
588           }
589         }
590         else if (this.task=='addressbook') {
591           var cid = props ? props : this.get_single_cid();
592           if (cid && !(this.env.action=='show' && cid==this.env.cid))
593             this.load_contact(cid, 'show');
594         }
595         break;
596
597       case 'add':
598         if (this.task=='addressbook')
599           this.load_contact(0, 'add');
600         else if (this.task=='settings') {
601           this.identity_list.clear_selection();
602           this.load_identity(0, 'add-identity');
603         }
604         break;
605
606       case 'edit':
607         var cid;
608         if (this.task=='addressbook' && (cid = this.get_single_cid()))
609           this.load_contact(cid, 'edit');
610         else if (this.task=='settings' && props)
611           this.load_identity(props, 'edit-identity');
612         else if (this.task=='mail' && (cid = this.get_single_uid())) {
613           var url = (this.env.mailbox == this.env.drafts_mailbox) ? '_draft_uid=' : '_uid=';
614           this.goto_url('compose', url+cid+'&_mbox='+urlencode(this.env.mailbox), true);
615         }
616         break;
617
618       case 'save':
619         if (this.gui_objects.editform) {
620           var input_pagesize = $("input[name='_pagesize']");
621           var input_name  = $("input[name='_name']");
622           var input_email = $("input[name='_email']");
623
624           // user prefs
625           if (input_pagesize.length && isNaN(parseInt(input_pagesize.val()))) {
626             alert(this.get_label('nopagesizewarning'));
627             input_pagesize.focus();
628             break;
629           }
630           // contacts/identities
631           else {
632             if (input_name.length && input_name.val() == '') {
633               alert(this.get_label('nonamewarning'));
634               input_name.focus();
635               break;
636             }
637             else if (input_email.length && !rcube_check_email(input_email.val())) {
638               alert(this.get_label('noemailwarning'));
639               input_email.focus();
640               break;
641             }
642           }
643
644           this.gui_objects.editform.submit();
645         }
646         break;
647
648       case 'delete':
649         // mail task
650         if (this.task == 'mail')
651           this.delete_messages();
652         // addressbook task
653         else if (this.task == 'addressbook')
654           this.delete_contacts();
655         // user settings task
656         else if (this.task == 'settings')
657           this.delete_identity();
658         break;
659
660       // mail task commands
661       case 'move':
662       case 'moveto':
663         if (this.task == 'mail')
664           this.move_messages(props);
665         else if (this.task == 'addressbook' && this.drag_active)
666           this.copy_contact(null, props);
667         break;
668
669       case 'copy':
670         if (this.task == 'mail')
671           this.copy_messages(props);
672         break;
673
674       case 'mark':
675         if (props)
676           this.mark_message(props);
677         break;
678
679       case 'toggle_status':
680         if (props && !props._row)
681           break;
682
683         var uid, flag = 'read';
684
685         if (props._row.uid) {
686           uid = props._row.uid;
687
688           // toggle read/unread
689           if (this.message_list.rows[uid].deleted) {
690             flag = 'undelete';
691           }
692           else if (!this.message_list.rows[uid].unread)
693             flag = 'unread';
694         }
695
696         this.mark_message(flag, uid);
697         break;
698
699       case 'toggle_flag':
700         if (props && !props._row)
701           break;
702
703         var uid, flag = 'flagged';
704
705         if (props._row.uid) {
706           uid = props._row.uid;
707           // toggle flagged/unflagged
708           if (this.message_list.rows[uid].flagged)
709             flag = 'unflagged';
710           }
711         this.mark_message(flag, uid);
712         break;
713
714       case 'always-load':
715         if (this.env.uid && this.env.sender) {
716           this.add_contact(urlencode(this.env.sender));
717           window.setTimeout(function(){ ref.command('load-images'); }, 300);
718           break;
719         }
720
721       case 'load-images':
722         if (this.env.uid)
723           this.show_message(this.env.uid, true, this.env.action=='preview');
724         break;
725
726       case 'load-attachment':
727         var qstring = '_mbox='+urlencode(this.env.mailbox)+'&_uid='+this.env.uid+'&_part='+props.part;
728
729         // open attachment in frame if it's of a supported mimetype
730         if (this.env.uid && props.mimetype && $.inArray(props.mimetype, this.mimetypes)>=0) {
731           if (props.mimetype == 'text/html')
732             qstring += '&_safe=1';
733           this.attachment_win = window.open(this.env.comm_path+'&_action=get&'+qstring+'&_frame=1', 'rcubemailattachment');
734           if (this.attachment_win) {
735             window.setTimeout(function(){ ref.attachment_win.focus(); }, 10);
736             break;
737           }
738         }
739
740         this.goto_url('get', qstring+'&_download=1', false);
741         break;
742
743       case 'select-all':
744         this.select_all_mode = props ? false : true;
745         this.dummy_select = true; // prevent msg opening if there's only one msg on the list
746         if (props == 'invert')
747           this.message_list.invert_selection();
748         else
749           this.message_list.select_all(props == 'page' ? '' : props);
750         this.dummy_select = null;
751         break;
752
753       case 'select-none':
754         this.select_all_mode = false;
755         this.message_list.clear_selection();
756         break;
757
758       case 'expand-all':
759         this.env.autoexpand_threads = 1;
760         this.message_list.expand_all();
761         break;
762
763       case 'expand-unread':
764         this.env.autoexpand_threads = 2;
765         this.message_list.collapse_all();
766         this.expand_unread();
767         break;
768
769       case 'collapse-all':
770         this.env.autoexpand_threads = 0;
771         this.message_list.collapse_all();
772         break;
773
774       case 'nextmessage':
775         if (this.env.next_uid)
776           this.show_message(this.env.next_uid, false, this.env.action=='preview');
777         break;
778
779       case 'lastmessage':
780         if (this.env.last_uid)
781           this.show_message(this.env.last_uid);
782         break;
783
784       case 'previousmessage':
785         if (this.env.prev_uid)
786           this.show_message(this.env.prev_uid, false, this.env.action=='preview');
787         break;
788
789       case 'firstmessage':
790         if (this.env.first_uid)
791           this.show_message(this.env.first_uid);
792         break;
793
794       case 'checkmail':
795         this.check_for_recent(true);
796         break;
797
798       case 'compose':
799         var url = this.env.comm_path+'&_action=compose';
800
801         if (this.task=='mail') {
802           url += '&_mbox='+urlencode(this.env.mailbox);
803
804           if (this.env.mailbox==this.env.drafts_mailbox) {
805             var uid;
806             if (uid = this.get_single_uid())
807               url += '&_draft_uid='+uid;
808           }
809           else if (props)
810              url += '&_to='+urlencode(props);
811         }
812         // modify url if we're in addressbook
813         else if (this.task=='addressbook') {
814           // switch to mail compose step directly
815           if (props && props.indexOf('@') > 0) {
816             url = this.get_task_url('mail', url);
817             this.redirect(url + '&_to='+urlencode(props));
818             break;
819           }
820
821           // use contact_id passed as command parameter
822           var a_cids = [];
823           if (props)
824             a_cids.push(props);
825           // get selected contacts
826           else if (this.contact_list) {
827             var selection = this.contact_list.get_selection();
828             for (var n=0; n<selection.length; n++)
829               a_cids.push(selection[n]);
830           }
831
832           if (a_cids.length)
833             this.http_request('mailto', '_cid='+urlencode(a_cids.join(','))+'&_source='+urlencode(this.env.source), true);
834
835           break;
836         }
837
838         // don't know if this is necessary...
839         url = url.replace(/&_framed=1/, '');
840
841         this.redirect(url);
842         break;
843
844       case 'spellcheck':
845         if (window.tinyMCE && tinyMCE.get(this.env.composebody)) {
846           tinyMCE.execCommand('mceSpellCheck', true);
847         }
848         else if (this.env.spellcheck && this.env.spellcheck.spellCheck && this.spellcheck_ready) {
849           this.env.spellcheck.spellCheck();
850           this.set_spellcheck_state('checking');
851         }
852         break;
853
854       case 'savedraft':
855         // Reset the auto-save timer
856         self.clearTimeout(this.save_timer);
857
858         if (!this.gui_objects.messageform)
859           break;
860
861         // if saving Drafts is disabled in main.inc.php
862         // or if compose form did not change
863         if (!this.env.drafts_mailbox || this.cmp_hash == this.compose_field_hash())
864           break;
865
866         var form = this.gui_objects.messageform,
867           msgid = this.set_busy(true, 'savingmessage');
868
869         form.target = "savetarget";
870         form._draft.value = '1';
871         form.action = this.add_url(form.action, '_unlock', msgid);
872         form.submit();
873         break;
874
875       case 'send':
876         if (!this.gui_objects.messageform)
877           break;
878
879         if (!this.check_compose_input())
880           break;
881
882         // Reset the auto-save timer
883         self.clearTimeout(this.save_timer);
884
885         // all checks passed, send message
886         var form = this.gui_objects.messageform,
887           msgid = this.set_busy(true, 'sendingmessage');
888
889         form.target = 'savetarget';
890         form._draft.value = '';
891         form.action = this.add_url(form.action, '_unlock', msgid);
892         form.submit();
893
894         // clear timeout (sending could take longer)
895         clearTimeout(this.request_timer);
896         break;
897
898       case 'send-attachment':
899         // Reset the auto-save timer
900         self.clearTimeout(this.save_timer);
901
902         this.upload_file(props)
903         break;
904
905       case 'insert-sig':
906         this.change_identity($("[name='_from']")[0], true);
907         break;
908
909       case 'reply-all':
910       case 'reply-list':
911       case 'reply':
912         var uid;
913         if (uid = this.get_single_uid()) {
914           var url = '_reply_uid='+uid+'&_mbox='+urlencode(this.env.mailbox);
915           if (command == 'reply-all')
916             // do reply-list, when list is detected and popup menu wasn't used 
917             url += '&_all=' + (!props && this.commands['reply-list'] ? 'list' : 'all');
918           else if (command == 'reply-list')
919             url += '&_all=list';
920
921           this.goto_url('compose', url, true);
922         }
923         break;
924
925       case 'forward':
926         var uid;
927         if (uid = this.get_single_uid())
928           this.goto_url('compose', '_forward_uid='+uid+'&_mbox='+urlencode(this.env.mailbox), true);
929         break;
930
931       case 'print':
932         var uid;
933         if (uid = this.get_single_uid()) {
934           ref.printwin = window.open(this.env.comm_path+'&_action=print&_uid='+uid+'&_mbox='+urlencode(this.env.mailbox)+(this.env.safemode ? '&_safe=1' : ''));
935           if (this.printwin) {
936             window.setTimeout(function(){ ref.printwin.focus(); }, 20);
937             if (this.env.action != 'show')
938               this.mark_message('read', uid);
939           }
940         }
941         break;
942
943       case 'viewsource':
944         var uid;
945         if (uid = this.get_single_uid()) {
946           ref.sourcewin = window.open(this.env.comm_path+'&_action=viewsource&_uid='+uid+'&_mbox='+urlencode(this.env.mailbox));
947           if (this.sourcewin)
948             window.setTimeout(function(){ ref.sourcewin.focus(); }, 20);
949           }
950         break;
951
952       case 'download':
953         var uid;
954         if (uid = this.get_single_uid())
955           this.goto_url('viewsource', '&_uid='+uid+'&_mbox='+urlencode(this.env.mailbox)+'&_save=1');
956         break;
957
958       // quicksearch
959       case 'search':
960         if (!props && this.gui_objects.qsearchbox)
961           props = this.gui_objects.qsearchbox.value;
962         if (props) {
963           this.qsearch(props);
964           break;
965         }
966
967       // reset quicksearch
968       case 'reset-search':
969         var s = this.env.search_request;
970         this.reset_qsearch();
971
972         if (s && this.env.mailbox)
973           this.list_mailbox(this.env.mailbox);
974         else if (s && this.task == 'addressbook')
975           this.list_contacts(this.env.source, this.env.group);
976         break;
977
978       case 'listgroup':
979         this.list_contacts(props.source, props.id);
980         break;
981
982       case 'import':
983         if (this.env.action == 'import' && this.gui_objects.importform) {
984           var file = document.getElementById('rcmimportfile');
985           if (file && !file.value) {
986             alert(this.get_label('selectimportfile'));
987             break;
988           }
989           this.gui_objects.importform.submit();
990           this.set_busy(true, 'importwait');
991           this.lock_form(this.gui_objects.importform, true);
992         }
993         else
994           this.goto_url('import', (this.env.source ? '_target='+urlencode(this.env.source)+'&' : ''));
995         break;
996
997       case 'export':
998         if (this.contact_list.rowcount > 0) {
999           var add_url = (this.env.source ? '_source='+urlencode(this.env.source)+'&' : '');
1000           if (this.env.search_request)
1001             add_url += '_search='+this.env.search_request;
1002
1003           this.goto_url('export', add_url);
1004         }
1005         break;
1006
1007       // user settings commands
1008       case 'preferences':
1009       case 'identities':
1010       case 'folders':
1011         this.goto_url('settings/' + command);
1012         break;
1013
1014       // unified command call (command name == function name)
1015       default:
1016         var func = command.replace(/-/g, '_');
1017         if (this[func] && typeof this[func] == 'function')
1018           this[func](props);
1019         break;
1020     }
1021
1022     this.triggerEvent('after'+command, props);
1023     this.triggerEvent('actionafter', {props:props, action:command});
1024
1025     return obj ? false : true;
1026   };
1027
1028   // set command(s) enabled or disabled
1029   this.enable_command = function()
1030   {
1031     var args = Array.prototype.slice.call(arguments),
1032       enable = args.pop(), cmd;
1033
1034     for (var n=0; n<args.length; n++) {
1035       cmd = args[n];
1036       // argument of type array
1037       if (typeof cmd === 'string') {
1038         this.commands[cmd] = enable;
1039         this.set_button(cmd, (enable ? 'act' : 'pas'));
1040       }
1041       // push array elements into commands array
1042       else {
1043         for (var i in cmd)
1044           args.push(cmd[i]);
1045       }
1046     }
1047   };
1048
1049   // lock/unlock interface
1050   this.set_busy = function(a, message, id)
1051   {
1052     if (a && message) {
1053       var msg = this.get_label(message);
1054       if (msg == message)
1055         msg = 'Loading...';
1056
1057       id = this.display_message(msg, 'loading');
1058     }
1059     else if (!a && id) {
1060       this.hide_message(id);
1061     }
1062
1063     this.busy = a;
1064     //document.body.style.cursor = a ? 'wait' : 'default';
1065
1066     if (this.gui_objects.editform)
1067       this.lock_form(this.gui_objects.editform, a);
1068
1069     // clear pending timer
1070     if (this.request_timer)
1071       clearTimeout(this.request_timer);
1072
1073     // set timer for requests
1074     if (a && this.env.request_timeout)
1075       this.request_timer = window.setTimeout(function(){ ref.request_timed_out(); }, this.env.request_timeout * 1000);
1076
1077     return id;
1078   };
1079
1080   // return a localized string
1081   this.get_label = function(name, domain)
1082   {
1083     if (domain && this.labels[domain+'.'+name])
1084       return this.labels[domain+'.'+name];
1085     else if (this.labels[name])
1086       return this.labels[name];
1087     else
1088       return name;
1089   };
1090
1091   // alias for convenience reasons
1092   this.gettext = this.get_label;
1093
1094   // switch to another application task
1095   this.switch_task = function(task)
1096   {
1097     if (this.task===task && task!='mail')
1098       return;
1099
1100     var url = this.get_task_url(task);
1101     if (task=='mail')
1102       url += '&_mbox=INBOX';
1103
1104     this.redirect(url);
1105   };
1106
1107   this.get_task_url = function(task, url)
1108   {
1109     if (!url)
1110       url = this.env.comm_path;
1111
1112     return url.replace(/_task=[a-z]+/, '_task='+task);
1113   };
1114
1115   // called when a request timed out
1116   this.request_timed_out = function()
1117   {
1118     this.set_busy(false);
1119     this.display_message('Request timed out!', 'error');
1120   };
1121
1122   this.reload = function(delay)
1123   {
1124     if (this.is_framed())
1125       parent.rcmail.reload(delay);
1126     else if (delay)
1127       window.setTimeout(function(){ rcmail.reload(); }, delay);
1128     else if (window.location)
1129       location.href = this.env.comm_path + (this.env.action ? '&_action='+this.env.action : '');
1130   };
1131
1132   // Add variable to GET string, replace old value if exists
1133   this.add_url = function(url, name, value)
1134   {
1135     value = urlencode(value);
1136
1137     if (/(\?.*)$/.test(url)) {
1138       var urldata = RegExp.$1,
1139         datax = RegExp('((\\?|&)'+RegExp.escape(name)+'=[^&]*)');
1140
1141       if (datax.test(urldata)) {
1142         urldata = urldata.replace(datax, RegExp.$2 + name + '=' + value);
1143       }
1144       else
1145         urldata += '&' + name + '=' + value
1146
1147       return url.replace(/(\?.*)$/, urldata);
1148     }
1149     else
1150       return url + '?' + name + '=' + value;
1151   };
1152
1153   this.is_framed = function()
1154   {
1155     return (this.env.framed && parent.rcmail);
1156   };
1157
1158
1159   /*********************************************************/
1160   /*********        event handling methods         *********/
1161   /*********************************************************/
1162
1163   this.drag_menu = function(e, target)
1164   {
1165     var modkey = rcube_event.get_modifier(e),
1166       menu = $('#'+this.gui_objects.message_dragmenu);
1167
1168     if (menu && modkey == SHIFT_KEY && this.commands['copy']) {
1169       var pos = rcube_event.get_mouse_pos(e);
1170       this.env.drag_target = target;
1171       menu.css({top: (pos.y-10)+'px', left: (pos.x-10)+'px'}).show();
1172       return true;
1173     }
1174
1175     return false;
1176   };
1177
1178   this.drag_menu_action = function(action)
1179   {
1180     var menu = $('#'+this.gui_objects.message_dragmenu);
1181     if (menu) {
1182       menu.hide();
1183     }
1184     this.command(action, this.env.drag_target);
1185     this.env.drag_target = null;
1186   };
1187
1188   this.drag_start = function(list)
1189   {
1190     var model = this.task == 'mail' ? this.env.mailboxes : this.env.contactfolders;
1191
1192     this.drag_active = true;
1193
1194     if (this.preview_timer)
1195       clearTimeout(this.preview_timer);
1196     if (this.preview_read_timer)
1197       clearTimeout(this.preview_read_timer);
1198
1199     // save folderlist and folders location/sizes for droptarget calculation in drag_move()
1200     if (this.gui_objects.folderlist && model) {
1201       this.initialBodyScrollTop = bw.ie ? 0 : window.pageYOffset;
1202       this.initialListScrollTop = this.gui_objects.folderlist.parentNode.scrollTop;
1203
1204       var li, pos, list, height;
1205       list = $(this.gui_objects.folderlist);
1206       pos = list.offset();
1207       this.env.folderlist_coords = { x1:pos.left, y1:pos.top, x2:pos.left + list.width(), y2:pos.top + list.height() };
1208
1209       this.env.folder_coords = [];
1210       for (var k in model) {
1211         if (li = this.get_folder_li(k)) {
1212           // only visible folders
1213           if (height = li.firstChild.offsetHeight) {
1214             pos = $(li.firstChild).offset();
1215             this.env.folder_coords[k] = { x1:pos.left, y1:pos.top,
1216               x2:pos.left + li.firstChild.offsetWidth, y2:pos.top + height, on:0 };
1217           }
1218         }
1219       }
1220     }
1221   };
1222
1223   this.drag_end = function(e)
1224   {
1225     this.drag_active = false;
1226     this.env.last_folder_target = null;
1227
1228     if (this.folder_auto_timer) {
1229       window.clearTimeout(this.folder_auto_timer);
1230       this.folder_auto_timer = null;
1231       this.folder_auto_expand = null;
1232     }
1233
1234     // over the folders
1235     if (this.gui_objects.folderlist && this.env.folder_coords) {
1236       for (var k in this.env.folder_coords) {
1237         if (this.env.folder_coords[k].on)
1238           $(this.get_folder_li(k)).removeClass('droptarget');
1239       }
1240     }
1241   };
1242
1243   this.drag_move = function(e)
1244   {
1245     if (this.gui_objects.folderlist && this.env.folder_coords) {
1246       // offsets to compensate for scrolling while dragging a message
1247       var boffset = bw.ie ? -document.documentElement.scrollTop : this.initialBodyScrollTop;
1248       var moffset = this.initialListScrollTop-this.gui_objects.folderlist.parentNode.scrollTop;
1249       var toffset = -moffset-boffset;
1250       var li, div, pos, mouse, check, oldclass,
1251         layerclass = 'draglayernormal';
1252       
1253       if (this.contact_list && this.contact_list.draglayer)
1254         oldclass = this.contact_list.draglayer.attr('class');
1255
1256       mouse = rcube_event.get_mouse_pos(e);
1257       pos = this.env.folderlist_coords;
1258       mouse.y += toffset;
1259
1260       // if mouse pointer is outside of folderlist
1261       if (mouse.x < pos.x1 || mouse.x >= pos.x2 || mouse.y < pos.y1 || mouse.y >= pos.y2) {
1262         if (this.env.last_folder_target) {
1263           $(this.get_folder_li(this.env.last_folder_target)).removeClass('droptarget');
1264           this.env.folder_coords[this.env.last_folder_target].on = 0;
1265           this.env.last_folder_target = null;
1266         }
1267         if (layerclass != oldclass && this.contact_list && this.contact_list.draglayer)
1268           this.contact_list.draglayer.attr('class', layerclass);
1269         return;
1270       }
1271
1272       // over the folders
1273       for (var k in this.env.folder_coords) {
1274         pos = this.env.folder_coords[k];
1275         if (mouse.x >= pos.x1 && mouse.x < pos.x2 && mouse.y >= pos.y1 && mouse.y < pos.y2){
1276          if ((check = this.check_droptarget(k))) {
1277             li = this.get_folder_li(k);
1278             div = $(li.getElementsByTagName('div')[0]);
1279
1280             // if the folder is collapsed, expand it after 1sec and restart the drag & drop process.
1281             if (div.hasClass('collapsed')) {
1282               if (this.folder_auto_timer)
1283                 window.clearTimeout(this.folder_auto_timer);
1284
1285               this.folder_auto_expand = k;
1286               this.folder_auto_timer = window.setTimeout(function() {
1287                   rcmail.command('collapse-folder', rcmail.folder_auto_expand);
1288                   rcmail.drag_start(null);
1289                 }, 1000);
1290             } else if (this.folder_auto_timer) {
1291               window.clearTimeout(this.folder_auto_timer);
1292               this.folder_auto_timer = null;
1293               this.folder_auto_expand = null;
1294             }
1295
1296             $(li).addClass('droptarget');
1297             this.env.folder_coords[k].on = 1;
1298             this.env.last_folder_target = k;
1299             layerclass = 'draglayer' + (check > 1 ? 'copy' : 'normal');
1300           } else { // Clear target, otherwise drag end will trigger move into last valid droptarget
1301             this.env.last_folder_target = null;
1302           }
1303         }
1304         else if (pos.on) {
1305           $(this.get_folder_li(k)).removeClass('droptarget');
1306           this.env.folder_coords[k].on = 0;
1307         }
1308       }
1309
1310       if (layerclass != oldclass && this.contact_list && this.contact_list.draglayer)
1311         this.contact_list.draglayer.attr('class', layerclass);
1312     }
1313   };
1314
1315   this.collapse_folder = function(id)
1316   {
1317     var li = this.get_folder_li(id),
1318       div = $(li.getElementsByTagName('div')[0]);
1319
1320     if (!div || (!div.hasClass('collapsed') && !div.hasClass('expanded')))
1321       return;
1322
1323     var ul = $(li.getElementsByTagName('ul')[0]);
1324
1325     if (div.hasClass('collapsed')) {
1326       ul.show();
1327       div.removeClass('collapsed').addClass('expanded');
1328       var reg = new RegExp('&'+urlencode(id)+'&');
1329       this.set_env('collapsed_folders', this.env.collapsed_folders.replace(reg, ''));
1330     }
1331     else {
1332       ul.hide();
1333       div.removeClass('expanded').addClass('collapsed');
1334       this.set_env('collapsed_folders', this.env.collapsed_folders+'&'+urlencode(id)+'&');
1335
1336       // select parent folder if one of its childs is currently selected
1337       if (this.env.mailbox.indexOf(id + this.env.delimiter) == 0)
1338         this.command('list', id);
1339     }
1340
1341     // Work around a bug in IE6 and IE7, see #1485309
1342     if (bw.ie6 || bw.ie7) {
1343       var siblings = li.nextSibling ? li.nextSibling.getElementsByTagName('ul') : null;
1344       if (siblings && siblings.length && (li = siblings[0]) && li.style && li.style.display != 'none') {
1345         li.style.display = 'none';
1346         li.style.display = '';
1347       }
1348     }
1349
1350     this.http_post('save-pref', '_name=collapsed_folders&_value='+urlencode(this.env.collapsed_folders));
1351     this.set_unread_count_display(id, false);
1352   };
1353
1354   this.doc_mouse_up = function(e)
1355   {
1356     var model, list, li, id;
1357
1358     if (list = this.message_list) {
1359       if (!rcube_mouse_is_over(e, list.list.parentNode))
1360         list.blur();
1361       else
1362         list.focus();
1363       model = this.env.mailboxes;
1364     }
1365     else if (list = this.contact_list) {
1366       if (!rcube_mouse_is_over(e, list.list.parentNode))
1367         list.blur();
1368       else
1369         list.focus();
1370       model = this.env.contactfolders;
1371     }
1372     else if (this.ksearch_value) {
1373       this.ksearch_blur();
1374     }
1375
1376     // handle mouse release when dragging
1377     if (this.drag_active && model && this.env.last_folder_target) {
1378       var target = model[this.env.last_folder_target];
1379
1380       $(this.get_folder_li(this.env.last_folder_target)).removeClass('droptarget');
1381       this.env.last_folder_target = null;
1382       list.draglayer.hide();
1383
1384       if (!this.drag_menu(e, target))
1385         this.command('moveto', target);
1386     }
1387
1388     // reset 'pressed' buttons
1389     if (this.buttons_sel) {
1390       for (id in this.buttons_sel)
1391         if (typeof id != 'function')
1392           this.button_out(this.buttons_sel[id], id);
1393       this.buttons_sel = {};
1394     }
1395   };
1396
1397   this.click_on_list = function(e)
1398   {
1399     if (this.gui_objects.qsearchbox)
1400       this.gui_objects.qsearchbox.blur();
1401
1402     if (this.message_list)
1403       this.message_list.focus();
1404     else if (this.contact_list)
1405       this.contact_list.focus();
1406
1407     return true;
1408   };
1409
1410   this.msglist_select = function(list)
1411   {
1412     if (this.preview_timer)
1413       clearTimeout(this.preview_timer);
1414     if (this.preview_read_timer)
1415       clearTimeout(this.preview_read_timer);
1416
1417     var selected = list.get_single_selection() != null;
1418
1419     this.enable_command(this.env.message_commands, selected);
1420     if (selected) {
1421       // Hide certain command buttons when Drafts folder is selected
1422       if (this.env.mailbox == this.env.drafts_mailbox)
1423         this.enable_command('reply', 'reply-all', 'reply-list', 'forward', false);
1424       // Disable reply-list when List-Post header is not set
1425       else {
1426         var msg = this.env.messages[list.get_single_selection()];
1427         if (!msg.ml)
1428           this.enable_command('reply-list', false);
1429       }
1430     }
1431     // Multi-message commands
1432     this.enable_command('delete', 'moveto', 'copy', 'mark', (list.selection.length > 0 ? true : false));
1433
1434     // reset all-pages-selection
1435     if (selected || (list.selection.length && list.selection.length != list.rowcount))
1436       this.select_all_mode = false;
1437
1438     // start timer for message preview (wait for double click)
1439     if (selected && this.env.contentframe && !list.multi_selecting && !this.dummy_select)
1440       this.preview_timer = window.setTimeout(function(){ ref.msglist_get_preview(); }, 200);
1441     else if (this.env.contentframe)
1442       this.show_contentframe(false);
1443   };
1444
1445   // This allow as to re-select selected message and display it in preview frame
1446   this.msglist_click = function(list)
1447   {
1448     if (list.multi_selecting || !this.env.contentframe)
1449       return;
1450
1451     if (list.get_single_selection() && window.frames && window.frames[this.env.contentframe]) {
1452       if (window.frames[this.env.contentframe].location.href.indexOf(this.env.blankpage)>=0) {
1453         if (this.preview_timer)
1454           clearTimeout(this.preview_timer);
1455         if (this.preview_read_timer)
1456           clearTimeout(this.preview_read_timer);
1457         this.preview_timer = window.setTimeout(function(){ ref.msglist_get_preview(); }, 200);
1458       }
1459     }
1460   };
1461
1462   this.msglist_dbl_click = function(list)
1463   {
1464     if (this.preview_timer)
1465       clearTimeout(this.preview_timer);
1466
1467     if (this.preview_read_timer)
1468       clearTimeout(this.preview_read_timer);
1469
1470     var uid = list.get_single_selection();
1471     if (uid && this.env.mailbox == this.env.drafts_mailbox)
1472       this.goto_url('compose', '_draft_uid='+uid+'&_mbox='+urlencode(this.env.mailbox), true);
1473     else if (uid)
1474       this.show_message(uid, false, false);
1475   };
1476
1477   this.msglist_keypress = function(list)
1478   {
1479     if (list.key_pressed == list.ENTER_KEY)
1480       this.command('show');
1481     else if (list.key_pressed == list.DELETE_KEY)
1482       this.command('delete');
1483     else if (list.key_pressed == list.BACKSPACE_KEY)
1484       this.command('delete');
1485     else if (list.key_pressed == 33)
1486       this.command('previouspage');
1487     else if (list.key_pressed == 34)
1488       this.command('nextpage');
1489   };
1490
1491   this.msglist_get_preview = function()
1492   {
1493     var uid = this.get_single_uid();
1494     if (uid && this.env.contentframe && !this.drag_active)
1495       this.show_message(uid, false, true);
1496     else if (this.env.contentframe)
1497       this.show_contentframe(false);
1498   };
1499
1500   this.msglist_expand = function(row)
1501   {
1502     if (this.env.messages[row.uid])
1503       this.env.messages[row.uid].expanded = row.expanded;
1504   };
1505
1506   this.msglist_set_coltypes = function(list)
1507   {
1508     var i, found, name, cols = list.list.tHead.rows[0].cells;
1509
1510     this.env.coltypes = [];
1511
1512     for (i=0; i<cols.length; i++)
1513       if (cols[i].id && cols[i].id.match(/^rcm/)) {
1514         name = cols[i].id.replace(/^rcm/, '');
1515         this.env.coltypes.push(name == 'to' ? 'from' : name);
1516       }
1517
1518     if ((found = $.inArray('flag', this.env.coltypes)) >= 0)
1519       this.set_env('flagged_col', found);
1520
1521     if ((found = $.inArray('subject', this.env.coltypes)) >= 0)
1522       this.set_env('subject_col', found);
1523
1524     this.http_post('save-pref', { '_name':'list_cols', '_value':this.env.coltypes, '_session':'list_attrib/columns' });
1525   };
1526
1527   this.check_droptarget = function(id)
1528   {
1529     var allow = false, copy = false;
1530
1531     if (this.task == 'mail')
1532       allow = (this.env.mailboxes[id] && this.env.mailboxes[id].id != this.env.mailbox && !this.env.mailboxes[id].virtual);
1533     else if (this.task == 'settings')
1534       allow = (id != this.env.mailbox);
1535     else if (this.task == 'addressbook') {
1536       if (id != this.env.source && this.env.contactfolders[id]) {
1537         if (this.env.contactfolders[id].type == 'group') {
1538           var target_abook = this.env.contactfolders[id].source;
1539           allow = this.env.contactfolders[id].id != this.env.group && !this.env.contactfolders[target_abook].readonly;
1540           copy = target_abook != this.env.source;
1541         }
1542         else {
1543           allow = !this.env.contactfolders[id].readonly;
1544           copy = true;
1545         }
1546       }
1547     }
1548
1549     return allow ? (copy ? 2 : 1) : 0;
1550   };
1551
1552
1553   /*********************************************************/
1554   /*********     (message) list functionality      *********/
1555   /*********************************************************/
1556
1557   this.init_message_row = function(row)
1558   {
1559     var expando, self = this, uid = row.uid,
1560       status_icon = (this.env.status_col != null ? 'status' : 'msg') + 'icn' + row.uid;
1561
1562     if (uid && this.env.messages[uid])
1563       $.extend(row, this.env.messages[uid]);
1564
1565     // set eventhandler to status icon
1566     if (row.icon = document.getElementById(status_icon)) {
1567       row.icon._row = row.obj;
1568       row.icon.onmousedown = function(e) { self.command('toggle_status', this); rcube_event.cancel(e); };
1569     }
1570
1571     // save message icon position too
1572     if (this.env.status_col != null)
1573       row.msgicon = document.getElementById('msgicn'+row.uid);
1574     else
1575       row.msgicon = row.icon;
1576
1577     // set eventhandler to flag icon, if icon found
1578     if (this.env.flagged_col != null && (row.flagicon = document.getElementById('flagicn'+row.uid))) {
1579       row.flagicon._row = row.obj;
1580       row.flagicon.onmousedown = function(e) { self.command('toggle_flag', this); rcube_event.cancel(e); };
1581     }
1582
1583     if (!row.depth && row.has_children && (expando = document.getElementById('rcmexpando'+row.uid))) {
1584       row.expando = expando;
1585       expando.onmousedown = function(e) { return self.expand_message_row(e, uid); };
1586     }
1587
1588     this.triggerEvent('insertrow', { uid:uid, row:row });
1589   };
1590
1591   // create a table row in the message list
1592   this.add_message_row = function(uid, cols, flags, attop)
1593   {
1594     if (!this.gui_objects.messagelist || !this.message_list)
1595       return false;
1596
1597     if (!this.env.messages[uid])
1598       this.env.messages[uid] = {};
1599
1600     // merge flags over local message object
1601     $.extend(this.env.messages[uid], {
1602       deleted: flags.deleted?1:0,
1603       replied: flags.replied?1:0,
1604       unread: flags.unread?1:0,
1605       forwarded: flags.forwarded?1:0,
1606       flagged: flags.flagged?1:0,
1607       has_children: flags.has_children?1:0,
1608       depth: flags.depth?flags.depth:0,
1609       unread_children: flags.unread_children?flags.unread_children:0,
1610       parent_uid: flags.parent_uid?flags.parent_uid:0,
1611       selected: this.select_all_mode || this.message_list.in_selection(uid),
1612       ml: flags.ml?1:0,
1613       ctype: flags.ctype,
1614       // flags from plugins
1615       flags: flags.extra_flags
1616     });
1617
1618     var c, html, tree = expando = '',
1619       list = this.message_list,
1620       rows = list.rows,
1621       tbody = this.gui_objects.messagelist.tBodies[0],
1622       rowcount = tbody.rows.length,
1623       even = rowcount%2,
1624       message = this.env.messages[uid],
1625       css_class = 'message'
1626         + (even ? ' even' : ' odd')
1627         + (flags.unread ? ' unread' : '')
1628         + (flags.deleted ? ' deleted' : '')
1629         + (flags.flagged ? ' flagged' : '')
1630         + (flags.unread_children && !flags.unread && !this.env.autoexpand_threads ? ' unroot' : '')
1631         + (message.selected ? ' selected' : ''),
1632       // for performance use DOM instead of jQuery here
1633       row = document.createElement('tr'),
1634       col = document.createElement('td');
1635
1636     row.id = 'rcmrow'+uid;
1637     row.className = css_class;
1638
1639     // message status icons
1640     css_class = 'msgicon';
1641     if (this.env.status_col === null) {
1642       css_class += ' status';
1643       if (flags.deleted)
1644         css_class += ' deleted';
1645       else if (flags.unread)
1646         css_class += ' unread';
1647       else if (flags.unread_children > 0)
1648         css_class += ' unreadchildren';
1649     }
1650     if (flags.replied)
1651       css_class += ' replied';
1652     if (flags.forwarded)
1653       css_class += ' forwarded';
1654
1655     // update selection
1656     if (message.selected && !list.in_selection(uid))
1657       list.selection.push(uid);
1658
1659     // threads
1660     if (this.env.threading) {
1661       // This assumes that div width is hardcoded to 15px,
1662       var width = message.depth * 15;
1663       if (message.depth) {
1664         if ((rows[message.parent_uid] && rows[message.parent_uid].expanded === false)
1665           || ((this.env.autoexpand_threads == 0 || this.env.autoexpand_threads == 2) &&
1666             (!rows[message.parent_uid] || !rows[message.parent_uid].expanded))
1667         ) {
1668           row.style.display = 'none';
1669           message.expanded = false;
1670         }
1671         else
1672           message.expanded = true;
1673       }
1674       else if (message.has_children) {
1675         if (typeof(message.expanded) == 'undefined' && (this.env.autoexpand_threads == 1 || (this.env.autoexpand_threads == 2 && message.unread_children))) {
1676           message.expanded = true;
1677         }
1678       }
1679
1680       if (width)
1681         tree += '<span id="rcmtab' + uid + '" class="branch" style="width:' + width + 'px;">&nbsp;&nbsp;</span>';
1682
1683       if (message.has_children && !message.depth)
1684         expando = '<div id="rcmexpando' + uid + '" class="' + (message.expanded ? 'expanded' : 'collapsed') + '">&nbsp;&nbsp;</div>';
1685     }
1686
1687     tree += '<span id="msgicn'+uid+'" class="'+css_class+'">&nbsp;</span>';
1688
1689     // build subject link 
1690     if (!bw.ie && cols.subject) {
1691       var action = flags.mbox == this.env.drafts_mailbox ? 'compose' : 'show';
1692       var uid_param = flags.mbox == this.env.drafts_mailbox ? '_draft_uid' : '_uid';
1693       cols.subject = '<a href="./?_task=mail&_action='+action+'&_mbox='+urlencode(flags.mbox)+'&'+uid_param+'='+uid+'"'+
1694         ' onclick="return rcube_event.cancel(event)" onmouseover="rcube_webmail.long_subject_title(this,'+(message.depth+1)+')">'+cols.subject+'</a>';
1695     }
1696
1697     // add each submitted col
1698     for (var n in this.env.coltypes) {
1699       c = this.env.coltypes[n];
1700       col = document.createElement('td');
1701       col.className = String(c).toLowerCase();
1702
1703       if (c == 'flag') {
1704         css_class = (flags.flagged ? 'flagged' : 'unflagged');
1705         html = '<span id="flagicn'+uid+'" class="'+css_class+'">&nbsp;</span>';
1706       }
1707       else if (c == 'attachment') {
1708         if (/application\/|multipart\/m/.test(flags.ctype))
1709           html = '<span class="attachment">&nbsp;</span>';
1710         else if (/multipart\/report/.test(flags.ctype))
1711           html = '<span class="report">&nbsp;</span>';
1712         else
1713           html = '&nbsp;';
1714       }
1715       else if (c == 'status') {
1716         if (flags.deleted)
1717           css_class = 'deleted';
1718         else if (flags.unread)
1719           css_class = 'unread';
1720         else if (flags.unread_children > 0)
1721           css_class = 'unreadchildren';
1722         else
1723           css_class = 'msgicon';
1724         html = '<span id="statusicn'+uid+'" class="'+css_class+'">&nbsp;</span>';
1725       }
1726       else if (c == 'threads')
1727         html = expando;
1728       else if (c == 'subject')
1729         html = tree + cols[c];
1730       else
1731         html = cols[c];
1732
1733       col.innerHTML = html;
1734
1735       row.appendChild(col);
1736     }
1737
1738     list.insert_row(row, attop);
1739
1740     // remove 'old' row
1741     if (attop && this.env.pagesize && list.rowcount > this.env.pagesize) {
1742       var uid = list.get_last_row();
1743       list.remove_row(uid);
1744       list.clear_selection(uid);
1745     }
1746   };
1747
1748   this.set_list_sorting = function(sort_col, sort_order)
1749   {
1750     // set table header class
1751     $('#rcm'+this.env.sort_col).removeClass('sorted'+(this.env.sort_order.toUpperCase()));
1752     if (sort_col)
1753       $('#rcm'+sort_col).addClass('sorted'+sort_order);
1754
1755     this.env.sort_col = sort_col;
1756     this.env.sort_order = sort_order;
1757   };
1758
1759   this.set_list_options = function(cols, sort_col, sort_order, threads)
1760   {
1761     var update, add_url = '';
1762
1763     if (typeof sort_col == 'undefined')
1764       sort_col = this.env.sort_col;
1765     if (!sort_order)
1766       sort_order = this.env.sort_order;
1767
1768     if (this.env.sort_col != sort_col || this.env.sort_order != sort_order) {
1769       update = 1;
1770       this.set_list_sorting(sort_col, sort_order);
1771     }
1772
1773     if (this.env.threading != threads) {
1774       update = 1;
1775       add_url += '&_threads=' + threads;
1776     }
1777
1778     if (cols && cols.length) {
1779       // make sure new columns are added at the end of the list
1780       var i, idx, name, newcols = [], oldcols = this.env.coltypes;
1781       for (i=0; i<oldcols.length; i++) {
1782         name = oldcols[i] == 'to' ? 'from' : oldcols[i];
1783         idx = $.inArray(name, cols);
1784         if (idx != -1) {
1785           newcols.push(name);
1786           delete cols[idx];
1787         }
1788       }
1789       for (i=0; i<cols.length; i++)
1790         if (cols[i])
1791           newcols.push(cols[i]);
1792
1793       if (newcols.join() != oldcols.join()) {
1794         update = 1;
1795         add_url += '&_cols=' + newcols.join(',');
1796       }
1797     }
1798
1799     if (update)
1800       this.list_mailbox('', '', sort_col+'_'+sort_order, add_url);
1801   };
1802
1803   // when user doble-clicks on a row
1804   this.show_message = function(id, safe, preview)
1805   {
1806     if (!id)
1807       return;
1808
1809     var target = window,
1810       action = preview ? 'preview': 'show',
1811       url = '&_action='+action+'&_uid='+id+'&_mbox='+urlencode(this.env.mailbox);
1812
1813     if (preview && this.env.contentframe && window.frames && window.frames[this.env.contentframe]) {
1814       target = window.frames[this.env.contentframe];
1815       url += '&_framed=1';
1816     }
1817
1818     if (safe)
1819       url += '&_safe=1';
1820
1821     // also send search request to get the right messages
1822     if (this.env.search_request)
1823       url += '&_search='+this.env.search_request;
1824
1825     if (action == 'preview' && String(target.location.href).indexOf(url) >= 0)
1826       this.show_contentframe(true);
1827     else {
1828       if (!this.env.frame_lock) {
1829         (this.is_framed() ? parent.rcmail : this).env.frame_lock = this.set_busy(true, 'loading');
1830       }
1831       target.location.href = this.env.comm_path+url;
1832
1833       // mark as read and change mbox unread counter
1834       if (action == 'preview' && this.message_list && this.message_list.rows[id] && this.message_list.rows[id].unread && this.env.preview_pane_mark_read >= 0) {
1835         this.preview_read_timer = window.setTimeout(function() {
1836           ref.set_message(id, 'unread', false);
1837           ref.update_thread_root(id, 'read');
1838           if (ref.env.unread_counts[ref.env.mailbox]) {
1839             ref.env.unread_counts[ref.env.mailbox] -= 1;
1840             ref.set_unread_count(ref.env.mailbox, ref.env.unread_counts[ref.env.mailbox], ref.env.mailbox == 'INBOX');
1841           }
1842           if (ref.env.preview_pane_mark_read > 0)
1843             ref.http_post('mark', '_uid='+id+'&_flag=read&_quiet=1');
1844         }, this.env.preview_pane_mark_read * 1000);
1845       }
1846     }
1847   };
1848
1849   this.show_contentframe = function(show)
1850   {
1851     var frm, win;
1852     if (this.env.contentframe && (frm = $('#'+this.env.contentframe)) && frm.length) {
1853       if (!show && (win = window.frames[this.env.contentframe])) {
1854         if (win.location && win.location.href.indexOf(this.env.blankpage)<0)
1855           win.location.href = this.env.blankpage;
1856       }
1857       else if (!bw.safari && !bw.konq)
1858         frm[show ? 'show' : 'hide']();
1859       }
1860
1861     if (!show && this.busy)
1862       this.set_busy(false, null, this.env.frame_lock);
1863   };
1864
1865   // list a specific page
1866   this.list_page = function(page)
1867   {
1868     if (page == 'next')
1869       page = this.env.current_page+1;
1870     else if (page == 'last')
1871       page = this.env.pagecount;
1872     else if (page == 'prev' && this.env.current_page > 1)
1873       page = this.env.current_page-1;
1874     else if (page == 'first' && this.env.current_page > 1)
1875       page = 1;
1876
1877     if (page > 0 && page <= this.env.pagecount) {
1878       this.env.current_page = page;
1879
1880       if (this.task == 'mail')
1881         this.list_mailbox(this.env.mailbox, page);
1882       else if (this.task == 'addressbook')
1883         this.list_contacts(this.env.source, this.env.group, page);
1884     }
1885   };
1886
1887   // list messages of a specific mailbox using filter
1888   this.filter_mailbox = function(filter)
1889   {
1890     var search, lock = this.set_busy(true, 'searching');
1891
1892     if (this.gui_objects.qsearchbox)
1893       search = this.gui_objects.qsearchbox.value;
1894
1895     this.clear_message_list();
1896
1897     // reset vars
1898     this.env.current_page = 1;
1899     this.http_request('search', '_filter='+filter
1900         + (search ? '&_q='+urlencode(search) : '')
1901         + (this.env.mailbox ? '&_mbox='+urlencode(this.env.mailbox) : ''), lock);
1902   };
1903
1904   // list messages of a specific mailbox
1905   this.list_mailbox = function(mbox, page, sort, add_url)
1906   {
1907     var url = '', target = window;
1908
1909     if (!mbox)
1910       mbox = this.env.mailbox ? this.env.mailbox : 'INBOX';
1911
1912     if (add_url)
1913       url += add_url;
1914
1915     // add sort to url if set
1916     if (sort)
1917       url += '&_sort=' + sort;
1918
1919     // also send search request to get the right messages
1920     if (this.env.search_request)
1921       url += '&_search='+this.env.search_request;
1922
1923     // set page=1 if changeing to another mailbox
1924     if (this.env.mailbox != mbox) {
1925       page = 1;
1926       this.env.current_page = page;
1927       this.select_all_mode = false;
1928     }
1929
1930     // unselect selected messages and clear the list and message data
1931     this.clear_message_list();
1932
1933     if (mbox != this.env.mailbox || (mbox == this.env.mailbox && !page && !sort))
1934       url += '&_refresh=1';
1935
1936     this.select_folder(mbox, this.env.mailbox);
1937     this.env.mailbox = mbox;
1938
1939     // load message list remotely
1940     if (this.gui_objects.messagelist) {
1941       this.list_mailbox_remote(mbox, page, url);
1942       return;
1943     }
1944
1945     if (this.env.contentframe && window.frames && window.frames[this.env.contentframe]) {
1946       target = window.frames[this.env.contentframe];
1947       url += '&_framed=1';
1948     }
1949
1950     // load message list to target frame/window
1951     if (mbox) {
1952       this.set_busy(true, 'loading');
1953       target.location.href = this.env.comm_path+'&_mbox='+urlencode(mbox)+(page ? '&_page='+page : '')+url;
1954     }
1955   };
1956
1957   this.clear_message_list = function()
1958   {
1959       this.env.messages = {};
1960       this.last_selected = 0;
1961
1962       this.show_contentframe(false);
1963       if (this.message_list)
1964         this.message_list.clear(true);
1965   };
1966
1967   // send remote request to load message list
1968   this.list_mailbox_remote = function(mbox, page, add_url)
1969   {
1970     // clear message list first
1971     this.message_list.clear();
1972
1973     // send request to server
1974     var url = '_mbox='+urlencode(mbox)+(page ? '&_page='+page : ''),
1975       lock = this.set_busy(true, 'loading');
1976     this.http_request('list', url+add_url, lock);
1977   };
1978
1979   // removes messages that doesn't exists from list selection array
1980   this.update_selection = function()
1981   {
1982     var selected = this.message_list.selection,
1983       rows = this.message_list.rows,
1984       i, selection = [];
1985
1986     for (i in selected)
1987       if (rows[selected[i]])
1988         selection.push(selected[i]);
1989
1990     this.message_list.selection = selection;
1991   }
1992
1993   // expand all threads with unread children
1994   this.expand_unread = function()
1995   {
1996     var r, tbody = this.gui_objects.messagelist.tBodies[0],
1997       new_row = tbody.firstChild;
1998
1999     while (new_row) {
2000       if (new_row.nodeType == 1 && (r = this.message_list.rows[new_row.uid])
2001             && r.unread_children) {
2002             this.message_list.expand_all(r);
2003             this.set_unread_children(r.uid);
2004       }
2005       new_row = new_row.nextSibling;
2006     }
2007     return false;
2008   };
2009
2010   // thread expanding/collapsing handler
2011   this.expand_message_row = function(e, uid)
2012   {
2013     var row = this.message_list.rows[uid];
2014
2015     // handle unread_children mark
2016     row.expanded = !row.expanded;
2017     this.set_unread_children(uid);
2018     row.expanded = !row.expanded;
2019
2020     this.message_list.expand_row(e, uid);
2021   };
2022
2023   // message list expanding
2024   this.expand_threads = function()
2025   {
2026     if (!this.env.threading || !this.env.autoexpand_threads || !this.message_list)
2027       return;
2028
2029     switch (this.env.autoexpand_threads) {
2030       case 2: this.expand_unread(); break;
2031       case 1: this.message_list.expand_all(); break;
2032     }
2033   };
2034
2035   // Initializes threads indicators/expanders after list update
2036   this.init_threads = function(roots)
2037   {
2038     for (var n=0, len=roots.length; n<len; n++)
2039       this.add_tree_icons(roots[n]);
2040     this.expand_threads();
2041   };
2042
2043   // adds threads tree icons to the list (or specified thread)
2044   this.add_tree_icons = function(root)
2045   {
2046     var i, l, r, n, len, pos, tmp = [], uid = [],
2047       row, rows = this.message_list.rows;
2048
2049     if (root)
2050       row = rows[root] ? rows[root].obj : null;
2051     else
2052       row = this.message_list.list.tBodies[0].firstChild;
2053
2054     while (row) {
2055       if (row.nodeType == 1 && (r = rows[row.uid])) {
2056         if (r.depth) {
2057           for (i=tmp.length-1; i>=0; i--) {
2058             len = tmp[i].length;
2059             if (len > r.depth) {
2060               pos = len - r.depth;
2061               if (!(tmp[i][pos] & 2))
2062                 tmp[i][pos] = tmp[i][pos] ? tmp[i][pos]+2 : 2;
2063             }
2064             else if (len == r.depth) {
2065               if (!(tmp[i][0] & 2))
2066                 tmp[i][0] += 2;
2067             }
2068             if (r.depth > len)
2069               break;
2070           }
2071
2072           tmp.push(new Array(r.depth));
2073           tmp[tmp.length-1][0] = 1;
2074           uid.push(r.uid);
2075         }
2076         else {
2077           if (tmp.length) {
2078             for (i in tmp) {
2079               this.set_tree_icons(uid[i], tmp[i]);
2080             }
2081             tmp = [];
2082             uid = [];
2083           }
2084           if (root && row != rows[root].obj)
2085             break;
2086         }
2087       }
2088       row = row.nextSibling;
2089     }
2090
2091     if (tmp.length) {
2092       for (i in tmp) {
2093         this.set_tree_icons(uid[i], tmp[i]);
2094       }
2095     }
2096   };
2097
2098   // adds tree icons to specified message row
2099   this.set_tree_icons = function(uid, tree)
2100   {
2101     var i, divs = [], html = '', len = tree.length;
2102
2103     for (i=0; i<len; i++) {
2104       if (tree[i] > 2)
2105         divs.push({'class': 'l3', width: 15});
2106       else if (tree[i] > 1)
2107         divs.push({'class': 'l2', width: 15});
2108       else if (tree[i] > 0)
2109         divs.push({'class': 'l1', width: 15});
2110       // separator div
2111       else if (divs.length && !divs[divs.length-1]['class'])
2112         divs[divs.length-1].width += 15;
2113       else
2114         divs.push({'class': null, width: 15});
2115     }
2116
2117     for (i=divs.length-1; i>=0; i--) {
2118       if (divs[i]['class'])
2119         html += '<div class="tree '+divs[i]['class']+'" />';
2120       else
2121         html += '<div style="width:'+divs[i].width+'px" />';
2122     }
2123
2124     if (html)
2125       $('#rcmtab'+uid).html(html);
2126   };
2127
2128   // update parent in a thread
2129   this.update_thread_root = function(uid, flag)
2130   {
2131     if (!this.env.threading)
2132       return;
2133
2134     var root = this.message_list.find_root(uid);
2135
2136     if (uid == root)
2137       return;
2138
2139     var p = this.message_list.rows[root];
2140
2141     if (flag == 'read' && p.unread_children) {
2142       p.unread_children--;
2143     }
2144     else if (flag == 'unread' && p.has_children) {
2145       // unread_children may be undefined
2146       p.unread_children = p.unread_children ? p.unread_children + 1 : 1;
2147     }
2148     else {
2149       return;
2150     }
2151
2152     this.set_message_icon(root);
2153     this.set_unread_children(root);
2154   };
2155
2156   // update thread indicators for all messages in a thread below the specified message
2157   // return number of removed/added root level messages
2158   this.update_thread = function (uid)
2159   {
2160     if (!this.env.threading)
2161       return 0;
2162
2163     var r, parent, count = 0,
2164       rows = this.message_list.rows,
2165       row = rows[uid],
2166       depth = rows[uid].depth,
2167       roots = [];
2168
2169     if (!row.depth) // root message: decrease roots count
2170       count--;
2171     else if (row.unread) {
2172       // update unread_children for thread root
2173       parent = this.message_list.find_root(uid);
2174       rows[parent].unread_children--;
2175       this.set_unread_children(parent);
2176     }
2177
2178     parent = row.parent_uid;
2179
2180     // childrens
2181     row = row.obj.nextSibling;
2182     while (row) {
2183       if (row.nodeType == 1 && (r = rows[row.uid])) {
2184             if (!r.depth || r.depth <= depth)
2185               break;
2186
2187             r.depth--; // move left
2188         // reset width and clear the content of a tab, icons will be added later
2189             $('#rcmtab'+r.uid).width(r.depth * 15).html('');
2190         if (!r.depth) { // a new root
2191               count++; // increase roots count
2192               r.parent_uid = 0;
2193               if (r.has_children) {
2194                 // replace 'leaf' with 'collapsed'
2195                 $('#rcmrow'+r.uid+' '+'.leaf:first')
2196               .attr('id', 'rcmexpando' + r.uid)
2197                   .attr('class', (r.obj.style.display != 'none' ? 'expanded' : 'collapsed'))
2198               .bind('mousedown', {uid:r.uid, p:this},
2199                     function(e) { return e.data.p.expand_message_row(e, e.data.uid); });
2200
2201                 r.unread_children = 0;
2202                 roots.push(r);
2203               }
2204               // show if it was hidden
2205               if (r.obj.style.display == 'none')
2206                 $(r.obj).show();
2207             }
2208             else {
2209               if (r.depth == depth)
2210                 r.parent_uid = parent;
2211               if (r.unread && roots.length)
2212                 roots[roots.length-1].unread_children++;
2213             }
2214           }
2215           row = row.nextSibling;
2216     }
2217
2218     // update unread_children for roots
2219     for (var i=0; i<roots.length; i++)
2220       this.set_unread_children(roots[i].uid);
2221
2222     return count;
2223   };
2224
2225   this.delete_excessive_thread_rows = function()
2226   {
2227     var rows = this.message_list.rows,
2228       tbody = this.message_list.list.tBodies[0],
2229       row = tbody.firstChild,
2230       cnt = this.env.pagesize + 1;
2231
2232     while (row) {
2233       if (row.nodeType == 1 && (r = rows[row.uid])) {
2234             if (!r.depth && cnt)
2235               cnt--;
2236
2237         if (!cnt)
2238               this.message_list.remove_row(row.uid);
2239           }
2240           row = row.nextSibling;
2241     }
2242   };
2243
2244   // set message icon
2245   this.set_message_icon = function(uid)
2246   {
2247     var css_class,
2248       row = this.message_list.rows[uid];
2249
2250     if (!row)
2251       return false;
2252
2253     if (row.icon) {
2254       css_class = 'msgicon';
2255       if (row.deleted)
2256         css_class += ' deleted';
2257       else if (row.unread)
2258         css_class += ' unread';
2259       else if (row.unread_children)
2260         css_class += ' unreadchildren';
2261       if (row.msgicon == row.icon) {
2262         if (row.replied)
2263           css_class += ' replied';
2264         if (row.forwarded)
2265           css_class += ' forwarded';
2266         css_class += ' status';
2267       }
2268
2269       row.icon.className = css_class;
2270     }
2271
2272     if (row.msgicon && row.msgicon != row.icon) {
2273       css_class = 'msgicon';
2274       if (!row.unread && row.unread_children)
2275         css_class += ' unreadchildren';
2276       if (row.replied)
2277         css_class += ' replied';
2278       if (row.forwarded)
2279         css_class += ' forwarded';
2280
2281       row.msgicon.className = css_class;
2282     }
2283
2284     if (row.flagicon) {
2285       css_class = (row.flagged ? 'flagged' : 'unflagged');
2286       row.flagicon.className = css_class;
2287     }
2288   };
2289
2290   // set message status
2291   this.set_message_status = function(uid, flag, status)
2292   {
2293     var row = this.message_list.rows[uid];
2294
2295     if (!row)
2296       return false;
2297
2298     if (flag == 'unread')
2299       row.unread = status;
2300     else if(flag == 'deleted')
2301       row.deleted = status;
2302     else if (flag == 'replied')
2303       row.replied = status;
2304     else if (flag == 'forwarded')
2305       row.forwarded = status;
2306     else if (flag == 'flagged')
2307       row.flagged = status;
2308   };
2309
2310   // set message row status, class and icon
2311   this.set_message = function(uid, flag, status)
2312   {
2313     var row = this.message_list.rows[uid];
2314
2315     if (!row)
2316       return false;
2317
2318     if (flag)
2319       this.set_message_status(uid, flag, status);
2320
2321     var rowobj = $(row.obj);
2322
2323     if (row.unread && !rowobj.hasClass('unread'))
2324       rowobj.addClass('unread');
2325     else if (!row.unread && rowobj.hasClass('unread'))
2326       rowobj.removeClass('unread');
2327
2328     if (row.deleted && !rowobj.hasClass('deleted'))
2329       rowobj.addClass('deleted');
2330     else if (!row.deleted && rowobj.hasClass('deleted'))
2331       rowobj.removeClass('deleted');
2332
2333     if (row.flagged && !rowobj.hasClass('flagged'))
2334       rowobj.addClass('flagged');
2335     else if (!row.flagged && rowobj.hasClass('flagged'))
2336       rowobj.removeClass('flagged');
2337
2338     this.set_unread_children(uid);
2339     this.set_message_icon(uid);
2340   };
2341
2342   // sets unroot (unread_children) class of parent row
2343   this.set_unread_children = function(uid)
2344   {
2345     var row = this.message_list.rows[uid];
2346
2347     if (row.parent_uid)
2348       return;
2349
2350     if (!row.unread && row.unread_children && !row.expanded)
2351       $(row.obj).addClass('unroot');
2352     else
2353       $(row.obj).removeClass('unroot');
2354   };
2355
2356   // copy selected messages to the specified mailbox
2357   this.copy_messages = function(mbox)
2358   {
2359     if (mbox && typeof mbox == 'object')
2360       mbox = mbox.id;
2361
2362     // exit if current or no mailbox specified or if selection is empty
2363     if (!mbox || mbox == this.env.mailbox || (!this.env.uid && (!this.message_list || !this.message_list.get_selection().length)))
2364       return;
2365
2366     var a_uids = [],
2367       lock = this.display_message(this.get_label('copyingmessage'), 'loading'),
2368       add_url = '&_target_mbox='+urlencode(mbox)+'&_from='+(this.env.action ? this.env.action : '');
2369
2370     if (this.env.uid)
2371       a_uids[0] = this.env.uid;
2372     else {
2373       var selection = this.message_list.get_selection();
2374       for (var n in selection) {
2375         a_uids.push(selection[n]);
2376       }
2377     }
2378
2379     add_url += '&_uid='+this.uids_to_list(a_uids);
2380
2381     // send request to server
2382     this.http_post('copy', '_mbox='+urlencode(this.env.mailbox)+add_url, lock);
2383   };
2384
2385   // move selected messages to the specified mailbox
2386   this.move_messages = function(mbox)
2387   {
2388     if (mbox && typeof mbox == 'object')
2389       mbox = mbox.id;
2390
2391     // exit if current or no mailbox specified or if selection is empty
2392     if (!mbox || mbox == this.env.mailbox || (!this.env.uid && (!this.message_list || !this.message_list.get_selection().length)))
2393       return;
2394
2395     var lock = false,
2396       add_url = '&_target_mbox='+urlencode(mbox)+'&_from='+(this.env.action ? this.env.action : '');
2397
2398     // show wait message
2399     if (this.env.action == 'show') {
2400       lock = this.set_busy(true, 'movingmessage');
2401     }
2402     else
2403       this.show_contentframe(false);
2404
2405     // Hide message command buttons until a message is selected
2406     this.enable_command(this.env.message_commands, false);
2407
2408     this._with_selected_messages('moveto', lock, add_url);
2409   };
2410
2411   // delete selected messages from the current mailbox
2412   this.delete_messages = function()
2413   {
2414     var uid, i, len, trash = this.env.trash_mailbox,
2415       list = this.message_list,
2416       selection = list ? $.merge([], list.get_selection()) : [];
2417
2418     // exit if no mailbox specified or if selection is empty
2419     if (!this.env.uid && !selection.length)
2420       return;
2421
2422     // also select childs of collapsed rows
2423     for (i=0, len=selection.length; i<len; i++) {
2424       uid = selection[i];
2425       if (list.rows[uid].has_children && !list.rows[uid].expanded)
2426         list.select_childs(uid);
2427     }
2428
2429     // if config is set to flag for deletion
2430     if (this.env.flag_for_deletion) {
2431       this.mark_message('delete');
2432       return false;
2433     }
2434     // if there isn't a defined trash mailbox or we are in it
2435     // @TODO: we should check if defined trash mailbox exists
2436     else if (!trash || this.env.mailbox == trash)
2437       this.permanently_remove_messages();
2438     // if there is a trash mailbox defined and we're not currently in it
2439     else {
2440       // if shift was pressed delete it immediately
2441       if (list && list.shiftkey) {
2442         if (confirm(this.get_label('deletemessagesconfirm')))
2443           this.permanently_remove_messages();
2444       }
2445       else
2446         this.move_messages(trash);
2447     }
2448
2449     return true;
2450   };
2451
2452   // delete the selected messages permanently
2453   this.permanently_remove_messages = function()
2454   {
2455     // exit if no mailbox specified or if selection is empty
2456     if (!this.env.uid && (!this.message_list || !this.message_list.get_selection().length))
2457       return;
2458
2459     this.show_contentframe(false);
2460     this._with_selected_messages('delete', false, '&_from='+(this.env.action ? this.env.action : ''));
2461   };
2462
2463   // Send a specifc moveto/delete request with UIDs of all selected messages
2464   // @private
2465   this._with_selected_messages = function(action, lock, add_url)
2466   {
2467     var a_uids = [], count = 0, msg;
2468
2469     if (this.env.uid)
2470       a_uids[0] = this.env.uid;
2471     else {
2472       var n, id, root, roots = [],
2473         selection = this.message_list.get_selection();
2474
2475       for (n=0, len=selection.length; n<len; n++) {
2476         id = selection[n];
2477         a_uids.push(id);
2478
2479         if (this.env.threading) {
2480           count += this.update_thread(id);
2481           root = this.message_list.find_root(id);
2482           if (root != id && $.inArray(root, roots) < 0) {
2483             roots.push(root);
2484           }
2485         }
2486         this.message_list.remove_row(id, (this.env.display_next && n == selection.length-1));
2487       }
2488       // make sure there are no selected rows
2489       if (!this.env.display_next)
2490         this.message_list.clear_selection();
2491       // update thread tree icons
2492       for (n=0, len=roots.length; n<len; n++) {
2493         this.add_tree_icons(roots[n]);
2494       }
2495     }
2496
2497     // also send search request to get the right messages
2498     if (this.env.search_request)
2499       add_url += '&_search='+this.env.search_request;
2500
2501     if (this.env.display_next && this.env.next_uid)
2502       add_url += '&_next_uid='+this.env.next_uid;
2503
2504     if (count < 0)
2505       add_url += '&_count='+(count*-1);
2506     else if (count > 0) 
2507       // remove threads from the end of the list
2508       this.delete_excessive_thread_rows();
2509
2510     add_url += '&_uid='+this.uids_to_list(a_uids);
2511
2512     if (!lock) {
2513       msg = action == 'moveto' ? 'movingmessage' : 'deletingmessage';
2514       lock = this.display_message(this.get_label(msg), 'loading');
2515     }
2516
2517     // send request to server
2518     this.http_post(action, '_mbox='+urlencode(this.env.mailbox)+add_url, lock);
2519   };
2520
2521   // set a specific flag to one or more messages
2522   this.mark_message = function(flag, uid)
2523   {
2524     var a_uids = [], r_uids = [], len, n, id,
2525       selection = this.message_list ? this.message_list.get_selection() : [];
2526
2527     if (uid)
2528       a_uids[0] = uid;
2529     else if (this.env.uid)
2530       a_uids[0] = this.env.uid;
2531     else if (this.message_list) {
2532       for (n=0, len=selection.length; n<len; n++) {
2533           a_uids.push(selection[n]);
2534       }
2535     }
2536
2537     if (!this.message_list)
2538       r_uids = a_uids;
2539     else
2540       for (n=0, len=a_uids.length; n<len; n++) {
2541         id = a_uids[n];
2542         if ((flag=='read' && this.message_list.rows[id].unread) 
2543             || (flag=='unread' && !this.message_list.rows[id].unread)
2544             || (flag=='delete' && !this.message_list.rows[id].deleted)
2545             || (flag=='undelete' && this.message_list.rows[id].deleted)
2546             || (flag=='flagged' && !this.message_list.rows[id].flagged)
2547             || (flag=='unflagged' && this.message_list.rows[id].flagged))
2548         {
2549           r_uids.push(id);
2550         }
2551       }
2552
2553     // nothing to do
2554     if (!r_uids.length && !this.select_all_mode)
2555       return;
2556
2557     switch (flag) {
2558         case 'read':
2559         case 'unread':
2560           this.toggle_read_status(flag, r_uids);
2561           break;
2562         case 'delete':
2563         case 'undelete':
2564           this.toggle_delete_status(r_uids);
2565           break;
2566         case 'flagged':
2567         case 'unflagged':
2568           this.toggle_flagged_status(flag, a_uids);
2569           break;
2570     }
2571   };
2572
2573   // set class to read/unread
2574   this.toggle_read_status = function(flag, a_uids)
2575   {
2576     // mark all message rows as read/unread
2577     for (var i=0; i<a_uids.length; i++)
2578       this.set_message(a_uids[i], 'unread', (flag=='unread' ? true : false));
2579
2580     var url = '_uid='+this.uids_to_list(a_uids)+'&_flag='+flag,
2581       lock = this.display_message(this.get_label('markingmessage'), 'loading');
2582
2583     // also send search request to get the right messages
2584     if (this.env.search_request)
2585       url += '&_search='+this.env.search_request;
2586
2587     this.http_post('mark', url, lock);
2588
2589     for (var i=0; i<a_uids.length; i++)
2590       this.update_thread_root(a_uids[i], flag);
2591   };
2592
2593   // set image to flagged or unflagged
2594   this.toggle_flagged_status = function(flag, a_uids)
2595   {
2596     // mark all message rows as flagged/unflagged
2597     for (var i=0; i<a_uids.length; i++)
2598       this.set_message(a_uids[i], 'flagged', (flag=='flagged' ? true : false));
2599
2600     var url = '_uid='+this.uids_to_list(a_uids)+'&_flag='+flag,
2601       lock = this.display_message(this.get_label('markingmessage'), 'loading');
2602
2603     // also send search request to get the right messages
2604     if (this.env.search_request)
2605       url += '&_search='+this.env.search_request;
2606
2607     this.http_post('mark', url, lock);
2608   };
2609
2610   // mark all message rows as deleted/undeleted
2611   this.toggle_delete_status = function(a_uids)
2612   {
2613     var rows = this.message_list ? this.message_list.rows : [];
2614
2615     if (a_uids.length==1) {
2616       if (!rows.length || (rows[a_uids[0]] && !rows[a_uids[0]].deleted))
2617         this.flag_as_deleted(a_uids);
2618       else
2619         this.flag_as_undeleted(a_uids);
2620
2621       return true;
2622     }
2623
2624     var uid, all_deleted = true;
2625     for (var i=0, len=a_uids.length; i<len; i++) {
2626       uid = a_uids[i];
2627       if (rows[uid] && !rows[uid].deleted) {
2628         all_deleted = false;
2629         break;
2630       }
2631     }
2632
2633     if (all_deleted)
2634       this.flag_as_undeleted(a_uids);
2635     else
2636       this.flag_as_deleted(a_uids);
2637
2638     return true;
2639   };
2640
2641   this.flag_as_undeleted = function(a_uids)
2642   {
2643     for (var i=0, len=a_uids.length; i<len; i++)
2644       this.set_message(a_uids[i], 'deleted', false);
2645
2646     var url = '_uid='+this.uids_to_list(a_uids)+'&_flag=undelete',
2647       lock = this.display_message(this.get_label('markingmessage'), 'loading');
2648
2649     // also send search request to get the right messages
2650     if (this.env.search_request)
2651       url += '&_search='+this.env.search_request;
2652
2653     this.http_post('mark', url, lock);
2654     return true;
2655   };
2656
2657   this.flag_as_deleted = function(a_uids)
2658   {
2659     var add_url = '',
2660       r_uids = [],
2661       rows = this.message_list ? this.message_list.rows : [],
2662       count = 0;
2663
2664     for (var i=0, len=a_uids.length; i<len; i++) {
2665       uid = a_uids[i];
2666       if (rows[uid]) {
2667         if (rows[uid].unread)
2668           r_uids[r_uids.length] = uid;
2669
2670             if (this.env.skip_deleted) {
2671               count += this.update_thread(uid);
2672           this.message_list.remove_row(uid, (this.env.display_next && i == this.message_list.selection.length-1));
2673             }
2674             else
2675               this.set_message(uid, 'deleted', true);
2676       }
2677     }
2678
2679     // make sure there are no selected rows
2680     if (this.env.skip_deleted && this.message_list) {
2681       if(!this.env.display_next)
2682         this.message_list.clear_selection();
2683       if (count < 0)
2684         add_url += '&_count='+(count*-1);
2685       else if (count > 0) 
2686         // remove threads from the end of the list
2687         this.delete_excessive_thread_rows();
2688     }
2689
2690     add_url = '&_from='+(this.env.action ? this.env.action : ''),
2691       lock = this.display_message(this.get_label('markingmessage'), 'loading');
2692
2693     // ??
2694     if (r_uids.length)
2695       add_url += '&_ruid='+this.uids_to_list(r_uids);
2696
2697     if (this.env.skip_deleted) {
2698       if (this.env.display_next && this.env.next_uid)
2699         add_url += '&_next_uid='+this.env.next_uid;
2700     }
2701
2702     // also send search request to get the right messages
2703     if (this.env.search_request)
2704       add_url += '&_search='+this.env.search_request;
2705
2706     this.http_post('mark', '_uid='+this.uids_to_list(a_uids)+'&_flag=delete'+add_url, lock);
2707     return true;
2708   };
2709
2710   // flag as read without mark request (called from backend)
2711   // argument should be a coma-separated list of uids
2712   this.flag_deleted_as_read = function(uids)
2713   {
2714     var icn_src, uid,
2715       rows = this.message_list ? this.message_list.rows : [],
2716       str = String(uids),
2717       a_uids = str.split(',');
2718
2719     for (var i=0; i<a_uids.length; i++) {
2720       uid = a_uids[i];
2721       if (rows[uid])
2722         this.set_message(uid, 'unread', false);
2723     }
2724   };
2725
2726   // Converts array of message UIDs to comma-separated list for use in URL
2727   // with select_all mode checking
2728   this.uids_to_list = function(uids)
2729   {
2730     return this.select_all_mode ? '*' : uids.join(',');
2731   };
2732
2733
2734   /*********************************************************/
2735   /*********       mailbox folders methods         *********/
2736   /*********************************************************/
2737
2738   this.expunge_mailbox = function(mbox)
2739   {
2740     var lock = false,
2741       url = '_mbox='+urlencode(mbox);
2742
2743     // lock interface if it's the active mailbox
2744     if (mbox == this.env.mailbox) {
2745        lock = this.set_busy(true, 'loading');
2746        url += '&_reload=1';
2747      }
2748
2749     // send request to server
2750     this.http_post('expunge', url, lock);
2751   };
2752
2753   this.purge_mailbox = function(mbox)
2754   {
2755     var lock = false,
2756       url = '_mbox='+urlencode(mbox);
2757
2758     if (!confirm(this.get_label('purgefolderconfirm')))
2759       return false;
2760
2761     // lock interface if it's the active mailbox
2762     if (mbox == this.env.mailbox) {
2763        lock = this.set_busy(true, 'loading');
2764        url += '&_reload=1';
2765      }
2766
2767     // send request to server
2768     this.http_post('purge', url, lock);
2769   };
2770
2771   // test if purge command is allowed
2772   this.purge_mailbox_test = function()
2773   {
2774     return (this.env.messagecount && (this.env.mailbox == this.env.trash_mailbox || this.env.mailbox == this.env.junk_mailbox
2775       || this.env.mailbox.match('^' + RegExp.escape(this.env.trash_mailbox) + RegExp.escape(this.env.delimiter))
2776       || this.env.mailbox.match('^' + RegExp.escape(this.env.junk_mailbox) + RegExp.escape(this.env.delimiter))));
2777   };
2778
2779
2780   /*********************************************************/
2781   /*********           login form methods          *********/
2782   /*********************************************************/
2783
2784   // handler for keyboard events on the _user field
2785   this.login_user_keyup = function(e)
2786   {
2787     var key = rcube_event.get_keycode(e);
2788     var passwd = $('#rcmloginpwd');
2789
2790     // enter
2791     if (key == 13 && passwd.length && !passwd.val()) {
2792       passwd.focus();
2793       return rcube_event.cancel(e);
2794     }
2795
2796     return true;
2797   };
2798
2799
2800   /*********************************************************/
2801   /*********        message compose methods        *********/
2802   /*********************************************************/
2803
2804   // init message compose form: set focus and eventhandlers
2805   this.init_messageform = function()
2806   {
2807     if (!this.gui_objects.messageform)
2808       return false;
2809
2810     var input_from = $("[name='_from']"),
2811       input_to = $("[name='_to']"),
2812       input_subject = $("input[name='_subject']"),
2813       input_message = $("[name='_message']").get(0),
2814       html_mode = $("input[name='_is_html']").val() == '1',
2815       ac_fields = ['cc', 'bcc', 'replyto', 'followupto'];
2816
2817     // init live search events
2818     this.init_address_input_events(input_to);
2819     for (var i in ac_fields) {
2820       this.init_address_input_events($("[name='_"+ac_fields[i]+"']"));
2821     }
2822
2823     if (!html_mode) {
2824       this.set_caret_pos(input_message, this.env.top_posting ? 0 : $(input_message).val().length);
2825       // add signature according to selected identity
2826       // if we have HTML editor, signature is added in callback
2827       if (input_from.attr('type') == 'select-one' && $("input[name='_draft_saveid']").val() == '') {
2828         this.change_identity(input_from[0]);
2829       }
2830     }
2831
2832     if (input_to.val() == '')
2833       input_to.focus();
2834     else if (input_subject.val() == '')
2835       input_subject.focus();
2836     else if (input_message)
2837       input_message.focus();
2838
2839     this.env.compose_focus_elem = document.activeElement;
2840
2841     // get summary of all field values
2842     this.compose_field_hash(true);
2843
2844     // start the auto-save timer
2845     this.auto_save_start();
2846   };
2847
2848   this.init_address_input_events = function(obj)
2849   {
2850     obj[bw.ie || bw.safari || bw.chrome ? 'keydown' : 'keypress'](function(e){ return ref.ksearch_keydown(e, this); })
2851       .attr('autocomplete', 'off');
2852   };
2853
2854   // checks the input fields before sending a message
2855   this.check_compose_input = function()
2856   {
2857     // check input fields
2858     var ed, input_to = $("[name='_to']"),
2859       input_cc = $("[name='_cc']"),
2860       input_bcc = $("[name='_bcc']"),
2861       input_from = $("[name='_from']"),
2862       input_subject = $("[name='_subject']"),
2863       input_message = $("[name='_message']");
2864
2865     // check sender (if have no identities)
2866     if (input_from.attr('type') == 'text' && !rcube_check_email(input_from.val(), true)) {
2867       alert(this.get_label('nosenderwarning'));
2868       input_from.focus();
2869       return false;
2870     }
2871
2872     // check for empty recipient
2873     var recipients = input_to.val() ? input_to.val() : (input_cc.val() ? input_cc.val() : input_bcc.val());
2874     if (!rcube_check_email(recipients.replace(/^\s+/, '').replace(/[\s,;]+$/, ''), true)) {
2875       alert(this.get_label('norecipientwarning'));
2876       input_to.focus();
2877       return false;
2878     }
2879
2880     // check if all files has been uploaded
2881     for (var key in this.env.attachments) {
2882       if (typeof this.env.attachments[key] == 'object' && !this.env.attachments[key].complete) {
2883         alert(this.get_label('notuploadedwarning'));
2884         return false;
2885       }
2886     }
2887
2888     // display localized warning for missing subject
2889     if (input_subject.val() == '') {
2890       var subject = prompt(this.get_label('nosubjectwarning'), this.get_label('nosubject'));
2891
2892       // user hit cancel, so don't send
2893       if (!subject && subject !== '') {
2894         input_subject.focus();
2895         return false;
2896       }
2897       else
2898         input_subject.val((subject ? subject : this.get_label('nosubject')));
2899     }
2900
2901     // Apply spellcheck changes if spell checker is active
2902     this.stop_spellchecking();
2903
2904     if (window.tinyMCE)
2905       ed = tinyMCE.get(this.env.composebody);
2906
2907     // check for empty body
2908     if (!ed && input_message.val() == '' && !confirm(this.get_label('nobodywarning'))) {
2909       input_message.focus();
2910       return false;
2911     }
2912     else if (ed) {
2913       if (!ed.getContent() && !confirm(this.get_label('nobodywarning'))) {
2914         ed.focus();
2915         return false;
2916       }
2917       // move body from html editor to textarea (just to be sure, #1485860)
2918       tinyMCE.triggerSave();
2919     }
2920
2921     return true;
2922   };
2923
2924   this.toggle_editor = function(props)
2925   {
2926     if (props.mode == 'html') {
2927       this.display_spellcheck_controls(false);
2928       this.plain2html($('#'+props.id).val(), props.id);
2929       tinyMCE.execCommand('mceAddControl', false, props.id);
2930     }
2931     else {
2932       var thisMCE = tinyMCE.get(props.id), existingHtml;
2933       if (thisMCE.plugins.spellchecker && thisMCE.plugins.spellchecker.active)
2934         thisMCE.execCommand('mceSpellCheck', false);
2935
2936       if (existingHtml = thisMCE.getContent()) {
2937         if (!confirm(this.get_label('editorwarning'))) {
2938           return false;
2939         }
2940         this.html2plain(existingHtml, props.id);
2941       }
2942       tinyMCE.execCommand('mceRemoveControl', false, props.id);
2943       this.display_spellcheck_controls(true);
2944     }
2945
2946     return true;
2947   };
2948
2949   this.stop_spellchecking = function()
2950   {
2951     var ed;
2952     if (window.tinyMCE && (ed = tinyMCE.get(this.env.composebody))) {
2953       if (ed.plugins.spellchecker && ed.plugins.spellchecker.active)
2954         ed.execCommand('mceSpellCheck');
2955     }
2956     else if ((ed = this.env.spellcheck) && !this.spellcheck_ready) {
2957       $(ed.spell_span).trigger('click');
2958       this.set_spellcheck_state('ready');
2959     }
2960   };
2961
2962   this.display_spellcheck_controls = function(vis)
2963   {
2964     if (this.env.spellcheck) {
2965       // stop spellchecking process
2966       if (!vis)
2967         this.stop_spellchecking();
2968
2969       $(this.env.spellcheck.spell_container).css('visibility', vis ? 'visible' : 'hidden');
2970     }
2971   };
2972
2973   this.set_spellcheck_state = function(s)
2974   {
2975     this.spellcheck_ready = (s == 'ready' || s == 'no_error_found');
2976     this.enable_command('spellcheck', this.spellcheck_ready);
2977   };
2978
2979   this.set_draft_id = function(id)
2980   {
2981     $("input[name='_draft_saveid']").val(id);
2982   };
2983
2984   this.auto_save_start = function()
2985   {
2986     if (this.env.draft_autosave)
2987       this.save_timer = self.setTimeout(function(){ ref.command("savedraft"); }, this.env.draft_autosave * 1000);
2988
2989     // Unlock interface now that saving is complete
2990     this.busy = false;
2991   };
2992
2993   this.compose_field_hash = function(save)
2994   {
2995     // check input fields
2996     var ed, str = '',
2997       value_to = $("[name='_to']").val(),
2998       value_cc = $("[name='_cc']").val(),
2999       value_bcc = $("[name='_bcc']").val(),
3000       value_subject = $("[name='_subject']").val();
3001
3002     if (value_to)
3003       str += value_to+':';
3004     if (value_cc)
3005       str += value_cc+':';
3006     if (value_bcc)
3007       str += value_bcc+':';
3008     if (value_subject)
3009       str += value_subject+':';
3010
3011     if (window.tinyMCE && (ed = tinyMCE.get(this.env.composebody)))
3012       str += ed.getContent();
3013     else
3014       str += $("[name='_message']").val();
3015
3016     if (this.env.attachments)
3017       for (var upload_id in this.env.attachments)
3018         str += upload_id;
3019
3020     if (save)
3021       this.cmp_hash = str;
3022
3023     return str;
3024   };
3025
3026   this.change_identity = function(obj, show_sig)
3027   {
3028     if (!obj || !obj.options)
3029       return false;
3030
3031     if (!show_sig)
3032       show_sig = this.env.show_sig;
3033
3034     var cursor_pos, p = -1,
3035       id = obj.options[obj.selectedIndex].value,
3036       input_message = $("[name='_message']"),
3037       message = input_message.val(),
3038       is_html = ($("input[name='_is_html']").val() == '1'),
3039       sig = this.env.identity,
3040       sig_separator = this.env.sig_above && (this.env.compose_mode == 'reply' || this.env.compose_mode == 'forward') ? '---' : '-- ';
3041
3042     // enable manual signature insert
3043     if (this.env.signatures && this.env.signatures[id]) {
3044       this.enable_command('insert-sig', true);
3045       this.env.compose_commands.push('insert-sig');
3046     }
3047     else
3048       this.enable_command('insert-sig', false);
3049
3050     if (!is_html) {
3051       // remove the 'old' signature
3052       if (show_sig && sig && this.env.signatures && this.env.signatures[sig]) {
3053
3054         sig = this.env.signatures[sig].is_html ? this.env.signatures[sig].plain_text : this.env.signatures[sig].text;
3055         sig = sig.replace(/\r\n/g, '\n');
3056
3057         if (!sig.match(/^--[ -]\n/))
3058           sig = sig_separator + '\n' + sig;
3059
3060         p = this.env.sig_above ? message.indexOf(sig) : message.lastIndexOf(sig);
3061         if (p >= 0)
3062           message = message.substring(0, p) + message.substring(p+sig.length, message.length);
3063       }
3064       // add the new signature string
3065       if (show_sig && this.env.signatures && this.env.signatures[id]) {
3066         sig = this.env.signatures[id]['is_html'] ? this.env.signatures[id]['plain_text'] : this.env.signatures[id]['text'];
3067         sig = sig.replace(/\r\n/g, '\n');
3068
3069         if (!sig.match(/^--[ -]\n/))
3070           sig = sig_separator + '\n' + sig;
3071
3072         if (this.env.sig_above) {
3073           if (p >= 0) { // in place of removed signature
3074             message = message.substring(0, p) + sig + message.substring(p, message.length);
3075             cursor_pos = p - 1;
3076           }
3077           else if (pos = this.get_caret_pos(input_message.get(0))) { // at cursor position
3078             message = message.substring(0, pos) + '\n' + sig + '\n\n' + message.substring(pos, message.length);
3079             cursor_pos = pos;
3080           }
3081           else { // on top
3082             cursor_pos = 0;
3083             message = '\n\n' + sig + '\n\n' + message.replace(/^[\r\n]+/, '');
3084           }
3085         }
3086         else {
3087           message = message.replace(/[\r\n]+$/, '');
3088           cursor_pos = !this.env.top_posting && message.length ? message.length+1 : 0;
3089           message += '\n\n' + sig;
3090         }
3091       }
3092       else
3093         cursor_pos = this.env.top_posting ? 0 : message.length;
3094
3095       input_message.val(message);
3096
3097       // move cursor before the signature
3098       this.set_caret_pos(input_message.get(0), cursor_pos);
3099     }
3100     else if (show_sig && this.env.signatures) {  // html
3101       var editor = tinyMCE.get(this.env.composebody),
3102         sigElem = editor.dom.get('_rc_sig');
3103
3104       // Append the signature as a div within the body
3105       if (!sigElem) {
3106         var body = editor.getBody(),
3107           doc = editor.getDoc();
3108
3109         sigElem = doc.createElement('div');
3110         sigElem.setAttribute('id', '_rc_sig');
3111
3112         if (this.env.sig_above) {
3113           // if no existing sig and top posting then insert at caret pos
3114           editor.getWin().focus(); // correct focus in IE & Chrome
3115
3116           var node = editor.selection.getNode();
3117           if (node.nodeName == 'BODY') {
3118             // no real focus, insert at start
3119             body.insertBefore(sigElem, body.firstChild);
3120             body.insertBefore(doc.createElement('br'), body.firstChild);
3121           }
3122           else {
3123             body.insertBefore(sigElem, node.nextSibling);
3124             body.insertBefore(doc.createElement('br'), node.nextSibling);
3125           }
3126         }
3127         else {
3128           if (bw.ie)  // add empty line before signature on IE
3129             body.appendChild(doc.createElement('br'));
3130
3131           body.appendChild(sigElem);
3132         }
3133       }
3134
3135       if (this.env.signatures[id]) {
3136         if (this.env.signatures[id].is_html) {
3137           sig = this.env.signatures[id].text;
3138           if (!this.env.signatures[id].plain_text.match(/^--[ -]\r?\n/))
3139             sig = sig_separator + '<br />' + sig;
3140         }
3141         else {
3142           sig = this.env.signatures[id].text;
3143           if (!sig.match(/^--[ -]\r?\n/))
3144             sig = sig_separator + '\n' + sig;
3145           sig = '<pre>' + sig + '</pre>';
3146         }
3147
3148         sigElem.innerHTML = sig;
3149       }
3150     }
3151
3152     this.env.identity = id;
3153     return true;
3154   };
3155
3156   // upload attachment file
3157   this.upload_file = function(form)
3158   {
3159     if (!form)
3160       return false;
3161
3162     // get file input fields
3163     var send = false;
3164     for (var n=0; n<form.elements.length; n++)
3165       if (form.elements[n].type=='file' && form.elements[n].value) {
3166         send = true;
3167         break;
3168       }
3169
3170     // create hidden iframe and post upload form
3171     if (send) {
3172       var ts = new Date().getTime();
3173       var frame_name = 'rcmupload'+ts;
3174
3175       // have to do it this way for IE
3176       // otherwise the form will be posted to a new window
3177       if (document.all) {
3178         var html = '<iframe name="'+frame_name+'" src="program/blank.gif" style="width:0;height:0;visibility:hidden;"></iframe>';
3179         document.body.insertAdjacentHTML('BeforeEnd',html);
3180       }
3181       else { // for standards-compilant browsers
3182         var frame = document.createElement('iframe');
3183         frame.name = frame_name;
3184         frame.style.border = 'none';
3185         frame.style.width = 0;
3186         frame.style.height = 0;
3187         frame.style.visibility = 'hidden';
3188         document.body.appendChild(frame);
3189       }
3190
3191       // handle upload errors, parsing iframe content in onload
3192       $(frame_name).bind('load', {ts:ts}, function(e) {
3193         var d, content = '';
3194         try {
3195           if (this.contentDocument) {
3196             d = this.contentDocument;
3197           } else if (this.contentWindow) {
3198             d = this.contentWindow.document;
3199           }
3200           content = d.childNodes[0].innerHTML;
3201         } catch (e) {}
3202
3203         if (!content.match(/add2attachment/) && (!bw.opera || (rcmail.env.uploadframe && rcmail.env.uploadframe == e.data.ts))) {
3204           if (!content.match(/display_message/))
3205             rcmail.display_message(rcmail.get_label('fileuploaderror'), 'error');
3206           rcmail.remove_from_attachment_list(e.data.ts);
3207         }
3208         // Opera hack: handle double onload
3209         if (bw.opera)
3210           rcmail.env.uploadframe = e.data.ts;
3211       });
3212
3213       form.target = frame_name;
3214       form.action = this.env.comm_path+'&_action=upload&_uploadid='+ts;
3215       form.setAttribute('enctype', 'multipart/form-data');
3216       form.submit();
3217
3218       // display upload indicator and cancel button
3219       var content = this.get_label('uploading');
3220       if (this.env.loadingicon)
3221         content = '<img src="'+this.env.loadingicon+'" alt="" />'+content;
3222       if (this.env.cancelicon)
3223         content = '<a title="'+this.get_label('cancel')+'" onclick="return rcmail.cancel_attachment_upload(\''+ts+'\', \''+frame_name+'\');" href="#cancelupload"><img src="'+this.env.cancelicon+'" alt="" /></a>'+content;
3224       this.add2attachment_list(ts, { name:'', html:content, complete:false });
3225     }
3226
3227     // set reference to the form object
3228     this.gui_objects.attachmentform = form;
3229     return true;
3230   };
3231
3232   // add file name to attachment list
3233   // called from upload page
3234   this.add2attachment_list = function(name, att, upload_id)
3235   {
3236     if (!this.gui_objects.attachmentlist)
3237       return false;
3238
3239     var li = $('<li>').attr('id', name).html(att.html);
3240     var indicator;
3241
3242     // replace indicator's li
3243     if (upload_id && (indicator = document.getElementById(upload_id))) {
3244       li.replaceAll(indicator);
3245     }
3246     else { // add new li
3247       li.appendTo(this.gui_objects.attachmentlist);
3248     }
3249
3250     if (upload_id && this.env.attachments[upload_id])
3251       delete this.env.attachments[upload_id];
3252
3253     this.env.attachments[name] = att;
3254
3255     return true;
3256   };
3257
3258   this.remove_from_attachment_list = function(name)
3259   {
3260     if (this.env.attachments[name])
3261       delete this.env.attachments[name];
3262
3263     if (!this.gui_objects.attachmentlist)
3264       return false;
3265
3266     var list = this.gui_objects.attachmentlist.getElementsByTagName("li");
3267     for (i=0;i<list.length;i++)
3268       if (list[i].id == name)
3269         this.gui_objects.attachmentlist.removeChild(list[i]);
3270   };
3271
3272   this.remove_attachment = function(name)
3273   {
3274     if (name && this.env.attachments[name])
3275       this.http_post('remove-attachment', '_file='+urlencode(name));
3276
3277     return true;
3278   };
3279
3280   this.cancel_attachment_upload = function(name, frame_name)
3281   {
3282     if (!name || !frame_name)
3283       return false;
3284
3285     this.remove_from_attachment_list(name);
3286     $("iframe[name='"+frame_name+"']").remove();
3287     return false;
3288   };
3289
3290   // send remote request to add a new contact
3291   this.add_contact = function(value)
3292   {
3293     if (value)
3294       this.http_post('addcontact', '_address='+value);
3295
3296     return true;
3297   };
3298
3299   // send remote request to search mail or contacts
3300   this.qsearch = function(value)
3301   {
3302     if (value != '') {
3303       var addurl = '';
3304       if (this.message_list) {
3305         this.clear_message_list();
3306         if (this.env.search_mods) {
3307           var mods = this.env.search_mods[this.env.mailbox] ? this.env.search_mods[this.env.mailbox] : this.env.search_mods['*'];
3308           if (mods) {
3309             var head_arr = [];
3310             for (var n in mods)
3311               head_arr.push(n);
3312             addurl += '&_headers='+head_arr.join(',');
3313           }
3314         }
3315       } else if (this.contact_list) {
3316         this.contact_list.clear(true);
3317         this.show_contentframe(false);
3318       }
3319
3320       if (this.gui_objects.search_filter)
3321         addurl += '&_filter=' + this.gui_objects.search_filter.value;
3322
3323       // reset vars
3324       this.env.current_page = 1;
3325       var lock = this.set_busy(true, 'searching');
3326       this.http_request('search', '_q='+urlencode(value)
3327         + (this.env.mailbox ? '&_mbox='+urlencode(this.env.mailbox) : '')
3328         + (this.env.source ? '&_source='+urlencode(this.env.source) : '')
3329         + (this.env.group ? '&_gid='+urlencode(this.env.group) : '')
3330         + (addurl ? addurl : ''), lock);
3331     }
3332     return true;
3333   };
3334
3335   // reset quick-search form
3336   this.reset_qsearch = function()
3337   {
3338     if (this.gui_objects.qsearchbox)
3339       this.gui_objects.qsearchbox.value = '';
3340
3341     this.env.search_request = null;
3342     return true;
3343   };
3344
3345   this.sent_successfully = function(type, msg)
3346   {
3347     this.display_message(msg, type);
3348     // before redirect we need to wait some time for Chrome (#1486177)
3349     window.setTimeout(function(){ ref.list_mailbox(); }, 500);
3350   };
3351
3352
3353   /*********************************************************/
3354   /*********     keyboard live-search methods      *********/
3355   /*********************************************************/
3356
3357   // handler for keyboard events on address-fields
3358   this.ksearch_keydown = function(e, obj)
3359   {
3360     if (this.ksearch_timer)
3361       clearTimeout(this.ksearch_timer);
3362
3363     var highlight;
3364     var key = rcube_event.get_keycode(e);
3365     var mod = rcube_event.get_modifier(e);
3366
3367     switch (key) {
3368       case 38:  // key up
3369       case 40:  // key down
3370         if (!this.ksearch_pane)
3371           break;
3372
3373         var dir = key==38 ? 1 : 0;
3374
3375         highlight = document.getElementById('rcmksearchSelected');
3376         if (!highlight)
3377           highlight = this.ksearch_pane.__ul.firstChild;
3378
3379         if (highlight)
3380           this.ksearch_select(dir ? highlight.previousSibling : highlight.nextSibling);
3381
3382         return rcube_event.cancel(e);
3383
3384       case 9:  // tab
3385         if (mod == SHIFT_KEY)
3386           break;
3387
3388      case 13:  // enter
3389         if (this.ksearch_selected===null || !this.ksearch_input || !this.ksearch_value)
3390           break;
3391
3392         // insert selected address and hide ksearch pane
3393         this.insert_recipient(this.ksearch_selected);
3394         this.ksearch_hide();
3395
3396         return rcube_event.cancel(e);
3397
3398       case 27:  // escape
3399         this.ksearch_hide();
3400         break;
3401
3402       case 37:  // left
3403       case 39:  // right
3404         if (mod != SHIFT_KEY)
3405               return;
3406     }
3407
3408     // start timer
3409     this.ksearch_timer = window.setTimeout(function(){ ref.ksearch_get_results(); }, 200);
3410     this.ksearch_input = obj;
3411
3412     return true;
3413   };
3414
3415   this.ksearch_select = function(node)
3416   {
3417     var current = $('#rcmksearchSelected');
3418     if (current[0] && node) {
3419       current.removeAttr('id').removeClass('selected');
3420     }
3421
3422     if (node) {
3423       $(node).attr('id', 'rcmksearchSelected').addClass('selected');
3424       this.ksearch_selected = node._rcm_id;
3425     }
3426   };
3427
3428   this.insert_recipient = function(id)
3429   {
3430     if (!this.env.contacts[id] || !this.ksearch_input)
3431       return;
3432
3433     // get cursor pos
3434     var inp_value = this.ksearch_input.value,
3435       cpos = this.get_caret_pos(this.ksearch_input),
3436       p = inp_value.lastIndexOf(this.ksearch_value, cpos),
3437       insert = '',
3438
3439       // replace search string with full address
3440       pre = inp_value.substring(0, p),
3441       end = inp_value.substring(p+this.ksearch_value.length, inp_value.length);
3442
3443     // insert all members of a group
3444     if (typeof this.env.contacts[id] == 'object' && this.env.contacts[id].id) {
3445       insert += this.env.contacts[id].name + ', ';
3446       this.group2expand = $.extend({}, this.env.contacts[id]);
3447       this.group2expand.input = this.ksearch_input;
3448       this.http_request('group-expand', '_source='+urlencode(this.env.contacts[id].source)+'&_gid='+urlencode(this.env.contacts[id].id), false);
3449     }
3450     else if (typeof this.env.contacts[id] == 'string')
3451       insert = this.env.contacts[id] + ', ';
3452
3453     this.ksearch_input.value = pre + insert + end;
3454
3455     // set caret to insert pos
3456     cpos = p+insert.length;
3457     if (this.ksearch_input.setSelectionRange)
3458       this.ksearch_input.setSelectionRange(cpos, cpos);
3459   };
3460
3461   this.replace_group_recipients = function(id, recipients)
3462   {
3463     if (this.group2expand && this.group2expand.id == id) {
3464       this.group2expand.input.value = this.group2expand.input.value.replace(this.group2expand.name, recipients);
3465       this.group2expand = null;
3466     }
3467   };
3468
3469   // address search processor
3470   this.ksearch_get_results = function()
3471   {
3472     var inp_value = this.ksearch_input ? this.ksearch_input.value : null;
3473
3474     if (inp_value === null)
3475       return;
3476
3477     if (this.ksearch_pane && this.ksearch_pane.is(":visible"))
3478       this.ksearch_pane.hide();
3479
3480     // get string from current cursor pos to last comma
3481     var cpos = this.get_caret_pos(this.ksearch_input),
3482       p = inp_value.lastIndexOf(',', cpos-1),
3483       q = inp_value.substring(p+1, cpos),
3484       min = this.env.autocomplete_min_length;
3485
3486     // trim query string
3487     q = $.trim(q);
3488
3489     // Don't (re-)search if the last results are still active
3490     if (q == this.ksearch_value)
3491       return;
3492
3493     if (q.length < min) {
3494       if (!this.env.acinfo) {
3495         var label = this.get_label('autocompletechars');
3496         label = label.replace('$min', min);
3497         this.env.acinfo = this.display_message(label);
3498       }
3499       return;
3500     }
3501     else if (this.env.acinfo && q.length == min) {
3502       this.hide_message(this.env.acinfo);
3503     }
3504
3505     var old_value = this.ksearch_value;
3506     this.ksearch_value = q;
3507
3508     // ...string is empty
3509     if (!q.length)
3510       return;
3511
3512     // ...new search value contains old one and previous search result was empty
3513     if (old_value && old_value.length && this.env.contacts && !this.env.contacts.length && q.indexOf(old_value) == 0)
3514       return;
3515
3516     var lock = this.display_message(this.get_label('searching'), 'loading');
3517     this.http_post('autocomplete', '_search='+urlencode(q), lock);
3518   };
3519
3520   this.ksearch_query_results = function(results, search)
3521   {
3522     // ignore this outdated search response
3523     if (this.ksearch_value && search != this.ksearch_value)
3524       return;
3525
3526     this.env.contacts = results ? results : [];
3527     this.ksearch_display_results(this.env.contacts);
3528   };
3529
3530   this.ksearch_display_results = function (a_results)
3531   {
3532     // display search results
3533     if (a_results.length && this.ksearch_input && this.ksearch_value) {
3534       var p, ul, li, text, s_val = this.ksearch_value;
3535
3536       // create results pane if not present
3537       if (!this.ksearch_pane) {
3538         ul = $('<ul>');
3539         this.ksearch_pane = $('<div>').attr('id', 'rcmKSearchpane').css({ position:'absolute', 'z-index':30000 }).append(ul).appendTo(document.body);
3540         this.ksearch_pane.__ul = ul[0];
3541       }
3542
3543       // remove all search results
3544       ul = this.ksearch_pane.__ul;
3545       ul.innerHTML = '';
3546
3547       // add each result line to list
3548       for (i=0; i < a_results.length; i++) {
3549         text = typeof a_results[i] == 'object' ? a_results[i].name : a_results[i];
3550         li = document.createElement('LI');
3551         li.innerHTML = text.replace(new RegExp('('+RegExp.escape(s_val)+')', 'ig'), '##$1%%').replace(/</g, '&lt;').replace(/>/g, '&gt;').replace(/##([^%]+)%%/g, '<b>$1</b>');
3552         li.onmouseover = function(){ ref.ksearch_select(this); };
3553         li.onmouseup = function(){ ref.ksearch_click(this) };
3554         li._rcm_id = i;
3555         ul.appendChild(li);
3556       }
3557
3558       // select the first
3559       $(ul.firstChild).attr('id', 'rcmksearchSelected').addClass('selected');
3560       this.ksearch_selected = 0;
3561
3562       // move the results pane right under the input box and make it visible
3563       var pos = $(this.ksearch_input).offset();
3564       this.ksearch_pane.css({ left:pos.left+'px', top:(pos.top + this.ksearch_input.offsetHeight)+'px' }).show();
3565     }
3566     // hide results pane
3567     else
3568       this.ksearch_hide();
3569   };
3570
3571   this.ksearch_click = function(node)
3572   {
3573     if (this.ksearch_input)
3574       this.ksearch_input.focus();
3575
3576     this.insert_recipient(node._rcm_id);
3577     this.ksearch_hide();
3578   };
3579
3580   this.ksearch_blur = function()
3581   {
3582     if (this.ksearch_timer)
3583       clearTimeout(this.ksearch_timer);
3584
3585     this.ksearch_value = '';
3586     this.ksearch_input = null;
3587     this.ksearch_hide();
3588   };
3589
3590
3591   this.ksearch_hide = function()
3592   {
3593     this.ksearch_selected = null;
3594
3595     if (this.ksearch_pane)
3596       this.ksearch_pane.hide();
3597   };
3598
3599
3600   /*********************************************************/
3601   /*********         address book methods          *********/
3602   /*********************************************************/
3603
3604   this.contactlist_keypress = function(list)
3605   {
3606     if (list.key_pressed == list.DELETE_KEY)
3607       this.command('delete');
3608   };
3609
3610   this.contactlist_select = function(list)
3611   {
3612     if (this.preview_timer)
3613       clearTimeout(this.preview_timer);
3614
3615     var id, frame, ref = this;
3616     if (id = list.get_single_selection())
3617       this.preview_timer = window.setTimeout(function(){ ref.load_contact(id, 'show'); }, 200);
3618     else if (this.env.contentframe)
3619       this.show_contentframe(false);
3620
3621     this.enable_command('compose', list.selection.length > 0);
3622     this.enable_command('edit', (id && this.env.address_sources && !this.env.address_sources[this.env.source].readonly) ? true : false);
3623     this.enable_command('delete', list.selection.length && this.env.address_sources && !this.env.address_sources[this.env.source].readonly);
3624
3625     return false;
3626   };
3627
3628   this.list_contacts = function(src, group, page)
3629   {
3630     var add_url = '',
3631       target = window;
3632
3633     if (!src)
3634       src = this.env.source;
3635
3636     if (page && this.current_page == page && src == this.env.source && group == this.env.group)
3637       return false;
3638
3639     if (src != this.env.source) {
3640       page = this.env.current_page = 1;
3641       this.reset_qsearch();
3642     }
3643     else if (group != this.env.group)
3644       page = this.env.current_page = 1;
3645
3646     this.select_folder((group ? 'G'+src+group : src), (this.env.group ? 'G'+this.env.source+this.env.group : this.env.source));
3647
3648     this.env.source = src;
3649     this.env.group = group;
3650
3651     // load contacts remotely
3652     if (this.gui_objects.contactslist) {
3653       this.list_contacts_remote(src, group, page);
3654       return;
3655     }
3656
3657     if (this.env.contentframe && window.frames && window.frames[this.env.contentframe]) {
3658       target = window.frames[this.env.contentframe];
3659       add_url = '&_framed=1';
3660     }
3661
3662     if (group)
3663       add_url += '&_gid='+group;
3664     if (page)
3665       add_url += '&_page='+page;
3666
3667     // also send search request to get the correct listing
3668     if (this.env.search_request)
3669       add_url += '&_search='+this.env.search_request;
3670
3671     this.set_busy(true, 'loading');
3672     target.location.href = this.env.comm_path + (src ? '&_source='+urlencode(src) : '') + add_url;
3673   };
3674
3675   // send remote request to load contacts list
3676   this.list_contacts_remote = function(src, group, page)
3677   {
3678     // clear message list first
3679     this.contact_list.clear(true);
3680     this.show_contentframe(false);
3681     this.enable_command('delete', 'compose', false);
3682
3683     // send request to server
3684     var url = (src ? '_source='+urlencode(src) : '') + (page ? (src?'&':'') + '_page='+page : ''),
3685       lock = this.set_busy(true, 'loading');
3686
3687     this.env.source = src;
3688     this.env.group = group;
3689
3690     if (group)
3691       url += '&_gid='+group;
3692
3693     // also send search request to get the right messages 
3694     if (this.env.search_request) 
3695       url += '&_search='+this.env.search_request;
3696
3697     this.http_request('list', url, lock);
3698   };
3699
3700   // load contact record
3701   this.load_contact = function(cid, action, framed)
3702   {
3703     var add_url = '', target = window;
3704
3705     if (this.env.contentframe && window.frames && window.frames[this.env.contentframe]) {
3706       add_url = '&_framed=1';
3707       target = window.frames[this.env.contentframe];
3708       this.show_contentframe(true);
3709     }
3710     else if (framed)
3711       return false;
3712
3713     if (action && (cid || action=='add') && !this.drag_active) {
3714       if (this.env.group)
3715         add_url += '&_gid='+urlencode(this.env.group);
3716
3717       this.set_busy(true);
3718       target.location.href = this.env.comm_path+'&_action='+action+'&_source='+urlencode(this.env.source)+'&_cid='+urlencode(cid) + add_url;
3719     }
3720     return true;
3721   };
3722
3723   // copy a contact to the specified target (group or directory)
3724   this.copy_contact = function(cid, to)
3725   {
3726     if (!cid)
3727       cid = this.contact_list.get_selection().join(',');
3728
3729     if (to.type == 'group' && to.source == this.env.source) {
3730       this.http_post('group-addmembers', '_cid='+urlencode(cid)
3731         + '&_source='+urlencode(this.env.source)
3732         + '&_gid='+urlencode(to.id));
3733     }
3734     else if (to.type == 'group' && !this.env.address_sources[to.source].readonly) {
3735       this.http_post('copy', '_cid='+urlencode(cid)
3736         + '&_source='+urlencode(this.env.source)
3737         + '&_to='+urlencode(to.source)
3738         + '&_togid='+urlencode(to.id)
3739         + (this.env.group ? '&_gid='+urlencode(this.env.group) : ''));
3740     }
3741     else if (to.id != this.env.source && cid && this.env.address_sources[to.id] && !this.env.address_sources[to.id].readonly) {
3742       this.http_post('copy', '_cid='+urlencode(cid)
3743         + '&_source='+urlencode(this.env.source)
3744         + '&_to='+urlencode(to.id)
3745         + (this.env.group ? '&_gid='+urlencode(this.env.group) : ''));
3746     }
3747   };
3748
3749   this.delete_contacts = function()
3750   {
3751     // exit if no mailbox specified or if selection is empty
3752     var selection = this.contact_list.get_selection();
3753     if (!(selection.length || this.env.cid) || !confirm(this.get_label('deletecontactconfirm')))
3754       return;
3755
3756     var id, a_cids = [], qs = '';
3757
3758     if (this.env.cid)
3759       a_cids.push(this.env.cid);
3760     else {
3761       for (var n=0; n<selection.length; n++) {
3762         id = selection[n];
3763         a_cids.push(id);
3764         this.contact_list.remove_row(id, (n == selection.length-1));
3765       }
3766
3767       // hide content frame if we delete the currently displayed contact
3768       if (selection.length == 1)
3769         this.show_contentframe(false);
3770     }
3771
3772     if (this.env.group)
3773       qs += '&_gid='+urlencode(this.env.group);
3774
3775     // also send search request to get the right records from the next page
3776     if (this.env.search_request) 
3777       qs += '&_search='+this.env.search_request;
3778
3779     // send request to server
3780     this.http_post('delete', '_cid='+urlencode(a_cids.join(','))+'&_source='+urlencode(this.env.source)+'&_from='+(this.env.action ? this.env.action : '')+qs);
3781
3782     return true;
3783   };
3784
3785   // update a contact record in the list
3786   this.update_contact_row = function(cid, cols_arr, newcid)
3787   {
3788     var row;
3789     if (this.contact_list.rows[cid] && (row = this.contact_list.rows[cid].obj)) {
3790       for (var c=0; c<cols_arr.length; c++)
3791         if (row.cells[c])
3792           $(row.cells[c]).html(cols_arr[c]);
3793
3794       // cid change
3795       if (newcid) {
3796         row.id = 'rcmrow' + newcid;
3797         this.contact_list.remove_row(cid);
3798         this.contact_list.init_row(row);
3799         this.contact_list.selection[0] = newcid;
3800         row.style.display = '';
3801       }
3802
3803       return true;
3804     }
3805
3806     return false;
3807   };
3808
3809   // add row to contacts list
3810   this.add_contact_row = function(cid, cols, select)
3811   {
3812     if (!this.gui_objects.contactslist || !this.gui_objects.contactslist.tBodies[0])
3813       return false;
3814
3815     var tbody = this.gui_objects.contactslist.tBodies[0],
3816       rowcount = tbody.rows.length,
3817       even = rowcount%2,
3818       row = document.createElement('tr');
3819
3820     row.id = 'rcmrow'+cid;
3821     row.className = 'contact '+(even ? 'even' : 'odd');
3822
3823     if (this.contact_list.in_selection(cid))
3824       row.className += ' selected';
3825
3826     // add each submitted col
3827     for (var c in cols) {
3828       col = document.createElement('td');
3829       col.className = String(c).toLowerCase();
3830       col.innerHTML = cols[c];
3831       row.appendChild(col);
3832     }
3833
3834     this.contact_list.insert_row(row);
3835
3836     this.enable_command('export', (this.contact_list.rowcount > 0));
3837   };
3838
3839   this.group_create = function()
3840   {
3841     if (!this.gui_objects.folderlist || !this.env.address_sources[this.env.source].groups)
3842       return;
3843
3844     if (!this.name_input) {
3845       this.name_input = $('<input>').attr('type', 'text');
3846       this.name_input.bind('keydown', function(e){ return rcmail.add_input_keydown(e); });
3847       this.name_input_li = $('<li>').addClass('contactgroup').append(this.name_input);
3848
3849       var li = this.get_folder_li(this.env.source)
3850       this.name_input_li.insertAfter(li);
3851     }
3852
3853     this.name_input.select().focus();
3854   };
3855
3856   this.group_rename = function()
3857   {
3858     if (!this.env.group || !this.gui_objects.folderlist)
3859       return;
3860
3861     if (!this.name_input) {
3862       this.enable_command('list', 'listgroup', false);
3863       this.name_input = $('<input>').attr('type', 'text').val(this.env.contactgroups['G'+this.env.source+this.env.group].name);
3864       this.name_input.bind('keydown', function(e){ return rcmail.add_input_keydown(e); });
3865       this.env.group_renaming = true;
3866
3867       var link, li = this.get_folder_li(this.env.source+this.env.group, 'rcmliG');
3868       if (li && (link = li.firstChild)) {
3869         $(link).hide().before(this.name_input);
3870       }
3871     }
3872
3873     this.name_input.select().focus();
3874   };
3875
3876   this.group_delete = function()
3877   {
3878     if (this.env.group)
3879       this.http_post('group-delete', '_source='+urlencode(this.env.source)+'&_gid='+urlencode(this.env.group), true);
3880   };
3881
3882   // callback from server upon group-delete command
3883   this.remove_group_item = function(prop)
3884   {
3885     var li, key = 'G'+prop.source+prop.id;
3886     if ((li = this.get_folder_li(key))) {
3887       this.triggerEvent('group_delete', { source:prop.source, id:prop.id, li:li });
3888
3889       li.parentNode.removeChild(li);
3890       delete this.env.contactfolders[key];
3891       delete this.env.contactgroups[key];
3892     }
3893
3894     this.list_contacts(prop.source, 0);
3895   };
3896
3897   // handler for keyboard events on the input field
3898   this.add_input_keydown = function(e)
3899   {
3900     var key = rcube_event.get_keycode(e);
3901
3902     // enter
3903     if (key == 13) {
3904       var newname = this.name_input.val();
3905
3906       if (newname) {
3907         var lock = this.set_busy(true, 'loading');
3908         if (this.env.group_renaming)
3909           this.http_post('group-rename', '_source='+urlencode(this.env.source)+'&_gid='+urlencode(this.env.group)+'&_name='+urlencode(newname), lock);
3910         else
3911           this.http_post('group-create', '_source='+urlencode(this.env.source)+'&_name='+urlencode(newname), lock);
3912       }
3913       return false;
3914     }
3915     // escape
3916     else if (key == 27)
3917       this.reset_add_input();
3918
3919     return true;
3920   };
3921
3922   this.reset_add_input = function()
3923   {
3924     if (this.name_input) {
3925       if (this.env.group_renaming) {
3926         var li = this.name_input.parent();
3927         li.children().last().show();
3928         this.env.group_renaming = false;
3929       }
3930
3931       this.name_input.remove();
3932
3933       if (this.name_input_li)
3934         this.name_input_li.remove();
3935
3936       this.name_input = this.name_input_li = null;
3937     }
3938
3939     this.enable_command('list', 'listgroup', true);
3940   };
3941
3942   // callback for creating a new contact group
3943   this.insert_contact_group = function(prop)
3944   {
3945     this.reset_add_input();
3946
3947     prop.type = 'group';
3948     var key = 'G'+prop.source+prop.id;
3949     this.env.contactfolders[key] = this.env.contactgroups[key] = prop;
3950
3951     var link = $('<a>').attr('href', '#')
3952       .bind('click', function() { return rcmail.command('listgroup', prop, this);})
3953       .html(prop.name);
3954     var li = $('<li>').attr('id', 'rcmli'+key)
3955       .addClass('contactgroup')
3956       .append(link)
3957       .insertAfter(this.get_folder_li(prop.source));
3958
3959     this.triggerEvent('group_insert', { id:prop.id, source:prop.source, name:prop.name, li:li[0] });
3960   };
3961
3962   // callback for renaming a contact group
3963   this.update_contact_group = function(prop)
3964   {
3965     this.reset_add_input();
3966
3967     var key = 'G'+prop.source+prop.id, link, li = this.get_folder_li(key);
3968
3969     if (li && (link = li.firstChild) && link.tagName.toLowerCase() == 'a')
3970       link.innerHTML = prop.name;
3971
3972     this.env.contactfolders[key].name = this.env.contactgroups[key].name = prop.name;
3973     this.triggerEvent('group_update', { id:prop.id, source:prop.source, name:prop.name, li:li[0] });
3974   };
3975
3976
3977   /*********************************************************/
3978   /*********        user settings methods          *********/
3979   /*********************************************************/
3980
3981   this.init_subscription_list = function()
3982   {
3983     var p = this;
3984     this.subscription_list = new rcube_list_widget(this.gui_objects.subscriptionlist,
3985       {multiselect:false, draggable:true, keyboard:false, toggleselect:true});
3986     this.subscription_list.addEventListener('select', function(o){ p.subscription_select(o); });
3987     this.subscription_list.addEventListener('dragstart', function(o){ p.drag_active = true; });
3988     this.subscription_list.addEventListener('dragend', function(o){ p.subscription_move_folder(o); });
3989     this.subscription_list.row_init = function (row) {
3990       row.obj.onmouseover = function() { p.focus_subscription(row.id); };
3991       row.obj.onmouseout = function() { p.unfocus_subscription(row.id); };
3992     };
3993     this.subscription_list.init();
3994   };
3995
3996   // preferences section select and load options frame
3997   this.section_select = function(list)
3998   {
3999     var id = list.get_single_selection();
4000
4001     if (id) {
4002       var add_url = '', target = window;
4003       this.set_busy(true);
4004
4005       if (this.env.contentframe && window.frames && window.frames[this.env.contentframe]) {
4006         add_url = '&_framed=1';
4007         target = window.frames[this.env.contentframe];
4008       }
4009       target.location.href = this.env.comm_path+'&_action=edit-prefs&_section='+id+add_url;
4010     }
4011
4012     return true;
4013   };
4014
4015   this.identity_select = function(list)
4016   {
4017     var id;
4018     if (id = list.get_single_selection())
4019       this.load_identity(id, 'edit-identity');
4020   };
4021
4022   // load identity record
4023   this.load_identity = function(id, action)
4024   {
4025     if (action=='edit-identity' && (!id || id==this.env.iid))
4026       return false;
4027
4028     var add_url = '', target = window;
4029
4030     if (this.env.contentframe && window.frames && window.frames[this.env.contentframe]) {
4031       add_url = '&_framed=1';
4032       target = window.frames[this.env.contentframe];
4033       document.getElementById(this.env.contentframe).style.visibility = 'inherit';
4034     }
4035
4036     if (action && (id || action=='add-identity')) {
4037       this.set_busy(true);
4038       target.location.href = this.env.comm_path+'&_action='+action+'&_iid='+id+add_url;
4039     }
4040
4041     return true;
4042   };
4043
4044   this.delete_identity = function(id)
4045   {
4046     // exit if no mailbox specified or if selection is empty
4047     var selection = this.identity_list.get_selection();
4048     if (!(selection.length || this.env.iid))
4049       return;
4050
4051     if (!id)
4052       id = this.env.iid ? this.env.iid : selection[0];
4053
4054     // append token to request
4055     this.goto_url('delete-identity', '_iid='+id+'&_token='+this.env.request_token, true);
4056
4057     return true;
4058   };
4059
4060   this.focus_subscription = function(id)
4061   {
4062     var row, folder,
4063       delim = RegExp.escape(this.env.delimiter),
4064       reg = RegExp('['+delim+']?[^'+delim+']+$');
4065
4066     if (this.drag_active && this.env.mailbox && (row = document.getElementById(id)))
4067       if (this.env.subscriptionrows[id] &&
4068           (folder = this.env.subscriptionrows[id][0])) {
4069         if (this.check_droptarget(folder) &&
4070             !this.env.subscriptionrows[this.get_folder_row_id(this.env.mailbox)][2] &&
4071             (folder != this.env.mailbox.replace(reg, '')) &&
4072             (!folder.match(new RegExp('^'+RegExp.escape(this.env.mailbox+this.env.delimiter))))) {
4073           this.set_env('dstfolder', folder);
4074           $(row).addClass('droptarget');
4075         }
4076       }
4077       else if (this.env.mailbox.match(new RegExp(delim))) {
4078         this.set_env('dstfolder', this.env.delimiter);
4079         $(this.subscription_list.frame).addClass('droptarget');
4080       }
4081   };
4082
4083   this.unfocus_subscription = function(id)
4084   {
4085     var row = $('#'+id);
4086
4087     this.set_env('dstfolder', null);
4088     if (this.env.subscriptionrows[id] && row[0])
4089       row.removeClass('droptarget');
4090     else
4091       $(this.subscription_list.frame).removeClass('droptarget');
4092   };
4093
4094   this.subscription_select = function(list)
4095   {
4096     var id, folder;
4097
4098     if (list && (id = list.get_single_selection()) &&
4099         (folder = this.env.subscriptionrows['rcmrow'+id])
4100     ) {
4101       this.set_env('mailbox', folder[0]);
4102       this.show_folder(folder[0]);
4103       this.enable_command('delete-folder', !folder[2]);
4104     }
4105     else {
4106       this.env.mailbox = null;
4107       this.show_contentframe(false);
4108       this.enable_command('delete-folder', 'purge', false);
4109     }
4110   };
4111
4112   this.subscription_move_folder = function(list)
4113   {
4114     var delim = RegExp.escape(this.env.delimiter),
4115       reg = RegExp('['+delim+']?[^'+delim+']+$');
4116
4117     if (this.env.mailbox && this.env.dstfolder && (this.env.dstfolder != this.env.mailbox) &&
4118         (this.env.dstfolder != this.env.mailbox.replace(reg, ''))
4119     ) {
4120       reg = new RegExp('[^'+delim+']*['+delim+']', 'g');
4121       var lock = this.set_busy(true, 'foldermoving'),
4122         basename = this.env.mailbox.replace(reg, ''),
4123         newname = this.env.dstfolder==this.env.delimiter ? basename : this.env.dstfolder+this.env.delimiter+basename;
4124
4125       this.http_post('rename-folder', '_folder_oldname='+urlencode(this.env.mailbox)+'&_folder_newname='+urlencode(newname), lock);
4126     }
4127     this.drag_active = false;
4128     this.unfocus_subscription(this.get_folder_row_id(this.env.dstfolder));
4129   };
4130
4131   // tell server to create and subscribe a new mailbox
4132   this.create_folder = function()
4133   {
4134     this.show_folder('', this.env.mailbox);
4135   };
4136
4137   // delete a specific mailbox with all its messages
4138   this.delete_folder = function(name)
4139   {
4140     var id = this.get_folder_row_id(name ? name : this.env.mailbox),
4141       folder = this.env.subscriptionrows[id][0];
4142
4143     if (folder && confirm(this.get_label('deletefolderconfirm'))) {
4144       var lock = this.set_busy(true, 'folderdeleting');
4145       this.http_post('delete-folder', '_mbox='+urlencode(folder), lock);
4146     }
4147   };
4148
4149   // add a new folder to the subscription list by cloning a folder row
4150   this.add_folder_row = function(name, display_name, replace, before)
4151   {
4152     if (!this.gui_objects.subscriptionlist)
4153       return false;
4154
4155     // find not protected folder
4156     var refid;
4157     for (var rid in this.env.subscriptionrows) {
4158       if (this.env.subscriptionrows[rid]!=null && !this.env.subscriptionrows[rid][2]) {
4159         refid = rid;
4160         break;
4161       }
4162     }
4163
4164     var refrow, form,
4165       tbody = this.gui_objects.subscriptionlist.tBodies[0],
4166       id = 'rcmrow'+(tbody.childNodes.length+1),
4167       selection = this.subscription_list.get_single_selection();
4168
4169     if (replace && replace.id) {
4170       id = replace.id;
4171       refid = replace.id;
4172     }
4173
4174     if (!id || !refid || !(refrow = document.getElementById(refid))) {
4175       // Refresh page if we don't have a table row to clone
4176       this.goto_url('folders');
4177       return false;
4178     }
4179
4180     // clone a table row if there are existing rows
4181     var row = this.clone_table_row(refrow);
4182     row.id = id;
4183
4184     if (before && (before = this.get_folder_row_id(before)))
4185       tbody.insertBefore(row, document.getElementById(before));
4186     else
4187       tbody.appendChild(row);
4188
4189     if (replace)
4190       tbody.removeChild(replace);
4191
4192     // add to folder/row-ID map
4193     this.env.subscriptionrows[row.id] = [name, display_name, 0];
4194
4195     // set folder name
4196     row.cells[0].innerHTML = display_name;
4197
4198     if (!replace) {
4199       // set messages count to zero
4200       row.cells[1].innerHTML = '*';
4201
4202       // update subscription checkbox
4203       $('input[name="_subscribed[]"]', row).val(name).attr('checked', true);
4204     }
4205
4206     this.init_subscription_list();
4207     if (selection && document.getElementById('rcmrow'+selection))
4208       this.subscription_list.select_row(selection);
4209
4210     if (document.getElementById(id).scrollIntoView)
4211       document.getElementById(id).scrollIntoView();
4212   };
4213
4214   // replace an existing table row with a new folder line
4215   this.replace_folder_row = function(oldfolder, newfolder, display_name, before)
4216   {
4217     var id = this.get_folder_row_id(oldfolder),
4218       row = document.getElementById(id);
4219
4220     // replace an existing table row (if found)
4221     this.add_folder_row(newfolder, display_name, row, before);
4222   };
4223
4224   // remove the table row of a specific mailbox from the table
4225   // (the row will not be removed, just hidden)
4226   this.remove_folder_row = function(folder)
4227   {
4228     var row, id = this.get_folder_row_id(folder);
4229
4230     if (id && (row = document.getElementById(id)))
4231       row.style.display = 'none';
4232   };
4233
4234   this.subscribe = function(folder)
4235   {
4236     if (folder) {
4237       var lock = this.display_message(this.get_label('foldersubscribing'), 'loading');
4238       this.http_post('subscribe', '_mbox='+urlencode(folder), lock);
4239     }
4240   };
4241
4242   this.unsubscribe = function(folder)
4243   {
4244     if (folder) {
4245       var lock = this.display_message(this.get_label('folderunsubscribing'), 'loading');
4246       this.http_post('unsubscribe', '_mbox='+urlencode(folder), lock);
4247     }
4248   };
4249
4250   // helper method to find a specific mailbox row ID
4251   this.get_folder_row_id = function(folder)
4252   {
4253     for (var id in this.env.subscriptionrows)
4254       if (this.env.subscriptionrows[id] && this.env.subscriptionrows[id][0] == folder)
4255         break;
4256
4257     return id;
4258   };
4259
4260   // duplicate a specific table row
4261   this.clone_table_row = function(row)
4262   {
4263     var cell, td,
4264       new_row = document.createElement('tr');
4265
4266     for (var n=0; n<row.cells.length; n++) {
4267       cell = row.cells[n];
4268       td = document.createElement('td');
4269
4270       if (cell.className)
4271         td.className = cell.className;
4272       if (cell.align)
4273         td.setAttribute('align', cell.align);
4274
4275       td.innerHTML = cell.innerHTML;
4276       new_row.appendChild(td);
4277     }
4278
4279     return new_row;
4280   };
4281
4282   // when user select a folder in manager
4283   this.show_folder = function(folder, path, force)
4284   {
4285     var target = window,
4286       url = '&_action=edit-folder&_mbox='+urlencode(folder);
4287
4288     if (path)
4289       url += '&_path='+urlencode(path);
4290
4291     if (this.env.contentframe && window.frames && window.frames[this.env.contentframe]) {
4292       target = window.frames[this.env.contentframe];
4293       url += '&_framed=1';
4294     }
4295
4296     if (String(target.location.href).indexOf(url) >= 0 && !force) {
4297       this.show_contentframe(true);
4298     }
4299     else {
4300       if (!this.env.frame_lock) {
4301         (parent.rcmail ? parent.rcmail : this).env.frame_lock = this.set_busy(true, 'loading');
4302       }
4303       target.location.href = this.env.comm_path+url;
4304     }
4305   };
4306
4307   // disables subscription checkbox (for protected folder)
4308   this.disable_subscription = function(folder)
4309   {
4310     var id = this.get_folder_row_id(folder);
4311     if (id)
4312       $('input[name="_subscribed[]"]', $('#'+id)).attr('disabled', true);
4313   };
4314
4315   this.folder_size = function(folder)
4316   {
4317     var lock = this.set_busy(true, 'loading');
4318     this.http_post('folder-size', '_mbox='+urlencode(folder), lock);
4319   };
4320
4321   this.folder_size_update = function(size)
4322   {
4323     $('#folder-size').replaceWith(size);
4324   };
4325
4326
4327   /*********************************************************/
4328   /*********           GUI functionality           *********/
4329   /*********************************************************/
4330
4331   // enable/disable buttons for page shifting
4332   this.set_page_buttons = function()
4333   {
4334     this.enable_command('nextpage', 'lastpage', (this.env.pagecount > this.env.current_page));
4335     this.enable_command('previouspage', 'firstpage', (this.env.current_page > 1));
4336   };
4337
4338   // set event handlers on registered buttons
4339   this.init_buttons = function()
4340   {
4341     for (var cmd in this.buttons) {
4342       if (typeof cmd != 'string')
4343         continue;
4344
4345       for (var i=0; i< this.buttons[cmd].length; i++) {
4346         var prop = this.buttons[cmd][i];
4347         var elm = document.getElementById(prop.id);
4348         if (!elm)
4349           continue;
4350
4351         var preload = false;
4352         if (prop.type == 'image') {
4353           elm = elm.parentNode;
4354           preload = true;
4355         }
4356
4357         elm._command = cmd;
4358         elm._id = prop.id;
4359         if (prop.sel) {
4360           elm.onmousedown = function(e){ return rcmail.button_sel(this._command, this._id); };
4361           elm.onmouseup = function(e){ return rcmail.button_out(this._command, this._id); };
4362           if (preload)
4363             new Image().src = prop.sel;
4364         }
4365         if (prop.over) {
4366           elm.onmouseover = function(e){ return rcmail.button_over(this._command, this._id); };
4367           elm.onmouseout = function(e){ return rcmail.button_out(this._command, this._id); };
4368           if (preload)
4369             new Image().src = prop.over;
4370         }
4371       }
4372     }
4373   };
4374
4375   // set button to a specific state
4376   this.set_button = function(command, state)
4377   {
4378     var button, obj, a_buttons = this.buttons[command];
4379
4380     if (!a_buttons || !a_buttons.length)
4381       return false;
4382
4383     for (var n=0; n<a_buttons.length; n++) {
4384       button = a_buttons[n];
4385       obj = document.getElementById(button.id);
4386
4387       // get default/passive setting of the button
4388       if (obj && button.type=='image' && !button.status) {
4389         button.pas = obj._original_src ? obj._original_src : obj.src;
4390         // respect PNG fix on IE browsers
4391         if (obj.runtimeStyle && obj.runtimeStyle.filter && obj.runtimeStyle.filter.match(/src=['"]([^'"]+)['"]/))
4392           button.pas = RegExp.$1;
4393       }
4394       else if (obj && !button.status)
4395         button.pas = String(obj.className);
4396
4397       // set image according to button state
4398       if (obj && button.type=='image' && button[state]) {
4399         button.status = state;
4400         obj.src = button[state];
4401       }
4402       // set class name according to button state
4403       else if (obj && typeof(button[state])!='undefined') {
4404         button.status = state;
4405         obj.className = button[state];
4406       }
4407       // disable/enable input buttons
4408       if (obj && button.type=='input') {
4409         button.status = state;
4410         obj.disabled = !state;
4411       }
4412     }
4413   };
4414
4415   // display a specific alttext
4416   this.set_alttext = function(command, label)
4417   {
4418     if (!this.buttons[command] || !this.buttons[command].length)
4419       return;
4420
4421     var button, obj, link;
4422     for (var n=0; n<this.buttons[command].length; n++) {
4423       button = this.buttons[command][n];
4424       obj = document.getElementById(button.id);
4425
4426       if (button.type=='image' && obj) {
4427         obj.setAttribute('alt', this.get_label(label));
4428         if ((link = obj.parentNode) && link.tagName.toLowerCase() == 'a')
4429           link.setAttribute('title', this.get_label(label));
4430       }
4431       else if (obj)
4432         obj.setAttribute('title', this.get_label(label));
4433     }
4434   };
4435
4436   // mouse over button
4437   this.button_over = function(command, id)
4438   {
4439     var button, elm, a_buttons = this.buttons[command];
4440
4441     if (!a_buttons || !a_buttons.length)
4442       return false;
4443
4444     for (var n=0; n<a_buttons.length; n++) {
4445       button = a_buttons[n];
4446       if (button.id == id && button.status == 'act') {
4447         elm = document.getElementById(button.id);
4448         if (elm && button.over) {
4449           if (button.type == 'image')
4450             elm.src = button.over;
4451           else
4452             elm.className = button.over;
4453         }
4454       }
4455     }
4456   };
4457
4458   // mouse down on button
4459   this.button_sel = function(command, id)
4460   {
4461     var button, elm, a_buttons = this.buttons[command];
4462
4463     if (!a_buttons || !a_buttons.length)
4464       return;
4465
4466     for (var n=0; n<a_buttons.length; n++) {
4467       button = a_buttons[n];
4468       if (button.id == id && button.status == 'act') {
4469         elm = document.getElementById(button.id);
4470         if (elm && button.sel) {
4471           if (button.type == 'image')
4472             elm.src = button.sel;
4473           else
4474             elm.className = button.sel;
4475         }
4476         this.buttons_sel[id] = command;
4477       }
4478     }
4479   };
4480
4481   // mouse out of button
4482   this.button_out = function(command, id)
4483   {
4484     var button, elm, a_buttons = this.buttons[command];
4485
4486     if (!a_buttons || !a_buttons.length)
4487       return;
4488
4489     for (var n=0; n<a_buttons.length; n++) {
4490       button = a_buttons[n];
4491       if (button.id == id && button.status == 'act') {
4492         elm = document.getElementById(button.id);
4493         if (elm && button.act) {
4494           if (button.type == 'image')
4495             elm.src = button.act;
4496           else
4497             elm.className = button.act;
4498         }
4499       }
4500     }
4501   };
4502
4503   // write to the document/window title
4504   this.set_pagetitle = function(title)
4505   {
4506     if (title && document.title)
4507       document.title = title;
4508   };
4509
4510   // display a system message, list of types in common.css (below #message definition)
4511   this.display_message = function(msg, type)
4512   {
4513     // pass command to parent window
4514     if (this.is_framed())
4515       return parent.rcmail.display_message(msg, type);
4516
4517     if (!this.gui_objects.message) {
4518       // save message in order to display after page loaded
4519       if (type != 'loading')
4520         this.pending_message = new Array(msg, type);
4521       return false;
4522     }
4523
4524     type = type ? type : 'notice';
4525
4526     var ref = this,
4527       key = msg,
4528       date = new Date(),
4529       id = type + date.getTime(),
4530       timeout = this.message_time * (type == 'error' || type == 'warning' ? 2 : 1);
4531       
4532     if (type == 'loading') {
4533       key = 'loading';
4534       timeout = this.env.request_timeout * 1000;
4535       if (!msg)
4536         msg = this.get_label('loading');
4537     }
4538
4539     // The same message is already displayed
4540     if (this.messages[key]) {
4541       // replace label
4542       if (this.messages[key].obj)
4543         this.messages[key].obj.html(msg);
4544       // store label in stack
4545       if (type == 'loading') {
4546         this.messages[key].labels.push({'id': id, 'msg': msg});
4547       }
4548       // add element and set timeout
4549       this.messages[key].elements.push(id);
4550       window.setTimeout(function() { ref.hide_message(id, type == 'loading'); }, timeout);
4551       return id;
4552     }
4553
4554     // create DOM object and display it
4555     var obj = $('<div>').addClass(type).html(msg).data('key', key),
4556       cont = $(this.gui_objects.message).append(obj).show();
4557
4558     this.messages[key] = {'obj': obj, 'elements': [id]};
4559
4560     if (type == 'loading') {
4561       this.messages[key].labels = [{'id': id, 'msg': msg}];
4562     }
4563     else {
4564       obj.click(function() { return ref.hide_message(obj); });
4565     }
4566
4567     window.setTimeout(function() { ref.hide_message(id, type == 'loading'); }, timeout);
4568     return id;
4569   };
4570
4571   // make a message to disapear
4572   this.hide_message = function(obj, fade)
4573   {
4574     // pass command to parent window
4575     if (this.is_framed())
4576       return parent.rcmail.hide_message(obj, fade);
4577
4578     var k, n, i, msg, m = this.messages;
4579
4580     // Hide message by object, don't use for 'loading'!
4581     if (typeof(obj) == 'object') {
4582       $(obj)[fade?'fadeOut':'hide']();
4583       msg = $(obj).data('key');
4584       if (this.messages[msg])
4585         delete this.messages[msg];
4586     }
4587     // Hide message by id
4588     else {
4589       for (k in m) {
4590         for (n in m[k].elements) {
4591           if (m[k] && m[k].elements[n] == obj) {
4592             m[k].elements.splice(n, 1);
4593             // hide DOM element if last instance is removed
4594             if (!m[k].elements.length) {
4595               m[k].obj[fade?'fadeOut':'hide']();
4596               delete m[k];
4597             }
4598             // set pending action label for 'loading' message
4599             else if (k == 'loading') {
4600               for (i in m[k].labels) {
4601                 if (m[k].labels[i].id == obj) {
4602                   delete m[k].labels[i];
4603                 }
4604                 else {
4605                   msg = m[k].labels[i].msg;
4606                 }
4607                 m[k].obj.html(msg);
4608               }
4609             }
4610           }
4611         }
4612       }
4613     }
4614   };
4615
4616   // mark a mailbox as selected and set environment variable
4617   this.select_folder = function(name, old, prefix)
4618   {
4619     if (this.gui_objects.folderlist) {
4620       var current_li, target_li;
4621
4622       if ((current_li = this.get_folder_li(old, prefix))) {
4623         $(current_li).removeClass('selected').addClass('unfocused');
4624       }
4625       if ((target_li = this.get_folder_li(name, prefix))) {
4626         $(target_li).removeClass('unfocused').addClass('selected');
4627       }
4628
4629       // trigger event hook
4630       this.triggerEvent('selectfolder', { folder:name, old:old, prefix:prefix });
4631     }
4632   };
4633
4634   // helper method to find a folder list item
4635   this.get_folder_li = function(name, prefix)
4636   {
4637     if (!prefix)
4638       prefix = 'rcmli';
4639
4640     if (this.gui_objects.folderlist) {
4641       name = String(name).replace(this.identifier_expr, '_');
4642       return document.getElementById(prefix+name);
4643     }
4644
4645     return null;
4646   };
4647
4648   // for reordering column array (Konqueror workaround)
4649   // and for setting some message list global variables
4650   this.set_message_coltypes = function(coltypes, repl)
4651   {
4652     var list = this.message_list,
4653       thead = list ? list.list.tHead : null,
4654       cell, col, n, len, th, tr;
4655
4656     this.env.coltypes = coltypes;
4657
4658     // replace old column headers
4659     if (thead) {
4660       if (repl) {
4661         th = document.createElement('thead');
4662         tr = document.createElement('tr');
4663
4664         for (c=0, len=repl.length; c < len; c++) {
4665           cell = document.createElement('td');
4666           cell.innerHTML = repl[c].html;
4667           if (repl[c].id) cell.id = repl[c].id;
4668           if (repl[c].className) cell.className = repl[c].className;
4669           tr.appendChild(cell);
4670         }
4671         th.appendChild(tr);
4672         thead.parentNode.replaceChild(th, thead);
4673         thead = th;
4674       }
4675
4676       for (n=0, len=this.env.coltypes.length; n<len; n++) {
4677         col = this.env.coltypes[n];
4678         if ((cell = thead.rows[0].cells[n]) && (col=='from' || col=='to')) {
4679           cell.id = 'rcm'+col;
4680           // if we have links for sorting, it's a bit more complicated...
4681           if (cell.firstChild && cell.firstChild.tagName.toLowerCase()=='a') {
4682             cell = cell.firstChild;
4683             cell.onclick = function(){ return rcmail.command('sort', this.__col, this); };
4684             cell.__col = col;
4685           }
4686           cell.innerHTML = this.get_label(col);
4687         }
4688       }
4689     }
4690
4691     this.env.subject_col = null;
4692     this.env.flagged_col = null;
4693     this.env.status_col = null;
4694
4695     if ((n = $.inArray('subject', this.env.coltypes)) >= 0) {
4696       this.set_env('subject_col', n);
4697       if (list)
4698         list.subject_col = n;
4699     }
4700     if ((n = $.inArray('flag', this.env.coltypes)) >= 0)
4701       this.set_env('flagged_col', n);
4702     if ((n = $.inArray('status', this.env.coltypes)) >= 0)
4703       this.set_env('status_col', n);
4704
4705     if (list)
4706       list.init_header();
4707   };
4708
4709   // replace content of row count display
4710   this.set_rowcount = function(text)
4711   {
4712     $(this.gui_objects.countdisplay).html(text);
4713
4714     // update page navigation buttons
4715     this.set_page_buttons();
4716   };
4717
4718   // replace content of mailboxname display
4719   this.set_mailboxname = function(content)
4720   {
4721     if (this.gui_objects.mailboxname && content)
4722       this.gui_objects.mailboxname.innerHTML = content;
4723   };
4724
4725   // replace content of quota display
4726   this.set_quota = function(content)
4727   {
4728     if (content && this.gui_objects.quotadisplay) {
4729       if (typeof(content) == 'object' && content.type == 'image')
4730         this.percent_indicator(this.gui_objects.quotadisplay, content);
4731       else
4732         $(this.gui_objects.quotadisplay).html(content);
4733     }
4734   };
4735
4736   // update the mailboxlist
4737   this.set_unread_count = function(mbox, count, set_title)
4738   {
4739     if (!this.gui_objects.mailboxlist)
4740       return false;
4741
4742     this.env.unread_counts[mbox] = count;
4743     this.set_unread_count_display(mbox, set_title);
4744   };
4745
4746   // update the mailbox count display
4747   this.set_unread_count_display = function(mbox, set_title)
4748   {
4749     var reg, text_obj, item, mycount, childcount, div;
4750
4751     if (item = this.get_folder_li(mbox)) {
4752       mycount = this.env.unread_counts[mbox] ? this.env.unread_counts[mbox] : 0;
4753       text_obj = item.getElementsByTagName('a')[0];
4754       reg = /\s+\([0-9]+\)$/i;
4755
4756       childcount = 0;
4757       if ((div = item.getElementsByTagName('div')[0]) &&
4758           div.className.match(/collapsed/)) {
4759         // add children's counters
4760         for (var k in this.env.unread_counts) 
4761           if (k.indexOf(mbox + this.env.delimiter) == 0)
4762             childcount += this.env.unread_counts[k];
4763       }
4764
4765       if (mycount && text_obj.innerHTML.match(reg))
4766         text_obj.innerHTML = text_obj.innerHTML.replace(reg, ' ('+mycount+')');
4767       else if (mycount)
4768         text_obj.innerHTML += ' ('+mycount+')';
4769       else
4770         text_obj.innerHTML = text_obj.innerHTML.replace(reg, '');
4771
4772       // set parent's display
4773       reg = new RegExp(RegExp.escape(this.env.delimiter) + '[^' + RegExp.escape(this.env.delimiter) + ']+$');
4774       if (mbox.match(reg))
4775         this.set_unread_count_display(mbox.replace(reg, ''), false);
4776
4777       // set the right classes
4778       if ((mycount+childcount)>0)
4779         $(item).addClass('unread');
4780       else
4781         $(item).removeClass('unread');
4782     }
4783
4784     // set unread count to window title
4785     reg = /^\([0-9]+\)\s+/i;
4786     if (set_title && document.title) {
4787       var new_title = '',
4788         doc_title = String(document.title);
4789
4790       if (mycount && doc_title.match(reg))
4791         new_title = doc_title.replace(reg, '('+mycount+') ');
4792       else if (mycount)
4793         new_title = '('+mycount+') '+doc_title;
4794       else
4795         new_title = doc_title.replace(reg, '');
4796
4797       this.set_pagetitle(new_title);
4798     }
4799   };
4800
4801   // notifies that a new message(s) has hit the mailbox
4802   this.new_message_focus = function()
4803   {
4804     // focus main window
4805     if (this.env.framed && window.parent)
4806       window.parent.focus();
4807     else
4808       window.focus();
4809   };
4810
4811   this.toggle_prefer_html = function(checkbox)
4812   {
4813     var elem;
4814     if (elem = document.getElementById('rcmfd_addrbook_show_images'))
4815       elem.disabled = !checkbox.checked;
4816   };
4817
4818   this.toggle_preview_pane = function(checkbox)
4819   {
4820     var elem;
4821     if (elem = document.getElementById('rcmfd_preview_pane_mark_read'))
4822       elem.disabled = !checkbox.checked;
4823   };
4824
4825   // display fetched raw headers
4826   this.set_headers = function(content)
4827   {
4828     if (this.gui_objects.all_headers_row && this.gui_objects.all_headers_box && content)
4829       $(this.gui_objects.all_headers_box).html(content).show();
4830   };
4831
4832   // display all-headers row and fetch raw message headers
4833   this.load_headers = function(elem)
4834   {
4835     if (!this.gui_objects.all_headers_row || !this.gui_objects.all_headers_box || !this.env.uid)
4836       return;
4837
4838     $(elem).removeClass('show-headers').addClass('hide-headers');
4839     $(this.gui_objects.all_headers_row).show();
4840     elem.onclick = function() { rcmail.hide_headers(elem); };
4841
4842     // fetch headers only once
4843     if (!this.gui_objects.all_headers_box.innerHTML) {
4844       var lock = this.display_message(this.get_label('loading'), 'loading');
4845       this.http_post('headers', '_uid='+this.env.uid, lock);
4846     }
4847   };
4848
4849   // hide all-headers row
4850   this.hide_headers = function(elem)
4851   {
4852     if (!this.gui_objects.all_headers_row || !this.gui_objects.all_headers_box)
4853       return;
4854
4855     $(elem).removeClass('hide-headers').addClass('show-headers');
4856     $(this.gui_objects.all_headers_row).hide();
4857     elem.onclick = function() { rcmail.load_headers(elem); };
4858   };
4859
4860   // percent (quota) indicator
4861   this.percent_indicator = function(obj, data)
4862   {
4863     if (!data || !obj)
4864       return false;
4865
4866     var limit_high = 80,
4867       limit_mid  = 55,
4868       width = data.width ? data.width : this.env.indicator_width ? this.env.indicator_width : 100,
4869       height = data.height ? data.height : this.env.indicator_height ? this.env.indicator_height : 14,
4870       quota = data.percent ? Math.abs(parseInt(data.percent)) : 0,
4871       quota_width = parseInt(quota / 100 * width),
4872       pos = $(obj).position();
4873
4874     // workarounds for Opera and Webkit bugs
4875     pos.top = Math.max(0, pos.top);
4876     pos.left = Math.max(0, pos.left);
4877
4878     this.env.indicator_width = width;
4879     this.env.indicator_height = height;
4880
4881     // overlimit
4882     if (quota_width > width) {
4883       quota_width = width;
4884       quota = 100; 
4885     }
4886
4887     if (data.title)
4888       data.title = this.get_label('quota') + ': ' +  data.title;
4889
4890     // main div
4891     var main = $('<div>');
4892     main.css({position: 'absolute', top: pos.top, left: pos.left,
4893             width: width + 'px', height: height + 'px', zIndex: 100, lineHeight: height + 'px'})
4894           .attr('title', data.title).addClass('quota_text').html(quota + '%');
4895     // used bar
4896     var bar1 = $('<div>');
4897     bar1.css({position: 'absolute', top: pos.top + 1, left: pos.left + 1,
4898             width: quota_width + 'px', height: height + 'px', zIndex: 99});
4899     // background
4900     var bar2 = $('<div>');
4901     bar2.css({position: 'absolute', top: pos.top + 1, left: pos.left + 1,
4902             width: width + 'px', height: height + 'px', zIndex: 98})
4903           .addClass('quota_bg');
4904
4905     if (quota >= limit_high) {
4906       main.addClass(' quota_text_high');
4907       bar1.addClass('quota_high');
4908     }
4909     else if(quota >= limit_mid) {
4910       main.addClass(' quota_text_mid');
4911       bar1.addClass('quota_mid');
4912     }
4913     else {
4914       main.addClass(' quota_text_normal');
4915       bar1.addClass('quota_low');
4916     }
4917
4918     // replace quota image
4919     $(obj).html('').append(bar1).append(bar2).append(main);
4920     // update #quotaimg title
4921     $('#quotaimg').attr('title', data.title);
4922   };
4923
4924   /********************************************************/
4925   /*********  html to text conversion functions   *********/
4926   /********************************************************/
4927
4928   this.html2plain = function(htmlText, id)
4929   {
4930     var rcmail = this,
4931       url = '?_task=utils&_action=html2text',
4932       lock = this.set_busy(true, 'converting');
4933
4934     console.log('HTTP POST: ' + url);
4935
4936     $.ajax({ type: 'POST', url: url, data: htmlText, contentType: 'application/octet-stream',
4937       error: function(o, status, err) { rcmail.http_error(o, status, err, lock); },
4938       success: function(data) { rcmail.set_busy(false, null, lock); $(document.getElementById(id)).val(data); console.log(data); }
4939     });
4940   };
4941
4942   this.plain2html = function(plainText, id)
4943   {
4944     var lock = this.set_busy(true, 'converting');
4945     $(document.getElementById(id)).val('<pre>'+plainText+'</pre>');
4946     this.set_busy(false, null, lock);
4947   };
4948
4949
4950   /********************************************************/
4951   /*********        remote request methods        *********/
4952   /********************************************************/
4953
4954   this.redirect = function(url, lock)
4955   {
4956     if (lock || lock === null)
4957       this.set_busy(true);
4958
4959     if (this.env.framed && window.parent)
4960       parent.location.href = url;
4961     else
4962       location.href = url;
4963   };
4964
4965   this.goto_url = function(action, query, lock)
4966   {
4967     var url = this.env.comm_path,
4968      querystring = query ? '&'+query : '';
4969
4970     // overwrite task name
4971     if (action.match(/([a-z]+)\/([a-z-_]+)/)) {
4972       action = RegExp.$2;
4973       url = url.replace(/\_task=[a-z]+/, '_task='+RegExp.$1);
4974     }
4975
4976     this.redirect(url+'&_action='+action+querystring, lock);
4977   };
4978
4979   // send a http request to the server
4980   this.http_request = function(action, query, lock)
4981   {
4982     var url = this.env.comm_path;
4983
4984     // overwrite task name
4985     if (action.match(/([a-z]+)\/([a-z-_]+)/)) {
4986       action = RegExp.$2;
4987       url = url.replace(/\_task=[a-z]+/, '_task='+RegExp.$1);
4988     }
4989
4990     // trigger plugin hook
4991     var result = this.triggerEvent('request'+action, query);
4992
4993     if (typeof result != 'undefined') {
4994       // abort if one the handlers returned false
4995       if (result === false)
4996         return false;
4997       else
4998         query = result;
4999     }
5000
5001     url += '&_remote=1&_action=' + action + (query ? '&' : '') + query;
5002
5003     // send request
5004     console.log('HTTP GET: ' + url);
5005     $.ajax({
5006       type: 'GET', url: url, data: { _unlock:(lock?lock:0) }, dataType: 'json',
5007       success: function(data){ ref.http_response(data); },
5008       error: function(o, status, err) { rcmail.http_error(o, status, err, lock); }
5009     });
5010   };
5011
5012   // send a http POST request to the server
5013   this.http_post = function(action, postdata, lock)
5014   {
5015     var url = this.env.comm_path;
5016
5017     // overwrite task name
5018     if (action.match(/([a-z]+)\/([a-z-_]+)/)) {
5019       action = RegExp.$2;
5020       url = url.replace(/\_task=[a-z]+/, '_task='+RegExp.$1);
5021     }
5022
5023     url += '&_action=' + action;
5024
5025     if (postdata && typeof(postdata) == 'object') {
5026       postdata._remote = 1;
5027       postdata._unlock = (lock ? lock : 0);
5028     }
5029     else
5030       postdata += (postdata ? '&' : '') + '_remote=1' + (lock ? '&_unlock='+lock : '');
5031
5032     // trigger plugin hook
5033     var result = this.triggerEvent('request'+action, postdata);
5034     if (typeof result != 'undefined') {
5035       // abort if one the handlers returned false
5036       if (result === false)
5037         return false;
5038       else
5039         postdata = result;
5040     }
5041
5042     // send request
5043     console.log('HTTP POST: ' + url);
5044     $.ajax({
5045       type: 'POST', url: url, data: postdata, dataType: 'json',
5046       success: function(data){ ref.http_response(data); },
5047       error: function(o, status, err) { rcmail.http_error(o, status, err, lock); }
5048     });
5049   };
5050
5051   // handle HTTP response
5052   this.http_response = function(response)
5053   {
5054     if (!response)
5055       return;
5056
5057     if (response.unlock)
5058       this.set_busy(false);
5059
5060     this.triggerEvent('responsebefore', {response: response});
5061     this.triggerEvent('responsebefore'+response.action, {response: response});
5062
5063     // set env vars
5064     if (response.env)
5065       this.set_env(response.env);
5066
5067     // we have labels to add
5068     if (typeof response.texts == 'object') {
5069       for (var name in response.texts)
5070         if (typeof response.texts[name] == 'string')
5071           this.add_label(name, response.texts[name]);
5072     }
5073
5074     // if we get javascript code from server -> execute it
5075     if (response.exec) {
5076       console.log(response.exec);
5077       eval(response.exec);
5078     }
5079
5080     // execute callback functions of plugins
5081     if (response.callbacks && response.callbacks.length) {
5082       for (var i=0; i < response.callbacks.length; i++)
5083         this.triggerEvent(response.callbacks[i][0], response.callbacks[i][1]);
5084     }
5085
5086     // process the response data according to the sent action
5087     switch (response.action) {
5088       case 'delete':
5089         if (this.task == 'addressbook') {
5090           var uid = this.contact_list.get_selection();
5091           this.enable_command('compose', (uid && this.contact_list.rows[uid]));
5092           this.enable_command('delete', 'edit', (uid && this.contact_list.rows[uid] && this.env.address_sources && !this.env.address_sources[this.env.source].readonly));
5093           this.enable_command('export', (this.contact_list && this.contact_list.rowcount > 0));
5094         }
5095
5096       case 'moveto':
5097         if (this.env.action == 'show') {
5098           // re-enable commands on move/delete error
5099           this.enable_command(this.env.message_commands, true);
5100           if (!this.env.list_post)
5101             this.enable_command('reply-list', false);
5102         }
5103         else if (this.task == 'addressbook') {
5104           this.triggerEvent('listupdate', { folder:this.env.source, rowcount:this.contact_list.rowcount });
5105         }
5106
5107       case 'purge':
5108       case 'expunge':
5109         if (this.task == 'mail') {
5110           if (!this.env.messagecount) {
5111             // clear preview pane content
5112             if (this.env.contentframe)
5113               this.show_contentframe(false);
5114             // disable commands useless when mailbox is empty
5115             this.enable_command(this.env.message_commands, 'purge', 'expunge',
5116               'select-all', 'select-none', 'sort', 'expand-all', 'expand-unread', 'collapse-all', false);
5117           }
5118           if (this.message_list)
5119             this.triggerEvent('listupdate', { folder:this.env.mailbox, rowcount:this.message_list.rowcount });
5120         }
5121         break;
5122
5123       case 'check-recent':
5124       case 'getunread':
5125       case 'search':
5126       case 'list':
5127         if (this.task == 'mail') {
5128           this.enable_command('show', 'expunge', 'select-all', 'select-none', 'sort', (this.env.messagecount > 0));
5129           this.enable_command('purge', this.purge_mailbox_test());
5130           this.enable_command('expand-all', 'expand-unread', 'collapse-all', this.env.threading && this.env.messagecount);
5131
5132           if (response.action == 'list' || response.action == 'search') {
5133             this.msglist_select(this.message_list);
5134             this.triggerEvent('listupdate', { folder:this.env.mailbox, rowcount:this.message_list.rowcount });
5135           }
5136         }
5137         else if (this.task == 'addressbook') {
5138           this.enable_command('export', (this.contact_list && this.contact_list.rowcount > 0));
5139
5140           if (response.action == 'list' || response.action == 'search') {
5141             this.enable_command('group-create',
5142               (this.env.address_sources[this.env.source].groups && !this.env.address_sources[this.env.source].readonly));
5143             this.enable_command('group-rename', 'group-delete',
5144               (this.env.address_sources[this.env.source].groups && this.env.group && !this.env.address_sources[this.env.source].readonly));
5145             this.triggerEvent('listupdate', { folder:this.env.source, rowcount:this.contact_list.rowcount });
5146           }
5147         }
5148         break;
5149     }
5150
5151     if (response.unlock)
5152       this.hide_message(response.unlock);
5153
5154     this.triggerEvent('responseafter', {response: response});
5155     this.triggerEvent('responseafter'+response.action, {response: response});
5156   };
5157
5158   // handle HTTP request errors
5159   this.http_error = function(request, status, err, lock)
5160   {
5161     var errmsg = request.statusText;
5162
5163     this.set_busy(false, null, lock);
5164     request.abort();
5165
5166     if (request.status && errmsg)
5167       this.display_message(this.get_label('servererror') + ' (' + errmsg + ')', 'error');
5168   };
5169
5170   // starts interval for keep-alive/check-recent signal
5171   this.start_keepalive = function()
5172   {
5173     if (this._int)
5174       clearInterval(this._int);
5175
5176     if (this.env.keep_alive && !this.env.framed && this.task == 'mail' && this.gui_objects.mailboxlist)
5177       this._int = setInterval(function(){ ref.check_for_recent(false); }, this.env.keep_alive * 1000);
5178     else if (this.env.keep_alive && !this.env.framed && this.task != 'login' && this.env.action != 'print')
5179       this._int = setInterval(function(){ ref.send_keep_alive(); }, this.env.keep_alive * 1000);
5180   };
5181
5182   // sends keep-alive signal to the server
5183   this.send_keep_alive = function()
5184   {
5185     var d = new Date();
5186     this.http_request('keep-alive', '_t='+d.getTime());
5187   };
5188
5189   // sends request to check for recent messages
5190   this.check_for_recent = function(refresh)
5191   {
5192     if (this.busy)
5193       return;
5194
5195     var lock, addurl = '_t=' + (new Date().getTime()) + '&_mbox=' + urlencode(this.env.mailbox);
5196
5197     if (refresh) {
5198       lock = this.set_busy(true, 'checkingmail');
5199       addurl += '&_refresh=1';
5200       // reset check-recent interval
5201       this.start_keepalive();
5202     }
5203
5204     if (this.gui_objects.messagelist)
5205       addurl += '&_list=1';
5206     if (this.gui_objects.quotadisplay)
5207       addurl += '&_quota=1';
5208     if (this.env.search_request)
5209       addurl += '&_search=' + this.env.search_request;
5210
5211     this.http_request('check-recent', addurl, lock);
5212   };
5213
5214
5215   /********************************************************/
5216   /*********            helper methods            *********/
5217   /********************************************************/
5218
5219   // check if we're in show mode or if we have a unique selection
5220   // and return the message uid
5221   this.get_single_uid = function()
5222   {
5223     return this.env.uid ? this.env.uid : (this.message_list ? this.message_list.get_single_selection() : null);
5224   };
5225
5226   // same as above but for contacts
5227   this.get_single_cid = function()
5228   {
5229     return this.env.cid ? this.env.cid : (this.contact_list ? this.contact_list.get_single_selection() : null);
5230   };
5231
5232   // gets cursor position
5233   this.get_caret_pos = function(obj)
5234   {
5235     if (typeof(obj.selectionEnd)!='undefined')
5236       return obj.selectionEnd;
5237     else if (document.selection && document.selection.createRange) {
5238       var range = document.selection.createRange();
5239       if (range.parentElement()!=obj)
5240         return 0;
5241
5242       var gm = range.duplicate();
5243       if (obj.tagName == 'TEXTAREA')
5244         gm.moveToElementText(obj);
5245       else
5246         gm.expand('textedit');
5247
5248       gm.setEndPoint('EndToStart', range);
5249       var p = gm.text.length;
5250
5251       return p<=obj.value.length ? p : -1;
5252     }
5253     else
5254       return obj.value.length;
5255   };
5256
5257   // moves cursor to specified position
5258   this.set_caret_pos = function(obj, pos)
5259   {
5260     if (obj.setSelectionRange)
5261       obj.setSelectionRange(pos, pos);
5262     else if (obj.createTextRange) {
5263       var range = obj.createTextRange();
5264       range.collapse(true);
5265       range.moveEnd('character', pos);
5266       range.moveStart('character', pos);
5267       range.select();
5268     }
5269   };
5270
5271   // disable/enable all fields of a form
5272   this.lock_form = function(form, lock)
5273   {
5274     if (!form || !form.elements)
5275       return;
5276
5277     var n, len, elm;
5278
5279     if (lock)
5280       this.disabled_form_elements = [];
5281
5282     for (n=0, len=form.elements.length; n<len; n++) {
5283       elm = form.elements[n];
5284
5285       if (elm.type == 'hidden')
5286         continue;
5287
5288       // remember which elem was disabled before lock
5289       if (lock && elm.disabled)
5290         this.disabled_form_elements.push(elm);
5291       else if (lock || $.inArray(elm, this.disabled_form_elements)<0)
5292         elm.disabled = lock;
5293     }
5294   };
5295
5296 }  // end object rcube_webmail
5297
5298
5299 // some static methods
5300 rcube_webmail.long_subject_title = function(elem, indent)
5301 {
5302   if (!elem.title) {
5303     var $elem = $(elem);
5304     if ($elem.width() + indent * 15 > $elem.parent().width())
5305       elem.title = $elem.html();
5306   }
5307 };
5308
5309 // copy event engine prototype
5310 rcube_webmail.prototype.addEventListener = rcube_event_engine.prototype.addEventListener;
5311 rcube_webmail.prototype.removeEventListener = rcube_event_engine.prototype.removeEventListener;
5312 rcube_webmail.prototype.triggerEvent = rcube_event_engine.prototype.triggerEvent;
5313