push-notification-events-rfc5423.c revision da2423165d31474f5384833fdaa6dc4c0cee28f4
/* Copyright (c) 2015 Dovecot authors, see the included COPYING file */
#include "lib.h"
#include "push-notification-events.h"
#include "push-notification-events-rfc5423.h"
/* These are the RFC 5423 Mail Store Events currently handled within the core
* push-notification code.
*
* @todo: These events are not currently handled:
* - Login
* - Logout
* - QuotaExceed
* - Quota Within
*/
extern struct push_notification_event push_notification_event_flagsclear;
extern struct push_notification_event push_notification_event_flagsset;
extern struct push_notification_event push_notification_event_mailboxcreate;
extern struct push_notification_event push_notification_event_mailboxdelete;
extern struct push_notification_event push_notification_event_mailboxrename;
extern struct push_notification_event push_notification_event_mailboxsubscribe;
extern struct push_notification_event push_notification_event_messageappend;
extern struct push_notification_event push_notification_event_messageexpunge;
extern struct push_notification_event push_notification_event_messagenew;
extern struct push_notification_event push_notification_event_messageread;
extern struct push_notification_event push_notification_event_messagetrash;
static struct push_notification_event *rfc5423_events[] = {
};
{
unsigned int i;
for (i = 0; i < N_ELEMENTS(rfc5423_events); i++)
}
{
unsigned int i;
for (i = 0; i < N_ELEMENTS(rfc5423_events); i++)
}