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