xref: /netbsd-src/external/ibm-public/postfix/dist/src/global/input_transp.h (revision 41fbaed053f8fbfdf9d2a4ee0a7386a3c83f8505)
1*41fbaed0Stron /*	$NetBSD: input_transp.h,v 1.1.1.1 2009/06/23 10:08:46 tron Exp $	*/
2*41fbaed0Stron 
3*41fbaed0Stron #ifndef _INPUT_TRANSP_INCLUDED_
4*41fbaed0Stron #define _INPUT_TRANSP_INCLUDED_
5*41fbaed0Stron 
6*41fbaed0Stron /*++
7*41fbaed0Stron /* NAME
8*41fbaed0Stron /*	input_transp 3h
9*41fbaed0Stron /* SUMMARY
10*41fbaed0Stron /*	receive transparency control
11*41fbaed0Stron /* SYNOPSIS
12*41fbaed0Stron /*	#include <input_transp.h>
13*41fbaed0Stron /* DESCRIPTION
14*41fbaed0Stron /* .nf
15*41fbaed0Stron 
16*41fbaed0Stron  /*
17*41fbaed0Stron   * External interface.
18*41fbaed0Stron   */
19*41fbaed0Stron #define INPUT_TRANSP_UNKNOWN_RCPT	(1<<0)
20*41fbaed0Stron #define INPUT_TRANSP_ADDRESS_MAPPING	(1<<1)
21*41fbaed0Stron #define INPUT_TRANSP_HEADER_BODY	(1<<2)
22*41fbaed0Stron #define INPUT_TRANSP_MILTER		(1<<3)
23*41fbaed0Stron 
24*41fbaed0Stron extern int input_transp_mask(const char *, const char *);
25*41fbaed0Stron extern int input_transp_cleanup(int, int);
26*41fbaed0Stron 
27*41fbaed0Stron /* LICENSE
28*41fbaed0Stron /* .ad
29*41fbaed0Stron /* .fi
30*41fbaed0Stron /*	The Secure Mailer license must be distributed with this software.
31*41fbaed0Stron /* AUTHOR(S)
32*41fbaed0Stron /*	Wietse Venema
33*41fbaed0Stron /*	IBM T.J. Watson Research
34*41fbaed0Stron /*	P.O. Box 704
35*41fbaed0Stron /*	Yorktown Heights, NY 10598, USA
36*41fbaed0Stron /*--*/
37*41fbaed0Stron 
38*41fbaed0Stron #endif
39