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