summaryrefslogtreecommitdiffstats
path: root/src/plugins/virtual/virtual-plugin.c
blob: 43db7cbf3848954c18cf5966919368d38b263094 (plain)
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
/* Copyright (c) 2008-2018 Dovecot authors, see the included COPYING file */

#include "lib.h"
#include "mail-namespace.h"
#include "virtual-storage.h"
#include "virtual-plugin.h"

const char *virtual_plugin_version = DOVECOT_ABI_VERSION;

static struct mail_storage_hooks acl_mail_storage_hooks = {
	.mailbox_allocated = virtual_backend_mailbox_allocated,
	.mailbox_opened = virtual_backend_mailbox_opened
};

void virtual_plugin_init(struct module *module ATTR_UNUSED)
{
	mail_storage_class_register(&virtual_storage);
	mail_storage_hooks_add(module, &acl_mail_storage_hooks);
}

void virtual_plugin_deinit(void)
{
	mail_storage_class_unregister(&virtual_storage);
	mail_storage_hooks_remove(&acl_mail_storage_hooks);
}