xref: /netbsd-src/external/ibm-public/postfix/dist/src/smtpd/smtpd_expand.h (revision 82ad575716605df31379cf04a2f3efbc97b8a6f5)
1 /*	$NetBSD: smtpd_expand.h,v 1.1.1.1 2011/03/02 19:32:38 tron Exp $	*/
2 
3 /*++
4 /* NAME
5 /*	smtpd_expand 3h
6 /* SUMMARY
7 /*	SMTP server macro expansion
8 /* SYNOPSIS
9 /*	#include <smtpd.h>
10 /*	#include <smtpd_expand.h>
11 /* DESCRIPTION
12 /* .nf
13 
14  /*
15   * Utility library.
16   */
17 #include <vstring.h>
18 #include <mac_expand.h>
19 
20  /*
21   * External interface.
22   */
23 VSTRING *smtpd_expand_filter;
24 void    smtpd_expand_init(void);
25 const char *smtpd_expand_lookup(const char *, int, char *);
26 int     smtpd_expand(SMTPD_STATE *, VSTRING *, const char *, int);
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