aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2001-11-20 03:27:46 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2001-11-20 03:27:46 +0800
commit5d3580719ac1e50d707fa720597c1c62ff8e4287 (patch)
treec86a6fdd6864e6c1b81d7f7a93867b07347058a6
parentd62e530123058d3b1f6466d771e3d67e0ef741cc (diff)
downloadgsoc2013-evolution-5d3580719ac1e50d707fa720597c1c62ff8e4287.tar
gsoc2013-evolution-5d3580719ac1e50d707fa720597c1c62ff8e4287.tar.gz
gsoc2013-evolution-5d3580719ac1e50d707fa720597c1c62ff8e4287.tar.bz2
gsoc2013-evolution-5d3580719ac1e50d707fa720597c1c62ff8e4287.tar.lz
gsoc2013-evolution-5d3580719ac1e50d707fa720597c1c62ff8e4287.tar.xz
gsoc2013-evolution-5d3580719ac1e50d707fa720597c1c62ff8e4287.tar.zst
gsoc2013-evolution-5d3580719ac1e50d707fa720597c1c62ff8e4287.zip
Updates for compliance with rfc2231
2001-11-19 Jeffrey Stedfast <fejj@ximian.com> 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
-rw-r--r--camel/ChangeLog16
-rw-r--r--camel/camel-mime-utils.c47
2 files changed, 48 insertions, 15 deletions
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 <fejj@ximian.com>
+
+ 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 <fejj@ximian.com>
* providers/imap/camel-imap-utils.c (imap_parse_body): Abort if
diff --git a/camel/camel-mime-utils.c b/camel/camel-mime-utils.c
index 5efd2b0886..674fab7cbc 100644
--- a/camel/camel-mime-utils.c
+++ b/camel/camel-mime-utils.c
@@ -1,3 +1,4 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* Copyright (C) 2000 Ximian Inc.
*
@@ -976,7 +977,7 @@ rfc2047_decode_word(const char *in, int len)
const char *inend = in+len-2;
const char *inbuf;
const char *charset;
- char *encname;
+ char *encname, *p;
int tmplen;
int ret;
char *decword = NULL;
@@ -1026,6 +1027,18 @@ rfc2047_decode_word(const char *in, int len)
memcpy (encname, in + 2, tmplen);
encname[tmplen] = '\0';
+ /* rfc2231 updates rfc2047 encoded words...
+ * The ABNF given in RFC 2047 for encoded-words is:
+ * encoded-word := "=?" charset "?" encoding "?" encoded-text "?="
+ * This specification changes this ABNF to:
+ * encoded-word := "=?" charset ["*" language] "?" encoding "?" encoded-text "?="
+ */
+
+ /* trim off the 'language' part if it's there... */
+ p = strchr (encname, '*');
+ if (p)
+ *p = '\0';
+
charset = e_iconv_charset_name (encname);
inbuf = decword;
@@ -1873,7 +1886,7 @@ rfc2184_decode (const char *in, int len)
inbuf = decword = hex_decode (inptr, inend - inptr);
inlen = strlen (inbuf);
- ic = e_iconv_open("UTF-8", charset);
+ ic = e_iconv_open ("UTF-8", charset);
if (ic != (iconv_t) -1) {
int ret;
@@ -1888,7 +1901,7 @@ rfc2184_decode (const char *in, int len)
decoded = outbase;
}
- e_iconv_close(ic);
+ e_iconv_close (ic);
} else {
decoded = decword;
}
@@ -1912,14 +1925,14 @@ decode_param_token (const char **in)
inptr++;
if (inptr > start) {
*in = inptr;
- return g_strndup (start, inptr-start);
+ return g_strndup (start, inptr - start);
} else {
return NULL;
}
}
static gboolean
-header_decode_rfc2184_param (const char **in, char **paramp, int *part, gboolean *value_is_encoded)
+header_decode_rfc2184_param (const char **in, char **paramp, gboolean *value_is_encoded, int *part)
{
gboolean is_rfc2184 = FALSE;
const char *inptr = *in;
@@ -1963,18 +1976,17 @@ header_decode_rfc2184_param (const char **in, char **paramp, int *part, gboolean
}
static int
-header_decode_param (const char **in, char **paramp, char **valuep, int *is_rfc2184_param)
+header_decode_param (const char **in, char **paramp, char **valuep, int *is_rfc2184_param, int *rfc2184_part)
{
gboolean is_rfc2184_encoded = FALSE;
gboolean is_rfc2184 = FALSE;
const char *inptr = *in;
char *param, *value = NULL;
- int rfc2184_part = -1;
*is_rfc2184_param = FALSE;
+ *rfc2184_part = -1;
- is_rfc2184 = header_decode_rfc2184_param (&inptr, &param, &rfc2184_part,
- &is_rfc2184_encoded);
+ is_rfc2184 = header_decode_rfc2184_param (&inptr, &param, &is_rfc2184_encoded, rfc2184_part);
if (*inptr == '=') {
inptr++;
@@ -1983,7 +1995,7 @@ header_decode_param (const char **in, char **paramp, char **valuep, int *is_rfc2
if (is_rfc2184) {
/* We have ourselves an rfc2184 parameter */
- if (rfc2184_part == -1) {
+ if (*rfc2184_part == -1) {
/* rfc2184 allows the value to be broken into
* multiple parts - this isn't one of them so
* it is safe to decode it.
@@ -2028,7 +2040,7 @@ header_decode_param (const char **in, char **paramp, char **valuep, int *is_rfc2
inbuf = value;
inlen = strlen (inbuf);
- charset = e_iconv_locale_charset();
+ charset = e_iconv_locale_charset ();
ic = e_iconv_open ("UTF-8", charset ? charset : "ISO-8859-1");
if (ic != (iconv_t) -1) {
int ret;
@@ -2778,7 +2790,7 @@ header_mime_decode(const char *in, int *maj, int *min)
}
static struct _header_param *
-header_decode_param_list(const char **in)
+header_decode_param_list (const char **in)
{
const char *inptr = *in;
struct _header_param *head = NULL, *tail = NULL;
@@ -2790,10 +2802,11 @@ header_decode_param_list(const char **in)
while (*inptr == ';') {
struct _header_param *param;
char *name, *value;
+ int rfc2184_part;
inptr++;
/* invalid format? */
- if (header_decode_param (&inptr, &name, &value, &is_rfc2184) != 0)
+ if (header_decode_param (&inptr, &name, &value, &is_rfc2184, &rfc2184_part) != 0)
break;
if (is_rfc2184 && tail && !strcasecmp (name, tail->name)) {
@@ -2801,6 +2814,7 @@ header_decode_param_list(const char **in)
* and it looks like we've found one. Append this value to the
* last value.
*/
+ /* FIXME: we should be ordering these based on rfc2184_part id */
GString *gvalue;
gvalue = g_string_new (tail->value);
@@ -2868,7 +2882,7 @@ header_param_list_decode(const char *in)
return header_decode_param_list(&in);
}
-/* FIXME: I wrote this in a quick & dirty fasion - it may not be 100% correct */
+
static char *
header_encode_param (const unsigned char *in, gboolean *encoded)
{
@@ -2908,13 +2922,15 @@ header_encode_param (const unsigned char *in, gboolean *encoded)
continue;
}
+ /* FIXME: make sure that '\'', '*', and ';' are also encoded */
+
if (c > 127 && c < 256) {
encoding = MAX (encoding, 1);
g_string_sprintfa (out, "%%%c%c", tohex[(c >> 4) & 0xf], tohex[c & 0xf]);
} else if (c >= 256) {
encoding = MAX (encoding, 2);
g_string_sprintfa (out, "%%%c%c", tohex[(c >> 4) & 0xf], tohex[c & 0xf]);
- } else if (is_lwsp (c) || camel_mime_special_table[c] & IS_ESAFE) {
+ } else if (is_lwsp (c) || !(camel_mime_special_table[c] & IS_ESAFE)) {
g_string_sprintfa (out, "%%%c%c", tohex[(c >> 4) & 0xf], tohex[c & 0xf]);
} else {
g_string_append_c (out, c);
@@ -2923,6 +2939,7 @@ header_encode_param (const unsigned char *in, gboolean *encoded)
inptr = newinptr;
}
+ /* FIXME: set the 'language' as well, assuming we can get that info...? */
switch (encoding) {
default:
g_string_prepend (out, "iso-8859-1''");