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

Last change on this file since 2373 was 2373, checked in by alec, 4 years ago
  • Fix service not available error when pressing back from compose dialog (#1485552)
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.3 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 ($IMAP->messagecount($mbox_name, 'ALL', !empty($_REQUEST['_refresh'])))
61  $a_headers = $IMAP->list_headers($mbox_name, NULL, $sort_col, $sort_order);
62
63$count = $IMAP->messagecount($mbox_name);
64$unseen = $IMAP->messagecount($mbox_name, 'UNSEEN', !empty($_REQUEST['_refresh']));
65
66// update message count display
67$pages = ceil($count/$IMAP->page_size);
68$OUTPUT->set_env('messagecount', $count);
69$OUTPUT->set_env('pagecount', $pages);
70$OUTPUT->command('set_rowcount', rcmail_get_messagecount_text($count));
71$OUTPUT->command('set_mailboxname', rcmail_get_mailbox_name_text());
72
73// add message rows
74if (isset($a_headers) && count($a_headers))
75{
76  rcmail_js_message_list($a_headers);
77  if ($search_request)
78    $OUTPUT->show_message('searchsuccessful', 'confirmation', array('nr' => $count));
79}
80else if ($search_request)
81  $OUTPUT->show_message('searchnomatch', 'notice');
82else
83  $OUTPUT->show_message('nomessagesfound', 'notice');
84 
85// update mailboxlist
86$OUTPUT->command('set_unread_count', $mbox_name, $unseen, ($mbox_name == 'INBOX'));
87
88// send response
89$OUTPUT->send();
90
91?>
Note: See TracBrowser for help on using the repository browser.