Copyright updates:
[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 */
1e1ddfac 6/* Copyright (c) The Exim Maintainters 2020 */
14aa5a05
PH
7/* See the file NOTICE for conditions of use and distribution. */
8
9/* Private structure for the private options. */
10
11typedef struct {
7d2f2d36
JH
12 uschar * server_socket;
13 BOOL server_tls;
14aa5a05
PH
14} auth_dovecot_options_block;
15
16/* Data for reading the private options. */
17
18extern optionlist auth_dovecot_options[];
19extern int auth_dovecot_options_count;
20
21/* Block containing default values. */
22
23extern auth_dovecot_options_block auth_dovecot_option_defaults;
24
25/* The entry points for the mechanism */
26
27extern void auth_dovecot_init(auth_instance *);
28extern int auth_dovecot_server(auth_instance *, uschar *);
29
30/* End of dovecot.h */