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