diff options
Diffstat (limited to 'rfc2045/rfc2045.h')
| -rw-r--r-- | rfc2045/rfc2045.h | 13 | 
1 files changed, 13 insertions, 0 deletions
| diff --git a/rfc2045/rfc2045.h b/rfc2045/rfc2045.h index ddfab1f..c7e2a62 100644 --- a/rfc2045/rfc2045.h +++ b/rfc2045/rfc2045.h @@ -69,9 +69,22 @@ struct rfc2045 {  	char	*rw_transfer_encoding;	/* For rewriting */ +	/* Use quoted-printable for 8bit content */  #define	RFC2045_RW_7BIT	1 + +	/* +	** Convert quoted-printable, if the resulting line length is not +	** excessive. +	*/ +  #define	RFC2045_RW_8BIT	2 +	/* +	** Convert quoted printable without checking for maximum resulting +	** line length. +	*/ +#define RFC2045_RW_8BIT_ALWAYS 3 +  	/* Subsections */  	struct rfc2045 *firstpart, *lastpart; | 
