1 /* $Cambridge: exim/src/src/transports/pipe.h,v 1.8 2010/06/05 10:04:44 pdp Exp $ */
3 /*************************************************
4 * Exim - an Internet mail transport agent *
5 *************************************************/
7 /* Copyright (c) University of Cambridge 1995 - 2009 */
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;
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 */