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. */
12 uschar *allow_commands;
15 uschar *message_prefix;
16 uschar *message_suffix;
19 uschar *escape_string;
24 BOOL freeze_exec_fail;
28 BOOL restrict_to_path;
32 BOOL use_classresources;
34 } pipe_transport_options_block;
36 /* Data for reading the private options. */
38 extern optionlist pipe_transport_options[];
39 extern int pipe_transport_options_count;
41 /* Block containing default values. */
43 extern pipe_transport_options_block pipe_transport_option_defaults;
45 /* The main and init entry points for the transport */
47 extern BOOL pipe_transport_entry(transport_instance *, address_item *);
48 extern void pipe_transport_init(transport_instance *);
50 /* End of transports/pipe.h */