1 /*************************************************
2 * Exim - an Internet mail transport agent *
3 *************************************************/
5 /* Copyright (c) University of Cambridge 1995 - 2009 */
6 /* See the file NOTICE for conditions of use and distribution. */
7 /* SPDX-License-Identifier: GPL-2.0-or-later */
9 /* Private structure for the private options. */
30 } autoreply_transport_options_block;
32 /* Data for reading the private options. */
34 extern optionlist autoreply_transport_options[];
35 extern int autoreply_transport_options_count;
37 /* Block containing default values. */
39 extern autoreply_transport_options_block autoreply_transport_option_defaults;
41 /* The main and init entry points for the transport */
43 extern BOOL autoreply_transport_entry(transport_instance *, address_item *);
44 extern void autoreply_transport_init(transport_instance *);
46 /* End of transports/autoreply.h */