diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2001-11-27 05:30:55 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-11-27 05:30:55 +0800 |
commit | 722899621625bafb134152534a3af08a0c9ef837 (patch) | |
tree | c86d5d549a7a3c3a47632206557c35f90541a834 /camel/camel-mime-part.h | |
parent | 6f9e5d77d970584de089538d1bd8913f03973048 (diff) | |
download | gsoc2013-evolution-722899621625bafb134152534a3af08a0c9ef837.tar.gz gsoc2013-evolution-722899621625bafb134152534a3af08a0c9ef837.tar.zst gsoc2013-evolution-722899621625bafb134152534a3af08a0c9ef837.zip |
For the uudecoding mode, garble up the "begin <mode> <filename>" line
2001-11-26 Jeffrey Stedfast <fejj@ximian.com>
* camel-mime-filter-basic.c: For the uudecoding mode, garble up
the "begin <mode> <filename>" line before decoding.
* camel-mime-part-utils.c
(simple_data_wrapper_construct_from_parser): Add a uudecoder if
the transfer encoding is x-uuencode.
* camel-mime-part.c (write_to_stream): Handle x-uuencoded content
too.
svn path=/trunk/; revision=14789
Diffstat (limited to 'camel/camel-mime-part.h')
-rw-r--r-- | camel/camel-mime-part.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/camel/camel-mime-part.h b/camel/camel-mime-part.h index 785fecf9d9..4f05ecb71b 100644 --- a/camel/camel-mime-part.h +++ b/camel/camel-mime-part.h @@ -50,6 +50,7 @@ enum _CamelMimePartEncodingType { CAMEL_MIME_PART_ENCODING_BASE64, CAMEL_MIME_PART_ENCODING_QUOTEDPRINTABLE, CAMEL_MIME_PART_ENCODING_BINARY, + CAMEL_MIME_PART_ENCODING_UUENCODE, CAMEL_MIME_PART_NUM_ENCODINGS }; typedef enum _CamelMimePartEncodingType CamelMimePartEncodingType; |