1 /* $NetBSD: quote_flags.h,v 1.1.1.1 2009/06/23 10:08:47 tron Exp $ */ 2 3 /*++ 4 /* NAME 5 /* quote_flags 3h 6 /* SUMMARY 7 /* quote rfc 821/822 local part 8 /* SYNOPSIS 9 /* #include "quote_flags.h" 10 /* DESCRIPTION 11 /* .nf 12 13 /* 14 * External interface. 15 */ 16 #define QUOTE_FLAG_8BITCLEAN (1<<0) /* be 8-bit clean */ 17 #define QUOTE_FLAG_EXPOSE_AT (1<<1) /* @ is ordinary text */ 18 #define QUOTE_FLAG_APPEND (1<<2) /* append, not overwrite */ 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