1/*	$NetBSD$	*/
2
3#ifndef _EXT_PROP_INCLUDED_
4#define _EXT_PROP_INCLUDED_
5
6/*++
7/* NAME
8/*	ext_prop 3h
9/* SUMMARY
10/*	address extension propagation control
11/* SYNOPSIS
12/*	#include <ext_prop.h>
13/* DESCRIPTION
14/* .nf
15
16 /*
17  * External interface.
18  */
19#define EXT_PROP_CANONICAL	(1<<0)
20#define EXT_PROP_VIRTUAL	(1<<1)
21#define EXT_PROP_ALIAS		(1<<2)
22#define EXT_PROP_FORWARD	(1<<3)
23#define EXT_PROP_INCLUDE	(1<<4)
24#define EXT_PROP_GENERIC	(1<<5)
25
26extern int ext_prop_mask(const char *, const char *);
27
28/* LICENSE
29/* .ad
30/* .fi
31/*	The Secure Mailer license must be distributed with this software.
32/* AUTHOR(S)
33/*	Wietse Venema
34/*	IBM T.J. Watson Research
35/*	P.O. Box 704
36/*	Yorktown Heights, NY 10598, USA
37/*--*/
38
39#endif
40