1 /*************************************************
2 * Exim - an Internet mail transport agent *
3 *************************************************/
5 /* Copyright (c) University of Cambridge 1995 - 2014 */
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;
25 BOOL freeze_exec_fail;
29 BOOL restrict_to_path;
33 BOOL use_classresources;
35 } pipe_transport_options_block;
37 /* Data for reading the private options. */
39 extern optionlist pipe_transport_options[];
40 extern int pipe_transport_options_count;
42 /* Block containing default values. */
44 extern pipe_transport_options_block pipe_transport_option_defaults;
46 /* The main and init entry points for the transport */
48 extern BOOL pipe_transport_entry(transport_instance *, address_item *);
49 extern void pipe_transport_init(transport_instance *);
51 /* End of transports/pipe.h */