source: subversion/trunk/roundcubemail/program/steps/mail/list.inc @ 2634

Last change on this file since 2634 was 2634, checked in by alec, 4 years ago
  • speed up empty folder selection
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.2 KB
Line 
1<?php
2
3/*
4 +-----------------------------------------------------------------------+
5 | program/steps/mail/list.inc                                           |
6 |                                                                       |
7 | This file is part of the RoundCube Webmail client                     |
8 | Copyright (C) 2005-2007, RoundCube Dev. - Switzerland                 |
9 | Licensed under the GNU GPL                                            |
10 |                                                                       |
11 | PURPOSE:                                                              |
12 |   Send message list to client (as remote response)                    |
13 |                                                                       |
14 +-----------------------------------------------------------------------+
15 | Author: Thomas Bruederli <roundcube@gmail.com>                        |
16 +-----------------------------------------------------------------------+
17
18 $Id$
19
20*/
21
22if (!$OUTPUT->ajax_call) {
23  return;
24}
25
26// is there a sort type for this request?
27if ($sort = get_input_value('_sort', RCUBE_INPUT_GET))
28{
29  // yes, so set the sort vars
30  list($sort_col, $sort_order) = explode('_', $sort);
31
32  // set session vars for sort (so next page and task switch know how to sort)
33  $save_arr = array();
34  $_SESSION['sort_col'] = $save_arr['message_sort_col'] = $sort_col;
35  $_SESSION['sort_order'] = $save_arr['message_sort_order'] = $sort_order;
36 
37  $RCMAIL->user->save_prefs($save_arr);
38}
39else
40{
41  // use session settings if set, defaults if not
42  $sort_col   = isset($_SESSION['sort_col'])   ? $_SESSION['sort_col']   : $CONFIG['message_sort_col'];
43  $sort_order = isset($_SESSION['sort_order']) ? $_SESSION['sort_order'] : $CONFIG['message_sort_order'];
44}
45
46$mbox_name = $IMAP->get_mailbox_name();
47
48// initialize searching result if search_filter is used
49if ($_SESSION['search_filter'] && $_SESSION['search_filter'] != 'ALL')
50{
51  $search_request = md5($mbox_name.$_SESSION['search_filter']);
52
53  $IMAP->search($mbox_name, $_SESSION['search_filter'], RCMAIL_CHARSET, $sort_col);
54  $_SESSION['search'][$search_request] = $IMAP->get_search_set();
55  $OUTPUT->set_env('search_request', $search_request);
56}
57                             
58
59// fetch message headers
60if ($count = $IMAP->messagecount($mbox_name, 'ALL', !empty($_REQUEST['_refresh'])))
61  $a_headers = $IMAP->list_headers($mbox_name, NULL, $sort_col, $sort_order);
62
63$unseen = $count ? $IMAP->messagecount($mbox_name, 'UNSEEN', !empty($_REQUEST['_refresh'])) : 0;
64
65// update message count display
66$pages = ceil($count/$IMAP->page_size);
67$OUTPUT->set_env('messagecount', $count);
68$OUTPUT->set_env('pagecount', $pages);
69$OUTPUT->command('set_rowcount', rcmail_get_messagecount_text($count));
70$OUTPUT->command('set_mailboxname', rcmail_get_mailbox_name_text());
71
72// add message rows
73if (isset($a_headers) && count($a_headers))
74{
75  rcmail_js_message_list($a_headers);
76  if ($search_request)
77    $OUTPUT->show_message('searchsuccessful', 'confirmation', array('nr' => $count));
78}
79else if ($search_request)
80  $OUTPUT->show_message('searchnomatch', 'notice');
81else
82  $OUTPUT->show_message('nomessagesfound', 'notice');
83 
84// update mailboxlist
85$OUTPUT->command('set_unread_count', $mbox_name, $unseen, ($mbox_name == 'INBOX'));
86
87// send response
88$OUTPUT->send();
89
90?>
Note: See TracBrowser for help on using the repository browser.