1 /* $Cambridge: exim/src/src/transports/pipe.h,v 1.1 2004/10/07 13:10:02 ph10 Exp $ */
3 /*************************************************
4 * Exim - an Internet mail transport agent *
5 *************************************************/
7 /* Copyright (c) University of Cambridge 1995 - 2004 */
8 /* See the file NOTICE for conditions of use and distribution. */
10 /* Private structure for the private options. */
14 uschar *allow_commands;
17 uschar *message_prefix;
18 uschar *message_suffix;
21 uschar *escape_string;
26 BOOL freeze_exec_fail;
28 BOOL restrict_to_path;
32 } pipe_transport_options_block;
34 /* Data for reading the private options. */
36 extern optionlist pipe_transport_options[];
37 extern int pipe_transport_options_count;
39 /* Block containing default values. */
41 extern pipe_transport_options_block pipe_transport_option_defaults;
43 /* The main and init entry points for the transport */
45 extern BOOL pipe_transport_entry(transport_instance *, address_item *);
46 extern void pipe_transport_init(transport_instance *);
48 /* End of transports/pipe.h */