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

index 207224410864057def80d8015b9bdaf69f589cd6..511fc6b540a67054a0b25483ee41435532aa9579 100644 (file)
@@ -3,30 +3,28 @@
 #ifndef PUSH_NOTIFICATION_EVENT_MESSAGEAPPEND_H
 #define PUSH_NOTIFICATION_EVENT_MESSAGEAPPEND_H
 
-
 struct push_notification_event_messageappend_config {
-    enum push_notification_event_message_flags flags;
+       enum push_notification_event_message_flags flags;
 };
 
 struct push_notification_event_messageappend_data {
-    const char *from;
-    const char *to;
-    const char *subject;
-    const char *snippet;
-    /* PUSH_NOTIFICATION_MESSAGE_HDR_DATE */
-    time_t date;
-    int date_tz;
-    /* PUSH_NOTIFICATION_MESSAGE_FLAGS */
-    bool flags_set;
-    enum mail_flags flags;
-    /* PUSH_NOTIFICATION_MESSAGE_KEYWORDS */
-    const char *const *keywords;
-    /* PUSH_NOTIFICATION_MESSAGE_HDR_MESSAGE_ID */
-    const char *message_id;
-
-    struct push_notification_message_ext ext;
+       const char *from;
+       const char *to;
+       const char *subject;
+       const char *snippet;
+       /* PUSH_NOTIFICATION_MESSAGE_HDR_DATE */
+       time_t date;
+       int date_tz;
+       /* PUSH_NOTIFICATION_MESSAGE_FLAGS */
+       bool flags_set;
+       enum mail_flags flags;
+       /* PUSH_NOTIFICATION_MESSAGE_KEYWORDS */
+       const char *const *keywords;
+       /* PUSH_NOTIFICATION_MESSAGE_HDR_MESSAGE_ID */
+       const char *message_id;
+
+       struct push_notification_message_ext ext;
 };
 
-
-#endif /* PUSH_NOTIFICATION_EVENT_MESSAGEAPPEND_H */
+#endif