1 /*************************************************
2 * Exim - an Internet mail transport agent *
3 *************************************************/
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 */
9 /* Private structure for the private options. */
17 } lmtp_transport_options_block;
19 /* Data for reading the private options. */
21 extern optionlist lmtp_transport_options[];
22 extern int lmtp_transport_options_count;
24 /* Block containing default values. */
26 extern lmtp_transport_options_block lmtp_transport_option_defaults;
28 /* The main and init entry points for the transport */
30 extern BOOL lmtp_transport_entry(transport_instance *, address_item *);
31 extern void lmtp_transport_init(transport_instance *);
33 /* End of transports/lmtp.h */