xref: /netbsd-src/external/ibm-public/postfix/dist/src/global/dsn_filter.h (revision e89934bbf778a6d6d6894877c4da59d0c7835b0f)
1 /*	$NetBSD: dsn_filter.h,v 1.2 2017/02/14 01:16:45 christos Exp $	*/
2 
3 #ifndef _DSN_FILTER_H_INCLUDED_
4 #define _DSN_FILTER_H_INCLUDED_
5 
6 /*++
7 /* NAME
8 /*	dsn_filter 3h
9 /* SUMMARY
10 /*	delivery status filter
11 /* SYNOPSIS
12 /*	#include <dsn_filter.h>
13 /* DESCRIPTION
14 /* .nf
15 
16  /*
17   * External interface.
18   */
19 typedef struct DSN_FILTER DSN_FILTER;
20 
21 extern DSN_FILTER *dsn_filter_create(const char *, const char *);
22 extern DSN *dsn_filter_lookup(DSN_FILTER *, DSN *);
23 extern void dsn_filter_free(DSN_FILTER *);
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