1 /* $NetBSD: defer.h,v 1.1.1.1 2009/06/23 10:08:45 tron Exp $ */ 2 3 #ifndef _DEFER_H_INCLUDED_ 4 #define _DEFER_H_INCLUDED_ 5 6 /*++ 7 /* NAME 8 /* defer 3h 9 /* SUMMARY 10 /* defer service client interface 11 /* SYNOPSIS 12 /* #include <defer.h> 13 /* DESCRIPTION 14 /* .nf 15 16 /* 17 * Global library. 18 */ 19 #include <bounce.h> 20 21 /* 22 * External interface. 23 */ 24 extern int defer_append(int, const char *, MSG_STATS *, RECIPIENT *, 25 const char *, DSN *); 26 extern int defer_flush(int, const char *, const char *, const char *, 27 const char *, const char *, int); 28 extern int defer_warn(int, const char *, const char *, const char *, 29 const char *, int); 30 31 /* LICENSE 32 /* .ad 33 /* .fi 34 /* The Secure Mailer license must be distributed with this software. 35 /* AUTHOR(S) 36 /* Wietse Venema 37 /* IBM T.J. Watson Research 38 /* P.O. Box 704 39 /* Yorktown Heights, NY 10598, USA 40 /*--*/ 41 42 #endif 43