diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 09:51:24 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 09:51:24 +0000 |
commit | f7548d6d28c313cf80e6f3ef89aed16a19815df1 (patch) | |
tree | a3f6f2a3f247293bee59ecd28e8cd8ceb6ca064a /src/plugins/push-notification/push-notification-event-mailboxunsubscribe.c | |
parent | Initial commit. (diff) | |
download | dovecot-f7548d6d28c313cf80e6f3ef89aed16a19815df1.tar.xz dovecot-f7548d6d28c313cf80e6f3ef89aed16a19815df1.zip |
Adding upstream version 1:2.3.19.1+dfsg1.upstream/1%2.3.19.1+dfsg1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/plugins/push-notification/push-notification-event-mailboxunsubscribe.c')
-rw-r--r-- | src/plugins/push-notification/push-notification-event-mailboxunsubscribe.c | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/src/plugins/push-notification/push-notification-event-mailboxunsubscribe.c b/src/plugins/push-notification/push-notification-event-mailboxunsubscribe.c new file mode 100644 index 0000000..b8d078f --- /dev/null +++ b/src/plugins/push-notification/push-notification-event-mailboxunsubscribe.c @@ -0,0 +1,48 @@ +/* Copyright (c) 2015-2018 Dovecot authors, see the included COPYING file */ + +#include "lib.h" +#include "mail-storage.h" + +#include "push-notification-drivers.h" +#include "push-notification-events.h" +#include "push-notification-event-mailboxunsubscribe.h" +#include "push-notification-txn-mbox.h" + +#define EVENT_NAME "MailboxUnsubscribe" + +static void +push_notification_event_mailboxunsubscribe_debug_mbox( + struct push_notification_txn_event *event ATTR_UNUSED) +{ + i_debug("%s: Mailbox was subscribed to", EVENT_NAME); +} + +static void +push_notification_event_mailboxunsubscribe_event( + struct push_notification_txn *ptxn, + struct push_notification_event_config *ec, + struct push_notification_txn_mbox *mbox) +{ + struct push_notification_event_mailboxunsubscribe_data *data; + + data = p_new(ptxn->pool, + struct push_notification_event_mailboxunsubscribe_data, 1); + data->subscribe = FALSE; + + push_notification_txn_mbox_set_eventdata(ptxn, mbox, ec, data); +} + +/* Event definition */ + +extern struct push_notification_event push_notification_event_mailboxunsubscribe; + +struct push_notification_event push_notification_event_mailboxunsubscribe = { + .name = EVENT_NAME, + .mbox = { + .debug_mbox = + push_notification_event_mailboxunsubscribe_debug_mbox, + }, + .mbox_triggers = { + .unsubscribe = push_notification_event_mailboxunsubscribe_event, + }, +}; |