Merge branch 'debian' into hcoop_489
[hcoop/debian/exim4.git] / src / transports / queuefile.h
CommitLineData
2813c06e
CE
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
11typedef struct {
12 uschar *dirname;
13} queuefile_transport_options_block;
14
15/* Data for reading the private options. */
16
17extern optionlist queuefile_transport_options[];
18extern int queuefile_transport_options_count;
19
20/* Block containing default values. */
21
22extern queuefile_transport_options_block queuefile_transport_option_defaults;
23
24/* The main and init entry points for the transport */
25
26extern BOOL queuefile_transport_entry(transport_instance *, address_item *);
27extern void queuefile_transport_init(transport_instance *);
28
29/* End of transports/queuefile.h */