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