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

index cc2516522d01fd10f5a0c7763cb142f3d9691184..2284b6f136ba365042b05a47821d276826a380c0 100644 (file)
@@ -9,50 +9,50 @@
 #include "push-notification-event-messagetrash.h"
 #include "push-notification-txn-msg.h"
 
-
 #define EVENT_NAME "MessageTrash"
 
-
-static void push_notification_event_messagetrash_debug_msg
-(struct push_notification_txn_event *event ATTR_UNUSED)
+static void
+push_notification_event_messagetrash_debug_msg(
+       struct push_notification_txn_event *event ATTR_UNUSED)
 {
-    i_debug("%s: Message was marked as deleted", EVENT_NAME);
+       i_debug("%s: Message was marked as deleted", EVENT_NAME);
 }
 
-static void push_notification_event_messagetrash_event(
-    struct push_notification_txn *ptxn,
-    struct push_notification_event_config *ec,
-    struct push_notification_txn_msg *msg,
-    struct mail *mail,
-    enum mail_flags old_flags)
+static void
+push_notification_event_messagetrash_event(
+       struct push_notification_txn *ptxn,
+       struct push_notification_event_config *ec,
+       struct push_notification_txn_msg *msg, struct mail *mail,
+       enum mail_flags old_flags)
 {
-    struct push_notification_event_messagetrash_data *data;
-    enum mail_flags flags;
-
-    /* If data struct exists, that means the deleted flag was changed. */
-    data = push_notification_txn_msg_get_eventdata(msg, EVENT_NAME);
-    if ((data == NULL) && (old_flags & MAIL_DELETED) == 0) {
-        flags = mail_get_flags(mail);
-        if ((flags & MAIL_DELETED) != 0) {
-            data = p_new(ptxn->pool,
-                         struct push_notification_event_messagetrash_data, 1);
-            data->trash = TRUE;
-            push_notification_txn_msg_set_eventdata(ptxn, msg, ec, data);
-        }
-    }
+       struct push_notification_event_messagetrash_data *data;
+       enum mail_flags flags;
+
+       /* If data struct exists, that means the deleted flag was changed. */
+       data = push_notification_txn_msg_get_eventdata(msg, EVENT_NAME);
+       if ((data == NULL) && (old_flags & MAIL_DELETED) == 0) {
+               flags = mail_get_flags(mail);
+               if ((flags & MAIL_DELETED) != 0) {
+                       data = p_new(
+                               ptxn->pool,
+                               struct push_notification_event_messagetrash_data, 1);
+                       data->trash = TRUE;
+                       push_notification_txn_msg_set_eventdata(
+                               ptxn, msg, ec, data);
+               }
+       }
 }
 
-
 /* Event definition */
 
 extern struct push_notification_event push_notification_event_messagetrash;
 
 struct push_notification_event push_notification_event_messagetrash = {
-    .name = EVENT_NAME,
-    .msg = {
-        .debug_msg = push_notification_event_messagetrash_debug_msg
-    },
-    .msg_triggers = {
-        .flagchange = push_notification_event_messagetrash_event
-    }
+       .name = EVENT_NAME,
+       .msg = {
+               .debug_msg = push_notification_event_messagetrash_debug_msg,
+       },
+       .msg_triggers = {
+               .flagchange = push_notification_event_messagetrash_event,
+       },
 };