view src/plugins/push-notification/push-notification-event-messagetrash.c @ 21390:2e2563132d5f

Updated copyright notices to include the year 2017.
author Stephan Bosch <stephan.bosch@dovecot.fi>
date Wed, 11 Jan 2017 02:51:13 +0100
parents 0f22db71df7a
children cb108f786fb4
line wrap: on
line source

/* Copyright (c) 2015-2017 Dovecot authors, see the included COPYING file */

#include "lib.h"
#include "mail-storage.h"
#include "mail-types.h"

#include "push-notification-drivers.h"
#include "push-notification-events.h"
#include "push-notification-event-messagetrash.h"
#include "push-notification-txn-msg.h"


#define EVENT_NAME "MessageTrash"


static void push_notification_event_messagetrash_debug_msg
(struct push_notification_txn_event *event ATTR_UNUSED)
{
    i_debug("%s: Message was marked as deleted", EVENT_NAME);
}

static void push_notification_event_messagetrash_event(
    struct push_notification_txn *ptxn,
    struct push_notification_event_config *ec,
    struct push_notification_txn_msg *msg,
    struct mail *mail,
    enum mail_flags old_flags)
{
    struct push_notification_event_messagetrash_data *data;
    enum mail_flags flags;

    /* If data struct exists, that means the deleted flag was changed. */
    data = push_notification_txn_msg_get_eventdata(msg, EVENT_NAME);
    if ((data == NULL) && !(old_flags & MAIL_DELETED)) {
        flags = mail_get_flags(mail);
        if (flags & MAIL_DELETED) {
            data = p_new(ptxn->pool,
                         struct push_notification_event_messagetrash_data, 1);
            data->trash = TRUE;
            push_notification_txn_msg_set_eventdata(ptxn, msg, ec, data);
        }
    }
}


/* Event definition */

extern struct push_notification_event push_notification_event_messagetrash;

struct push_notification_event push_notification_event_messagetrash = {
    .name = EVENT_NAME,
    .msg = {
        .debug_msg = push_notification_event_messagetrash_debug_msg
    },
    .msg_triggers = {
        .flagchange = push_notification_event_messagetrash_event
    }
};