view src/plugins/push-notification/push-notification-event-mailboxunsubscribe.c @ 19552:0f22db71df7a

global: freshen copyright git ls-files | xargs perl -p -i -e 's/(\d+)-201[0-5]/$1-2016/g;s/ (201[0-5]) Dovecot/ $1-2016 Dovecot/'
author Timo Sirainen <timo.sirainen@dovecot.fi>
date Wed, 13 Jan 2016 12:24:03 +0200
parents 1afdeb1cae62
children 2e2563132d5f
line wrap: on
line source

/* Copyright (c) 2015-2016 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 = TRUE;

    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
    }
};