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. */
8 /* Private structure for the private options. */
16 } lmtp_transport_options_block;
18 /* Data for reading the private options. */
20 extern optionlist lmtp_transport_options[];
21 extern int lmtp_transport_options_count;
23 /* Block containing default values. */
25 extern lmtp_transport_options_block lmtp_transport_option_defaults;
27 /* The main and init entry points for the transport */
29 extern BOOL lmtp_transport_entry(transport_instance *, address_item *);
30 extern void lmtp_transport_init(transport_instance *);
32 /* End of transports/lmtp.h */