1 /* $NetBSD: smtp_reply_footer.h,v 1.2 2017/02/14 01:16:45 christos Exp $ */ 2 3 #ifndef _SMTP_REPLY_FOOTER_H_INCLUDED_ 4 #define _SMTP_REPLY_FOOTER_H_INCLUDED_ 5 6 /*++ 7 /* NAME 8 /* smtp_reply_footer 3h 9 /* SUMMARY 10 /* SMTP reply footer text support 11 /* SYNOPSIS 12 /* #include <smtp_reply_footer.h> 13 /* DESCRIPTION 14 /* .nf 15 16 /* 17 * Utility library. 18 */ 19 #include <vstring.h> 20 #include <mac_expand.h> 21 22 /* 23 * External interface. 24 */ 25 extern int smtp_reply_footer(VSTRING *, ssize_t, const char *, const char *, 26 MAC_EXP_LOOKUP_FN, void *); 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 44 #endif 45