]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
plugins: push-notification: Reformat push-notification-events-rfc5423.c.
authorStephan Bosch <stephan.bosch@open-xchange.com>
Sun, 1 Dec 2019 10:30:09 +0000 (11:30 +0100)
committertimo.sirainen <timo.sirainen@open-xchange.com>
Thu, 6 Feb 2020 12:18:41 +0000 (12:18 +0000)
src/plugins/push-notification/push-notification-events-rfc5423.c

index 3db512b3e718ebd6a8344ee05ebf17d9c3567f1d..10dd0c7e3913cdcd999f500c1e09da1b6fa547f4 100644 (file)
@@ -5,15 +5,14 @@
 #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
  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;
@@ -29,30 +28,32 @@ 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[] = {
-    &push_notification_event_flagsclear,
-    &push_notification_event_flagsset,
-    &push_notification_event_mailboxcreate,
-    &push_notification_event_mailboxdelete,
-    &push_notification_event_mailboxrename,
-    &push_notification_event_mailboxsubscribe,
-    &push_notification_event_mailboxunsubscribe,
-    &push_notification_event_messageappend,
-    &push_notification_event_messageexpunge,
-    &push_notification_event_messagenew,
-    &push_notification_event_messageread,
-    &push_notification_event_messagetrash
+       &push_notification_event_flagsclear,
+       &push_notification_event_flagsset,
+       &push_notification_event_mailboxcreate,
+       &push_notification_event_mailboxdelete,
+       &push_notification_event_mailboxrename,
+       &push_notification_event_mailboxsubscribe,
+       &push_notification_event_mailboxunsubscribe,
+       &push_notification_event_messageappend,
+       &push_notification_event_messageexpunge,
+       &push_notification_event_messagenew,
+       &push_notification_event_messageread,
+       &push_notification_event_messagetrash
 };
 
 void push_notification_event_register_rfc5423_events(void)
 {
-    unsigned int i;
-    for (i = 0; i < N_ELEMENTS(rfc5423_events); i++)
-       push_notification_event_register(rfc5423_events[i]);
+       unsigned int i;
+
+       for (i = 0; i < N_ELEMENTS(rfc5423_events); i++)
+               push_notification_event_register(rfc5423_events[i]);
 }
 
 void push_notification_event_unregister_rfc5423_events(void)
 {
-    unsigned int i;
-    for (i = 0; i < N_ELEMENTS(rfc5423_events); i++)
-       push_notification_event_unregister(rfc5423_events[i]);
+       unsigned int i;
+
+       for (i = 0; i < N_ELEMENTS(rfc5423_events); i++)
+               push_notification_event_unregister(rfc5423_events[i]);
 }