1/*++
2/* NAME
3/*	smtpd_chat 3h
4/* SUMMARY
5/*	SMTP server request/response support
6/* SYNOPSIS
7/*	#include <smtpd.h>
8/*	#include <smtpd_chat.h>
9/* DESCRIPTION
10/* .nf
11
12 /*
13  * External interface.
14  */
15extern void smtpd_chat_reset(SMTPD_STATE *);
16extern void smtpd_chat_query(SMTPD_STATE *);
17extern void PRINTFLIKE(2, 3) smtpd_chat_reply(SMTPD_STATE *, const char *, ...);
18extern void smtpd_chat_notify(SMTPD_STATE *);
19
20/* LICENSE
21/* .ad
22/* .fi
23/*	The Secure Mailer license must be distributed with this software.
24/* AUTHOR(S)
25/*	Wietse Venema
26/*	IBM T.J. Watson Research
27/*	P.O. Box 704
28/*	Yorktown Heights, NY 10598, USA
29/*--*/
30
31