xref: /netbsd-src/external/ibm-public/postfix/dist/src/global/config.h (revision 0a3071956a3a9fdebdbf7f338cf2d439b45fc728)
1 /*	$NetBSD: config.h,v 1.1.1.1 2009/06/23 10:08:45 tron Exp $	*/
2 
3 #ifndef _CONFIG_H_INCLUDED_
4 #define _CONFIG_H_INCLUDED_
5 
6 /*++
7 /* NAME
8 /*	config 3h
9 /* SUMMARY
10 /*	compatibility
11 /* SYNOPSIS
12 /*	#include <config.h>
13 /* DESCRIPTION
14 /* .nf
15 
16  /*
17   * Global library.
18   */
19 #include <mail_conf.h>
20 
21  /*
22   * Aliases.
23   */
24 #define config_eval			mail_conf_eval
25 #define config_lookup			mail_conf_lookup
26 #define config_lookup_eval		mail_conf_lookup_eval
27 #define config_read			mail_conf_read
28 #define read_config			mail_conf_update
29 #define get_config_bool			get_mail_conf_bool
30 #define get_config_bool_fn		get_mail_conf_bool_fn
31 #define get_config_bool_fn_table	get_mail_conf_bool_fn_table
32 #define get_config_bool_table		get_mail_conf_bool_table
33 #define get_config_int			get_mail_conf_int
34 #define get_config_int2			get_mail_conf_int2
35 #define get_config_int_fn		get_mail_conf_int_fn
36 #define get_config_int_fn_table		get_mail_conf_int_fn_table
37 #define get_config_int_table		get_mail_conf_int_table
38 #define get_config_raw			get_mail_conf_raw
39 #define get_config_raw_fn		get_mail_conf_raw_fn
40 #define get_config_raw_fn_table		get_mail_conf_raw_fn_table
41 #define get_config_raw_table		get_mail_conf_raw_table
42 #define get_config_str			get_mail_conf_str
43 #define get_config_str_fn		get_mail_conf_str_fn
44 #define get_config_str_fn_table		get_mail_conf_str_fn_table
45 #define get_config_str_table		get_mail_conf_str_table
46 #define set_config_bool			set_mail_conf_bool
47 #define set_config_int			set_mail_conf_int
48 #define set_config_str			set_mail_conf_str
49 
50 /* LICENSE
51 /* .ad
52 /* .fi
53 /*	The Secure Mailer license must be distributed with this software.
54 /* AUTHOR(S)
55 /*	Wietse Venema
56 /*	IBM T.J. Watson Research
57 /*	P.O. Box 704
58 /*	Yorktown Heights, NY 10598, USA
59 /*--*/
60 
61 #endif
62