blob: 0e45b51b020445485286d769e3e9911916392913 (
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
|
/*************************************************
* Exim - an Internet mail transport agent *
*************************************************/
/* Copyright (c) Andrew Colin Kissa <andrew@topdog.za.net> 2016 */
/* Copyright (c) University of Cambridge 2016 */
/* See the file NOTICE for conditions of use and distribution. */
/* Private structure for the private options. */
typedef struct {
uschar *dirname;
} queuefile_transport_options_block;
/* Data for reading the private options. */
extern optionlist queuefile_transport_options[];
extern int queuefile_transport_options_count;
/* Block containing default values. */
extern queuefile_transport_options_block queuefile_transport_option_defaults;
/* The main and init entry points for the transport */
extern BOOL queuefile_transport_entry(transport_instance *, address_item *);
extern void queuefile_transport_init(transport_instance *);
/* End of transports/queuefile.h */
|