1 /* $Cambridge: exim/src/src/routers/dnslookup.h,v 1.2 2005/01/04 10:00:44 ph10 Exp $ */
3 /*************************************************
4 * Exim - an Internet mail transport agent *
5 *************************************************/
7 /* Copyright (c) University of Cambridge 1995 - 2005 */
8 /* See the file NOTICE for conditions of use and distribution. */
10 /* Private structure for the private options. */
13 BOOL check_secondary_mx;
17 uschar *widen_domains;
19 uschar *mx_fail_domains;
20 uschar *srv_fail_domains;
22 } dnslookup_router_options_block;
24 /* Data for reading the private options. */
26 extern optionlist dnslookup_router_options[];
27 extern int dnslookup_router_options_count;
29 /* Block containing default values. */
31 extern dnslookup_router_options_block dnslookup_router_option_defaults;
33 /* The main and initialization entry points for the router */
35 extern int dnslookup_router_entry(router_instance *, address_item *,
36 struct passwd *, BOOL, address_item **, address_item **,
37 address_item **, address_item **);
39 extern void dnslookup_router_init(router_instance *);
41 /* End of routers/dnslookup.h */