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