1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
/* 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-mailboxrename.h"
#include "push-notification-txn-mbox.h"
#define EVENT_NAME "MailboxRename"
static void
push_notification_event_mailboxrename_debug_mbox(
struct push_notification_txn_event *event)
{
struct push_notification_event_mailboxrename_data *data = event->data;
i_debug("%s: Mailbox was renamed (old name: %s)",
EVENT_NAME, data->old_mbox);
}
static void
push_notification_event_mailboxrename_event(
struct push_notification_txn *ptxn,
struct push_notification_event_config *ec,
struct push_notification_txn_mbox *mbox, struct mailbox *old)
{
struct push_notification_event_mailboxrename_data *data;
data = p_new(ptxn->pool,
struct push_notification_event_mailboxrename_data, 1);
data->old_mbox = mailbox_get_vname(old);
push_notification_txn_mbox_set_eventdata(ptxn, mbox, ec, data);
}
/* Event definition */
extern struct push_notification_event push_notification_event_mailboxrename;
struct push_notification_event push_notification_event_mailboxrename = {
.name = EVENT_NAME,
.mbox = {
.debug_mbox = push_notification_event_mailboxrename_debug_mbox,
},
.mbox_triggers = {
.rename = push_notification_event_mailboxrename_event,
},
};
|