1 #ifndef _SMTP_REPLY_FOOTER_H_INCLUDED_
2 #define _SMTP_REPLY_FOOTER_H_INCLUDED_
3 
4 /*++
5 /* NAME
6 /*	smtp_reply_footer 3h
7 /* SUMMARY
8 /*	SMTP reply footer text support
9 /* SYNOPSIS
10 /*	#include <smtp_reply_footer.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 int smtp_reply_footer(VSTRING *, ssize_t, const char *, const char *,
24 			             MAC_EXP_LOOKUP_FN, void *);
25 
26 /* LICENSE
27 /* .ad
28 /* .fi
29 /*	The Secure Mailer license must be distributed with this software.
30 /* AUTHOR(S)
31 /*	Wietse Venema
32 /*	IBM T.J. Watson Research
33 /*	P.O. Box 704
34 /*	Yorktown Heights, NY 10598, USA
35 /*
36 /*	Wietse Venema
37 /*	Google, Inc.
38 /*	111 8th Avenue
39 /*	New York, NY 10011, USA
40 /*--*/
41 
42 #endif
43