1/*++
2/* NAME
3/*	quote_flags 3h
4/* SUMMARY
5/*	quote rfc 821/822 local part
6/* SYNOPSIS
7/*	#include "quote_flags.h"
8/* DESCRIPTION
9/* .nf
10
11 /*
12  * External interface.
13  */
14#define QUOTE_FLAG_8BITCLEAN	(1<<0)	/* be 8-bit clean */
15#define QUOTE_FLAG_EXPOSE_AT	(1<<1)	/* @ is ordinary text */
16#define QUOTE_FLAG_APPEND	(1<<2)	/* append, not overwrite */
17
18/* LICENSE
19/* .ad
20/* .fi
21/*	The Secure Mailer license must be distributed with this software.
22/* AUTHOR(S)
23/*	Wietse Venema
24/*	IBM T.J. Watson Research
25/*	P.O. Box 704
26/*	Yorktown Heights, NY 10598, USA
27/*--*/
28