view src/plugins/quota/quota-plugin.c @ 10646:d4fd28f07507 HEAD

plugins: Use DOVECOT_VERSION instead of PACKAGE_VERSION.
author Timo Sirainen <tss@iki.fi>
date Sat, 06 Feb 2010 17:31:14 +0200
parents 615eef3139c2
children 4b20e692c606
line wrap: on
line source

/* Copyright (c) 2005-2010 Dovecot authors, see the included COPYING file */

#include "lib.h"
#include "mail-user.h"
#include "mail-storage-hooks.h"
#include "quota-plugin.h"

#include <stdlib.h>

const char *quota_plugin_version = DOVECOT_VERSION;

static struct mail_storage_hooks quota_mail_storage_hooks = {
	.mail_user_created = quota_mail_user_created,
	.mail_namespaces_created = quota_mail_namespaces_created,
	.mail_namespace_storage_added = quota_mail_namespace_storage_added,
	.mailbox_allocated = quota_mailbox_allocated
};

void quota_plugin_init(struct module *module)
{
	mail_storage_hooks_add(module, &quota_mail_storage_hooks);
}

void quota_plugin_deinit(void)
{
	mail_storage_hooks_remove(&quota_mail_storage_hooks);
}