1 /* $NetBSD: smtpd_expand.h,v 1.3 2020/03/18 19:05:20 christos 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 extern VSTRING *smtpd_expand_filter; 24 void smtpd_expand_init(void); 25 const char *smtpd_expand_lookup(const char *, int, void *); 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 /* Wietse Venema 39 /* Google, Inc. 40 /* 111 8th Avenue 41 /* New York, NY 10011, USA 42 /*--*/ 43