From 5d3580719ac1e50d707fa720597c1c62ff8e4287 Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Mon, 19 Nov 2001 19:27:46 +0000 Subject: Updates for compliance with rfc2231 2001-11-19 Jeffrey Stedfast Updates for compliance with rfc2231 * camel-mime-utils.c (header_encode_param): camel_mime_special_table[c] & IS_ESAFE should have been !(camel_mime_special_table[c] & IS_ESAFE). Also added a few comments for how to improve the code at some future date. (header_decode_param): Now takes an argument rfc2184_part so our caller can get this information as well. (header_decode_param_list): Pass an rfc2184_part argument to header_decode_param and also added a few comments on where to improve on rfc2184/rfc2231 compliance. (rfc2047_decode_word): Updated to respect the updated ABNF syntax of rfc2047 encoded words, yay. svn path=/trunk/; revision=14750 --- camel/ChangeLog | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'camel/ChangeLog') diff --git a/camel/ChangeLog b/camel/ChangeLog index 801b87ca30..631a303eb0 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,3 +1,19 @@ +2001-11-19 Jeffrey Stedfast + + Updates for compliance with rfc2231 + + * camel-mime-utils.c (header_encode_param): + camel_mime_special_table[c] & IS_ESAFE should have been + !(camel_mime_special_table[c] & IS_ESAFE). Also added a few + comments for how to improve the code at some future date. + (header_decode_param): Now takes an argument rfc2184_part so our + caller can get this information as well. + (header_decode_param_list): Pass an rfc2184_part argument to + header_decode_param and also added a few comments on where to + improve on rfc2184/rfc2231 compliance. + (rfc2047_decode_word): Updated to respect the updated ABNF syntax + of rfc2047 encoded words, yay. + 2001-11-16 Jeffrey Stedfast * providers/imap/camel-imap-utils.c (imap_parse_body): Abort if -- cgit