blob: fcfd981e7af4710be9428d9b72c7c5abe49af4df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
/*************************************************
* Exim - an Internet mail transport agent *
*************************************************/
/* Copyright (c) University of Cambridge 1995 - 2009 */
/* See the file NOTICE for conditions of use and distribution. */
/* Private structure for the private options. */
typedef struct {
uschar *from;
uschar *reply_to;
uschar *to;
uschar *cc;
uschar *bcc;
uschar *subject;
uschar *headers;
uschar *text;
uschar *file;
uschar *logfile;
uschar *oncelog;
uschar *once_repeat;
uschar *never_mail;
int mode;
off_t once_file_size;
BOOL file_expand;
BOOL file_optional;
BOOL return_message;
} autoreply_transport_options_block;
/* Data for reading the private options. */
extern optionlist autoreply_transport_options[];
extern int autoreply_transport_options_count;
/* Block containing default values. */
extern autoreply_transport_options_block autoreply_transport_option_defaults;
/* The main and init entry points for the transport */
extern BOOL autoreply_transport_entry(transport_instance *, address_item *);
extern void autoreply_transport_init(transport_instance *);
/* End of transports/autoreply.h */
|