Documentation for randint. Better randomness defaults. Fixes: #722
[exim.git] / src / src / auths / dovecot.h
CommitLineData
184e8823 1/* $Cambridge: exim/src/src/auths/dovecot.h,v 1.2 2007/01/08 10:50:19 ph10 Exp $ */
14aa5a05
PH
2
3/*************************************************
4* Exim - an Internet mail transport agent *
5*************************************************/
6
184e8823 7/* Copyright (c) University of Cambridge 1995 - 2007 */
14aa5a05
PH
8/* See the file NOTICE for conditions of use and distribution. */
9
10/* Private structure for the private options. */
11
12typedef struct {
13 uschar *server_socket;
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 */