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. */
7 /* SPDX-License-Identifier: GPL-2.0-only */
9 /* Private structure for the private options. */
13 uschar *allow_commands;
16 uschar *message_prefix;
17 uschar *message_suffix;
20 uschar *escape_string;
26 BOOL freeze_exec_fail;
30 BOOL restrict_to_path;
34 BOOL use_classresources;
36 } pipe_transport_options_block;
38 /* Data for reading the private options. */
40 extern optionlist pipe_transport_options[];
41 extern int pipe_transport_options_count;
43 /* Block containing default values. */
45 extern pipe_transport_options_block pipe_transport_option_defaults;
47 /* The main and init entry points for the transport */
49 extern BOOL pipe_transport_entry(transport_instance *, address_item *);
50 extern void pipe_transport_init(transport_instance *);
52 /* End of transports/pipe.h */