1/*	$NetBSD$	*/
2
3/*++
4/* NAME
5/*	qmqpd 3h
6/* SUMMARY
7/*	QMQP protocol
8/* SYNOPSIS
9/*	include <qmqpd_proto.h>
10/* DESCRIPTION
11/* .nf
12
13 /*
14  * QMQP protocol status codes.
15  */
16#define QMQP_STAT_OK	'K'		/* success */
17#define QMQP_STAT_RETRY	'Z'		/* recoverable error */
18#define QMQP_STAT_HARD	'D'		/* unrecoverable error */
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