1 /* $Cambridge: exim/src/src/transports/pipe.h,v 1.3 2005/05/03 14:20:01 ph10 Exp $ */
3 /*************************************************
4 * Exim - an Internet mail transport agent *
5 *************************************************/
7 /* Copyright (c) University of Cambridge 1995 - 2005 */
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;
33 } pipe_transport_options_block;
35 /* Data for reading the private options. */
37 extern optionlist pipe_transport_options[];
38 extern int pipe_transport_options_count;
40 /* Block containing default values. */
42 extern pipe_transport_options_block pipe_transport_option_defaults;
44 /* The main and init entry points for the transport */
46 extern BOOL pipe_transport_entry(transport_instance *, address_item *);
47 extern void pipe_transport_init(transport_instance *);
49 /* End of transports/pipe.h */