view src/plugins/fts/fts-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) 2006-2010 Dovecot authors, see the included COPYING file */

#include "lib.h"
#include "mail-storage-hooks.h"
#include "fts-plugin.h"

#include <stdlib.h>

const char *fts_plugin_version = DOVECOT_VERSION;

static struct mail_storage_hooks fts_mail_storage_hooks = {
	.mailbox_allocated = fts_mailbox_allocated
};

void fts_plugin_init(struct module *module)
{
	mail_storage_hooks_add(module, &fts_mail_storage_hooks);
}

void fts_plugin_deinit(void)
{
	mail_storage_hooks_remove(&fts_mail_storage_hooks);
}