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