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 */
10 /* Private structure for the private options. */
19 uschar *current_directory;
20 uschar *expand_cmd_gid;
21 uschar *expand_cmd_uid;
22 } queryprogram_router_options_block;
24 /* Data for reading the private options. */
26 extern optionlist queryprogram_router_options[];
27 extern int queryprogram_router_options_count;
29 /* Block containing default values. */
31 extern queryprogram_router_options_block queryprogram_router_option_defaults;
33 /* The main and initialization entry points for the router */
35 extern int queryprogram_router_entry(router_instance *, address_item *,
36 struct passwd *, int, address_item **, address_item **,
37 address_item **, address_item **);
39 extern void queryprogram_router_init(router_instance *);
41 /* End of routers/queryprogram.h */