diff options
| author | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-08-14 08:13:23 +0000 |
|---|---|---|
| committer | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-08-14 08:13:23 +0000 |
| commit | 06a3032559dce451a11dfc42ccd55568eb653815 (patch) | |
| tree | a0d587031914c2d1f5e614dddd733d0895bbc1b3 | |
| parent | 0c2eec411d26276d374590f4546f2fc800925449 (diff) | |
Implemented new_messages plugin hook (#1486005)
git-svn-id: https://svn.roundcube.net/trunk@2860 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/CHANGELOG | 2 | ||||
| -rw-r--r-- | roundcubemail/program/steps/mail/check_recent.inc | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/roundcubemail/CHANGELOG b/roundcubemail/CHANGELOG index 6a790799a..09c2de7ed 100644 --- a/roundcubemail/CHANGELOG +++ b/roundcubemail/CHANGELOG @@ -1,6 +1,8 @@ CHANGELOG RoundCube Webmail =========================== +- Added 'new_messages' plugin hook (#1486005) +- Added 'logout_after' plugin hook (#1486042) - Added 'message_compose' hook - Added 'imap_connect' hook (#1485956) - Fix vcard_attachments plugin (#1486035) diff --git a/roundcubemail/program/steps/mail/check_recent.inc b/roundcubemail/program/steps/mail/check_recent.inc index 8d757d440..78b7fbbdf 100644 --- a/roundcubemail/program/steps/mail/check_recent.inc +++ b/roundcubemail/program/steps/mail/check_recent.inc @@ -47,6 +47,9 @@ foreach ($a_mailboxes as $mbox_name) { if (!empty($_GET['_quota'])) $OUTPUT->command('set_quota', rcmail_quota_content($IMAP->get_quota())); + // trigger plugin hook + $RCMAIL->plugins->exec_hook('new_messages', array('mailbox' => $mbox_name, 'count' => $unread_count)); + // "No-list" mode, don't get messages if (empty($_GET['_list'])) continue; |
