Tidy up "make" output along the lines of a 2.6 kernel make (just a short
[exim.git] / src / src / transports / lmtp.h
CommitLineData
c988f1f4 1/* $Cambridge: exim/src/src/transports/lmtp.h,v 1.2 2005/01/04 10:00:45 ph10 Exp $ */
0756eb3c
PH
2
3/*************************************************
4* Exim - an Internet mail transport agent *
5*************************************************/
6
c988f1f4 7/* Copyright (c) University of Cambridge 1995 - 2005 */
0756eb3c
PH
8/* See the file NOTICE for conditions of use and distribution. */
9
10/* Private structure for the private options. */
11
12typedef struct {
13 uschar *cmd;
14 uschar *skt;
15 int timeout;
16 int options;
17} lmtp_transport_options_block;
18
19/* Data for reading the private options. */
20
21extern optionlist lmtp_transport_options[];
22extern int lmtp_transport_options_count;
23
24/* Block containing default values. */
25
26extern lmtp_transport_options_block lmtp_transport_option_defaults;
27
28/* The main and init entry points for the transport */
29
30extern BOOL lmtp_transport_entry(transport_instance *, address_item *);
31extern void lmtp_transport_init(transport_instance *);
32
33/* End of transports/lmtp.h */