/*
* Copyright (C) 1996-2000 Michael R. Elkins <me@mutt.org>
- * Copyright (C) 2000-2001 Edmund Grimley Evans <edmundo@rano.org>
+ * Copyright (C) 2000-2002 Edmund Grimley Evans <edmundo@rano.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
}
}
mutt_convert_string (ps,
- (const char *)mutt_get_default_charset (AssumedCharset),
+ (const char *)mutt_get_default_charset (),
Charset, M_ICONV_HOOK_FROM);
return -1;
}
const char *t, *t1;
int enc = 0, count = 0;
char *charset = NULL;
+ int rv = -1;
pd = d0 = safe_malloc (strlen (s));
for (pp = s; (pp1 = strchr (pp, '?')); pp = pp1 + 1)
{
count++;
+
+ /* hack for non-compliant MUAs that allow unquoted question marks in encoded-text */
+ if (count == 4)
+ {
+ while (pp1 && *(pp1 + 1) != '=')
+ pp1 = strchr(pp1 + 1, '?');
+ if (!pp1)
+ goto error_out_0;
+ }
+
switch (count)
{
case 2:
t = pp1;
if ((t1 = memchr (pp, '*', t - pp)))
t = t1;
- charset = safe_malloc (t - pp + 1);
- memcpy (charset, pp, t - pp);
- charset[t-pp] = '\0';
+ charset = mutt_substrdup (pp, t);
break;
case 3:
if (toupper ((unsigned char) *pp) == 'Q')
else if (toupper ((unsigned char) *pp) == 'B')
enc = ENCBASE64;
else
- {
- FREE (&charset);
- FREE (&d0);
- return (-1);
- }
+ goto error_out_0;
break;
case 4:
if (enc == ENCQUOTEDPRINTABLE)
mutt_convert_string (&d0, charset, Charset, M_ICONV_HOOK_FROM);
mutt_filter_unprintable (&d0);
strfcpy (d, d0, len);
+ rv = 0;
+error_out_0:
FREE (&charset);
FREE (&d0);
- return (0);
+ return rv;
}
/*
;
if (q[0] != '?' || !strchr ("BbQq", q[1]) || q[2] != '?')
continue;
- for (q = q + 3; 0x20 < *q && *q < 0x7f && *q != '?'; q++)
+ /* non-strict check since many MUAs will not encode spaces and question marks */
+ for (q = q + 3; 0x20 <= *q && *q < 0x7f && (*q != '?' || q[1] != '='); q++)
;
if (q[0] != '?' || q[1] != '=')
{
}
}
- rfc2047_decode_word (d, p, dlen);
+ if (rfc2047_decode_word (d, p, dlen) == -1)
+ {
+ /* could not decode word, fall back to displaying the raw string */
+ strfcpy(d, p, dlen);
+ }
found_encoded = 1;
s = q;
n = mutt_strlen (d);