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

index 49eb0cb8ec3af04c8ac82bcfa27d42312af6eb2b..4830260d55a8d36d9462d245fceb0be348f81d93 100644 (file)
@@ -3,24 +3,20 @@
 #ifndef PUSH_NOTIFICATION_EVENT_FLAGSSET_H
 #define PUSH_NOTIFICATION_EVENT_FLAGSSET_H
 
-
 #include "mail-types.h"
 
-
 struct push_notification_event_flagsset_config {
-    /* RFC 5423[4.2] - allow configuration whether FlagsSet event returns
-     * Deleted and/or Seen flags, since these flags are also settable
-     * via MessageRead/MessageTrash events. By default, include them
-     * here. */
-    bool hide_deleted;
-    bool hide_seen;
+       /* RFC 5423[4.2] - allow configuration whether FlagsSet event returns
+          Deleted and/or Seen flags, since these flags are also settable via
+          MessageRead/MessageTrash events. By default, include them here. */
+       bool hide_deleted;
+       bool hide_seen;
 };
 
 struct push_notification_event_flagsset_data {
-    enum mail_flags flags_set;
-    ARRAY_TYPE(keywords) keywords_set;
+       enum mail_flags flags_set;
+       ARRAY_TYPE(keywords) keywords_set;
 };
 
-
-#endif /* PUSH_NOTIFICATION_EVENT_FLAGSSET_H */
+#endif