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