1 /*************************************************
2 * Exim - an Internet mail transport agent *
3 *************************************************/
5 /* Copyright (c) University of Cambridge 1995 - 2009 */
6 /* See the file NOTICE for conditions of use and distribution. */
8 /* Private structure for the private options. */
11 uschar *server_socket;
12 } auth_dovecot_options_block;
14 /* Data for reading the private options. */
16 extern optionlist auth_dovecot_options[];
17 extern int auth_dovecot_options_count;
19 /* Block containing default values. */
21 extern auth_dovecot_options_block auth_dovecot_option_defaults;
23 /* The entry points for the mechanism */
25 extern void auth_dovecot_init(auth_instance *);
26 extern int auth_dovecot_server(auth_instance *, uschar *);
28 /* End of dovecot.h */