Imported Upstream version 4.84
[hcoop/debian/exim4.git] / src / auths / dovecot.h
1 /*************************************************
2 * Exim - an Internet mail transport agent *
3 *************************************************/
4
5 /* Copyright (c) University of Cambridge 1995 - 2009 */
6 /* See the file NOTICE for conditions of use and distribution. */
7
8 /* Private structure for the private options. */
9
10 typedef struct {
11 uschar *server_socket;
12 } auth_dovecot_options_block;
13
14 /* Data for reading the private options. */
15
16 extern optionlist auth_dovecot_options[];
17 extern int auth_dovecot_options_count;
18
19 /* Block containing default values. */
20
21 extern auth_dovecot_options_block auth_dovecot_option_defaults;
22
23 /* The entry points for the mechanism */
24
25 extern void auth_dovecot_init(auth_instance *);
26 extern int auth_dovecot_server(auth_instance *, uschar *);
27
28 /* End of dovecot.h */