blob: 9a5e1bffe267553372af3072ddb886b0e6bd9b4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* Copyright (c) 2015-2018 Dovecot authors, see the included COPYING file */
#ifndef PUSH_NOTIFICATION_EVENT_MAILBOXCREATE_H
#define PUSH_NOTIFICATION_EVENT_MAILBOXCREATE_H
struct push_notification_event_mailboxcreate_data {
/* RFC 5423 [4.4]: UIDVALIDITY required for create event. */
uint32_t uid_validity;
};
#endif
|