Add support for setclassresources() in the pipe transport on FreeBSD,
[exim.git] / src / src / transports / pipe.h
CommitLineData
929ba01c 1/* $Cambridge: exim/src/src/transports/pipe.h,v 1.5 2006/02/21 16:24:20 ph10 Exp $ */
0756eb3c
PH
2
3/*************************************************
4* Exim - an Internet mail transport agent *
5*************************************************/
6
d7d7b7b9 7/* Copyright (c) University of Cambridge 1995 - 2006 */
0756eb3c
PH
8/* See the file NOTICE for conditions of use and distribution. */
9
10/* Private structure for the private options. */
11
12typedef struct {
13 uschar *cmd;
14 uschar *allow_commands;
15 uschar *environment;
16 uschar *path;
17 uschar *message_prefix;
18 uschar *message_suffix;
19 uschar *temp_errors;
20 uschar *check_string;
21 uschar *escape_string;
22 int umask;
23 int max_output;
24 int timeout;
25 int options;
26 BOOL freeze_exec_fail;
27 BOOL ignore_status;
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 */