52fcc0c8ab42e8b8a84e64522858ac0ee0a5959b
[exim.git] / src / src / transports / lmtp.h
1 /* $Cambridge: exim/src/src/transports/lmtp.h,v 1.6 2009/11/16 19:50:39 nm4 Exp $ */
2
3 /*************************************************
4 * Exim - an Internet mail transport agent *
5 *************************************************/
6
7 /* Copyright (c) University of Cambridge 1995 - 2009 */
8 /* See the file NOTICE for conditions of use and distribution. */
9
10 /* Private structure for the private options. */
11
12 typedef struct {
13 uschar *cmd;
14 uschar *skt;
15 int timeout;
16 int options;
17 BOOL ignore_quota;
18 } lmtp_transport_options_block;
19
20 /* Data for reading the private options. */
21
22 extern optionlist lmtp_transport_options[];
23 extern int lmtp_transport_options_count;
24
25 /* Block containing default values. */
26
27 extern lmtp_transport_options_block lmtp_transport_option_defaults;
28
29 /* The main and init entry points for the transport */
30
31 extern BOOL lmtp_transport_entry(transport_instance *, address_item *);
32 extern void lmtp_transport_init(transport_instance *);
33
34 /* End of transports/lmtp.h */