tidying
[exim.git] / src / src / transports / pipe.h
CommitLineData
0756eb3c
PH
1/*************************************************
2* Exim - an Internet mail transport agent *
3*************************************************/
4
5a66c31b 5/* Copyright (c) University of Cambridge 1995 - 2014 */
0756eb3c
PH
6/* See the file NOTICE for conditions of use and distribution. */
7
8/* Private structure for the private options. */
9
10typedef struct {
11 uschar *cmd;
12 uschar *allow_commands;
13 uschar *environment;
14 uschar *path;
15 uschar *message_prefix;
16 uschar *message_suffix;
17 uschar *temp_errors;
18 uschar *check_string;
19 uschar *escape_string;
20 int umask;
21 int max_output;
22 int timeout;
23 int options;
09792322 24 BOOL force_command;
0756eb3c 25 BOOL freeze_exec_fail;
2fe76745 26 BOOL freeze_signal;
0756eb3c 27 BOOL ignore_status;
a29e5231 28 BOOL permit_coredump;
0756eb3c 29 BOOL restrict_to_path;
2e2a30b4 30 BOOL timeout_defer;
0756eb3c
PH
31 BOOL use_shell;
32 BOOL use_bsmtp;
929ba01c 33 BOOL use_classresources;
0756eb3c
PH
34 BOOL use_crlf;
35} pipe_transport_options_block;
36
37/* Data for reading the private options. */
38
39extern optionlist pipe_transport_options[];
40extern int pipe_transport_options_count;
41
42/* Block containing default values. */
43
44extern pipe_transport_options_block pipe_transport_option_defaults;
45
46/* The main and init entry points for the transport */
47
48extern BOOL pipe_transport_entry(transport_instance *, address_item *);
49extern void pipe_transport_init(transport_instance *);
50
51/* End of transports/pipe.h */