blob: 21f8e8510930e9bc9c799e35e84169437e7346d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* Copyright (c) 2002-2018 Pigeonhole authors, see the included COPYING file
*/
#include "lib.h"
#include "pigeonhole-config.h"
#include "pigeonhole-version.h"
/* This is currently just a dummy plugin that adds a Pigeonhole
* version banner the doveconf output.
*/
const char *pigeonhole_settings_version = DOVECOT_ABI_VERSION;
const char *pigeonhole_settings_doveconf_banner = "Pigeonhole version "PIGEONHOLE_VERSION_FULL;
|