DANE: smtp transport option dane_require_tls_ciphers
[exim.git] / src / src / transports / lmtp.h
CommitLineData
0756eb3c
PH
1/*************************************************
2* Exim - an Internet mail transport agent *
3*************************************************/
4
0a49a7a4 5/* Copyright (c) University of Cambridge 1995 - 2009 */
0756eb3c
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 *cmd;
12 uschar *skt;
13 int timeout;
14 int options;
f1513293 15 BOOL ignore_quota;
0756eb3c
PH
16} lmtp_transport_options_block;
17
18/* Data for reading the private options. */
19
20extern optionlist lmtp_transport_options[];
21extern int lmtp_transport_options_count;
22
23/* Block containing default values. */
24
25extern lmtp_transport_options_block lmtp_transport_option_defaults;
26
27/* The main and init entry points for the transport */
28
29extern BOOL lmtp_transport_entry(transport_instance *, address_item *);
30extern void lmtp_transport_init(transport_instance *);
31
32/* End of transports/lmtp.h */