view src/doveadm/doveadm-server.h @ 12629:02370eda76f8

lib-storage: Mailbox virtual names are now in UTF-8 format, not IMAP mUTF-7. Plugins that use mailbox names in configuration now take them also as UTF-8 rather than mUTF-7.
author Timo Sirainen <tss@iki.fi>
date Tue, 01 Feb 2011 20:41:54 +0200
parents b60e225386bf
children a097ef0a9d6d
line wrap: on
line source

#ifndef DOVEADM_SERVER_H
#define DOVEADM_SERVER_H

#define DOVEADM_PRINT_TYPE_SERVER "server"

extern struct client_connection *doveadm_client;
extern struct doveadm_print_vfuncs doveadm_print_server_vfuncs;

struct doveadm_server {
	const char *name;

	ARRAY_DEFINE(connections, struct server_connection *);
	ARRAY_TYPE(string) queue;
};

#endif