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