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. */
9 /* Private structure for the private options. */
18 uschar *current_directory;
19 uschar *expand_cmd_gid;
20 uschar *expand_cmd_uid;
21 } queryprogram_router_options_block;
23 /* Data for reading the private options. */
25 extern optionlist queryprogram_router_options[];
26 extern int queryprogram_router_options_count;
28 /* Block containing default values. */
30 extern queryprogram_router_options_block queryprogram_router_option_defaults;
32 /* The main and initialization entry points for the router */
34 extern int queryprogram_router_entry(router_instance *, address_item *,
35 struct passwd *, int, address_item **, address_item **,
36 address_item **, address_item **);
38 extern void queryprogram_router_init(router_instance *);
40 /* End of routers/queryprogram.h */