1 /*************************************************
2 * Exim - an Internet mail transport agent *
3 *************************************************/
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. */
9 /* Private structure for the private options. */
13 } queuefile_transport_options_block;
15 /* Data for reading the private options. */
17 extern optionlist queuefile_transport_options[];
18 extern int queuefile_transport_options_count;
20 /* Block containing default values. */
22 extern queuefile_transport_options_block queuefile_transport_option_defaults;
24 /* The main and init entry points for the transport */
26 extern BOOL queuefile_transport_entry(transport_instance *, address_item *);
27 extern void queuefile_transport_init(transport_instance *);
29 /* End of transports/queuefile.h */