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. */
8 /* Private structure for the private options. */
29 } autoreply_transport_options_block;
31 /* Data for reading the private options. */
33 extern optionlist autoreply_transport_options[];
34 extern int autoreply_transport_options_count;
36 /* Block containing default values. */
38 extern autoreply_transport_options_block autoreply_transport_option_defaults;
40 /* The main and init entry points for the transport */
42 extern BOOL autoreply_transport_entry(transport_instance *, address_item *);
43 extern void autoreply_transport_init(transport_instance *);
45 /* End of transports/autoreply.h */