Import Upstream version 4.92
[hcoop/debian/exim4.git] / src / transports / queuefile.h
1 /*************************************************
2 * Exim - an Internet mail transport agent *
3 *************************************************/
4
5 /* Copyright (c) Andrew Colin Kissa <andrew@topdog.za.net> 2016 */
6 /* Copyright (c) University of Cambridge 2016 */
7 /* See the file NOTICE for conditions of use and distribution. */
8
9 /* Private structure for the private options. */
10
11 typedef struct {
12 uschar *dirname;
13 } queuefile_transport_options_block;
14
15 /* Data for reading the private options. */
16
17 extern optionlist queuefile_transport_options[];
18 extern int queuefile_transport_options_count;
19
20 /* Block containing default values. */
21
22 extern queuefile_transport_options_block queuefile_transport_option_defaults;
23
24 /* The main and init entry points for the transport */
25
26 extern BOOL queuefile_transport_entry(transport_instance *, address_item *);
27 extern void queuefile_transport_init(transport_instance *);
28
29 /* End of transports/queuefile.h */