diff options
author | Dan Winship <danw@src.gnome.org> | 2000-06-13 00:49:59 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2000-06-13 00:49:59 +0800 |
commit | 9573b501a807c22010a9ed50825db146296995eb (patch) | |
tree | e9287c0480233d69c32a9f1edae28675f54bdaaa /camel/camel-types.h | |
parent | 038f94bb30e7b0a45fbd26e5115a4d04caa1a270 (diff) | |
download | gsoc2013-evolution-9573b501a807c22010a9ed50825db146296995eb.tar.gz gsoc2013-evolution-9573b501a807c22010a9ed50825db146296995eb.tar.zst gsoc2013-evolution-9573b501a807c22010a9ed50825db146296995eb.zip |
New filter to do CRLF<->LF conversion. (Currently only tested in the
* camel-mime-filter-crlf.c: New filter to do CRLF<->LF conversion.
(Currently only tested in the LF->CRLF direction.)
* camel-mime-part.c (write_to_stream): if content-type is text,
and it's QP or B64 encoded, pass through the CRLF filter before
the other filter to satisfy the "canonical encoding" rules in the
MIME spec.
svn path=/trunk/; revision=3529
Diffstat (limited to 'camel/camel-types.h')
-rw-r--r-- | camel/camel-types.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/camel/camel-types.h b/camel/camel-types.h index 3ae1626752..62567da1d6 100644 --- a/camel/camel-types.h +++ b/camel/camel-types.h @@ -40,6 +40,7 @@ typedef struct _CamelMimeFilterBasic CamelMimeFilterBasic; typedef struct _CamelMimeFilterCharset CamelMimeFilterCharset; typedef struct _CamelMimeFilterIndex CamelMimeFilterIndex; typedef struct _CamelMimeFilterSave CamelMimeFilterSave; +typedef struct _CamelMimeFilterCRLF CamelMimeFilterCRLF; typedef struct _CamelMimeMessage CamelMimeMessage; typedef struct _CamelMimeParser CamelMimeParser; typedef struct _CamelMimePart CamelMimePart; |