1#ifndef _MAIL_ERROR_H_INCLUDED_
2#define _MAIL_ERROR_H_INCLUDED_
3
4/*++
5/* NAME
6/*	mail_error 3h
7/* SUMMARY
8/*	mail error classes
9/* SYNOPSIS
10/*	#include <mail_error.h>
11/* DESCRIPTION
12/* .nf
13
14 /*
15  * Utility library.
16  */
17#include <name_mask.h>
18
19 /*
20  * External interface.
21  */
22#define MAIL_ERROR_POLICY	(1<<0)
23#define MAIL_ERROR_PROTOCOL	(1<<1)
24#define MAIL_ERROR_BOUNCE	(1<<2)
25#define MAIL_ERROR_SOFTWARE	(1<<3)
26#define MAIL_ERROR_RESOURCE	(1<<4)
27#define MAIL_ERROR_2BOUNCE	(1<<5)
28#define MAIL_ERROR_DELAY	(1<<6)
29#define MAIL_ERROR_DATA		(1<<7)
30
31extern const NAME_MASK mail_error_masks[];
32
33/* LICENSE
34/* .ad
35/* .fi
36/*	The Secure Mailer license must be distributed with this software.
37/* AUTHOR(S)
38/*	Wietse Venema
39/*	IBM T.J. Watson Research
40/*	P.O. Box 704
41/*	Yorktown Heights, NY 10598, USA
42/*--*/
43
44#endif
45