]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
plugins: push-notification: Reformat push-notification-event-mailboxcreate.c.
authorStephan Bosch <stephan.bosch@open-xchange.com>
Sun, 1 Dec 2019 10:25:50 +0000 (11:25 +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-event-mailboxcreate.c

index b6b19c7939971f836794b38f1747a7c8a6cda865..87e46c1fcea98fc5969419666ae8a3535fa98606 100644 (file)
@@ -8,49 +8,49 @@
 #include "push-notification-event-mailboxcreate.h"
 #include "push-notification-txn-mbox.h"
 
-
 #define EVENT_NAME "MailboxCreate"
 
-
-static void push_notification_event_mailboxcreate_debug_mbox
-(struct push_notification_txn_event *event ATTR_UNUSED)
+static void
+push_notification_event_mailboxcreate_debug_mbox(
+       struct push_notification_txn_event *event ATTR_UNUSED)
 {
-    i_debug("%s: Mailbox was created", EVENT_NAME);
+       i_debug("%s: Mailbox was created", EVENT_NAME);
 }
 
-static void push_notification_event_mailboxcreate_event(
-    struct push_notification_txn *ptxn,
-    struct push_notification_event_config *ec,
-    struct push_notification_txn_mbox *mbox)
+static void
+push_notification_event_mailboxcreate_event(
+       struct push_notification_txn *ptxn,
+       struct push_notification_event_config *ec,
+       struct push_notification_txn_mbox *mbox)
 {
-    struct push_notification_event_mailboxcreate_data *data;
-    struct mailbox_status status;
-
-    if (mailbox_get_status(ptxn->mbox, STATUS_UIDVALIDITY, &status) < 0) {
-        i_error(EVENT_NAME "Failed to get created mailbox '%s' uidvalidity: %s",
-                mailbox_get_vname(ptxn->mbox),
-                mailbox_get_last_internal_error(ptxn->mbox, NULL));
-        status.uidvalidity = 0;
-    }
-
-    data = p_new(ptxn->pool,
-                 struct push_notification_event_mailboxcreate_data, 1);
-    data->uid_validity = status.uidvalidity;
-
-    push_notification_txn_mbox_set_eventdata(ptxn, mbox, ec, data);
+       struct push_notification_event_mailboxcreate_data *data;
+       struct mailbox_status status;
+
+       if (mailbox_get_status(ptxn->mbox, STATUS_UIDVALIDITY, &status) < 0) {
+               i_error(EVENT_NAME
+                       "Failed to get created mailbox '%s' uidvalidity: %s",
+                       mailbox_get_vname(ptxn->mbox),
+                       mailbox_get_last_internal_error(ptxn->mbox, NULL));
+               status.uidvalidity = 0;
+       }
+
+       data = p_new(ptxn->pool,
+                    struct push_notification_event_mailboxcreate_data, 1);
+       data->uid_validity = status.uidvalidity;
+
+       push_notification_txn_mbox_set_eventdata(ptxn, mbox, ec, data);
 }
 
-
 /* Event definition */
 
 extern struct push_notification_event push_notification_event_mailboxcreate;
 
 struct push_notification_event push_notification_event_mailboxcreate = {
-    .name = EVENT_NAME,
-    .mbox = {
-        .debug_mbox = push_notification_event_mailboxcreate_debug_mbox
-    },
-    .mbox_triggers = {
-        .create = push_notification_event_mailboxcreate_event
-    }
+       .name = EVENT_NAME,
+       .mbox = {
+               .debug_mbox = push_notification_event_mailboxcreate_debug_mbox,
+       },
+       .mbox_triggers = {
+               .create = push_notification_event_mailboxcreate_event,
+       },
 };