Rename dns_use_dnssec to dns_dnssec_ok.
[exim.git] / src / src / transports / pipe.h
CommitLineData
0756eb3c
PH
1/*************************************************
2* Exim - an Internet mail transport agent *
3*************************************************/
4
ca5aa725 5/* Copyright (c) University of Cambridge 1995 - 2009 */
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;
24 BOOL freeze_exec_fail;
2fe76745 25 BOOL freeze_signal;
0756eb3c 26 BOOL ignore_status;
a29e5231 27 BOOL permit_coredump;
0756eb3c 28 BOOL restrict_to_path;
2e2a30b4 29 BOOL timeout_defer;
0756eb3c
PH
30 BOOL use_shell;
31 BOOL use_bsmtp;
929ba01c 32 BOOL use_classresources;
0756eb3c
PH
33 BOOL use_crlf;
34} pipe_transport_options_block;
35
36/* Data for reading the private options. */
37
38extern optionlist pipe_transport_options[];
39extern int pipe_transport_options_count;
40
41/* Block containing default values. */
42
43extern pipe_transport_options_block pipe_transport_option_defaults;
44
45/* The main and init entry points for the transport */
46
47extern BOOL pipe_transport_entry(transport_instance *, address_item *);
48extern void pipe_transport_init(transport_instance *);
49
50/* End of transports/pipe.h */