SPDX: license tags (mostly by guesswork)
[exim.git] / src / 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 /* SPDX-License-Identifier: GPL-2.0-only */
9
10 /* Private structure for the private options. */
11
12 typedef struct {
13     uschar *dirname;
14 } queuefile_transport_options_block;
15
16 /* Data for reading the private options. */
17
18 extern optionlist queuefile_transport_options[];
19 extern int queuefile_transport_options_count;
20
21 /* Block containing default values. */
22
23 extern queuefile_transport_options_block queuefile_transport_option_defaults;
24
25 /* The main and init entry points for the transport */
26
27 extern BOOL queuefile_transport_entry(transport_instance *, address_item *);
28 extern void queuefile_transport_init(transport_instance *);
29
30 /* End of transports/queuefile.h */