diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 17:36:47 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 17:36:47 +0000 |
commit | 0441d265f2bb9da249c7abf333f0f771fadb4ab5 (patch) | |
tree | 3f3789daa2f6db22da6e55e92bee0062a7d613fe /src/plugins/push-notification/push-notification-event-mailboxdelete.c | |
parent | Initial commit. (diff) | |
download | dovecot-0441d265f2bb9da249c7abf333f0f771fadb4ab5.tar.xz dovecot-0441d265f2bb9da249c7abf333f0f771fadb4ab5.zip |
Adding upstream version 1:2.3.21+dfsg1.upstream/1%2.3.21+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/plugins/push-notification/push-notification-event-mailboxdelete.c')
-rw-r--r-- | src/plugins/push-notification/push-notification-event-mailboxdelete.c | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/src/plugins/push-notification/push-notification-event-mailboxdelete.c b/src/plugins/push-notification/push-notification-event-mailboxdelete.c new file mode 100644 index 0000000..8e65f3c --- /dev/null +++ b/src/plugins/push-notification/push-notification-event-mailboxdelete.c @@ -0,0 +1,46 @@ +/* Copyright (c) 2015-2018 Dovecot authors, see the included COPYING file */ + +#include "lib.h" + +#include "push-notification-drivers.h" +#include "push-notification-events.h" +#include "push-notification-event-mailboxdelete.h" +#include "push-notification-txn-mbox.h" + +#define EVENT_NAME "MailboxDelete" + +static void +push_notification_event_mailboxdelete_debug_mbox( + struct push_notification_txn_event *event ATTR_UNUSED) +{ + i_debug("%s: Mailbox was deleted", EVENT_NAME); +} + +static void +push_notification_event_mailboxdelete_event( + struct push_notification_txn *ptxn, + struct push_notification_event_config *ec, + struct push_notification_txn_mbox *mbox) +{ + struct push_notification_event_mailboxdelete_data *data; + + data = p_new(ptxn->pool, + struct push_notification_event_mailboxdelete_data, 1); + data->deleted = TRUE; + + push_notification_txn_mbox_set_eventdata(ptxn, mbox, ec, data); +} + +/* Event definition */ + +extern struct push_notification_event push_notification_event_mailboxdelete; + +struct push_notification_event push_notification_event_mailboxdelete = { + .name = EVENT_NAME, + .mbox = { + .debug_mbox = push_notification_event_mailboxdelete_debug_mbox, + }, + .mbox_triggers = { + .delete = push_notification_event_mailboxdelete_event, + }, +}; |