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