]> git.donarmstrong.com Git - roundcube.git/blob - program/steps/mail/getunread.inc
Merge commit 'debian/0.3.1-1' into debian
[roundcube.git] / program / steps / mail / getunread.inc
1 <?php
2
3 /*
4  +-----------------------------------------------------------------------+
5  | program/steps/mail/getunread.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  |   Check all mailboxes for unread messages and update GUI              |
13  |                                                                       |
14  +-----------------------------------------------------------------------+
15  | Author: Thomas Bruederli <roundcube@gmail.com>                        |
16  +-----------------------------------------------------------------------+
17
18  $Id: getunread.inc 2966 2009-09-18 10:15:17Z alec $
19
20 */
21
22 $a_folders = $IMAP->list_mailboxes();
23
24 if (!empty($a_folders))
25 {
26   $inbox = ($IMAP->get_mailbox_name() == 'INBOX');
27   foreach ($a_folders as $mbox_row) {
28     $unseen = $IMAP->messagecount($mbox_row, 'UNSEEN', !isset($_SESSION['unseen_count'][$mbox_row]));
29
30     if ($unseen || !isset($_SESSION['unseen_count'][$mbox_row])) {
31       $OUTPUT->command('set_unread_count', $mbox_row, $unseen, $inbox && $mbox_row == 'INBOX');
32     }
33     $_SESSION['unseen_count'][$mbox_row] = $unseen;
34   }
35 }
36
37 $OUTPUT->send();
38
39 ?>