Bug #43389, 41125 --> header conversion should honor default and over ride charset

information.
r=nhotta
This commit is contained in:
mscott%netscape.com 2000-08-08 02:27:38 +00:00
Родитель 35bd39c38e
Коммит 624abc3bed
2 изменённых файлов: 61 добавлений и 34 удалений

Просмотреть файл

@ -681,9 +681,19 @@ MimeHeaders_convert_rfc1522(MimeDisplayOptions *opt,
if (opt->format_out != nsMimeOutput::nsMimeMessageSaveAs)
output_charset = "UTF-8";
// if we have an override charset, use it first...otherwise fall back to the
// default charset. Note: these charsets will only be used if the header isn't
// mime encoded.
const char * inputCharset = nsnull;
if (opt->override_charset)
inputCharset = opt->override_charset;
else if (opt->default_charset)
inputCharset = opt->default_charset;
int status =
opt->rfc1522_conversion_fn(input, input_length,
0, output_charset, /* no input charset? */
inputCharset, output_charset, /* no input charset? */
&converted, &converted_len,
opt->stream_closure);
if (status < 0)

Просмотреть файл

@ -247,11 +247,16 @@ ValidateRealName(nsMsgAttachmentData *aAttach, MimeHeaders *aHdrs)
{
nsString newAttachName; newAttachName.AssignWithConversion("attachment");
nsresult rv = NS_OK;
nsCAutoString contentType (aAttach->real_type);
PRInt32 pos = contentType.FindCharInSet(";");
if (pos > 0)
contentType.Truncate(pos);
NS_WITH_SERVICE(nsIMIMEService, mimeFinder, kMimeServiceCID, &rv);
if (NS_SUCCEEDED(rv) && mimeFinder)
{
nsIMIMEInfo *mimeInfo = nsnull;
rv = mimeFinder->GetFromMIMEType(aAttach->real_type, &mimeInfo);
rv = mimeFinder->GetFromMIMEType(contentType, &mimeInfo);
if (NS_SUCCEEDED(rv) && mimeInfo)
{
char *aFileExtension = nsnull;
@ -643,43 +648,55 @@ mime_convert_rfc1522 (const char *input_line, PRInt32 input_length,
line[input_length] = 0;
}
// set the default charset to be used....
if (input_charset)
{
PRInt32 charsetLength = nsCRT::strlen(input_charset);
if (charsetLength > 127)
charsetLength = 127;
nsCRT::memcpy(charset, input_charset, charsetLength);
charset[charsetLength] = '\0';;
}
converted = MIME_DecodeMimePartIIStr(line, charset, PR_TRUE);
if (line != input_line)
PR_Free(line);
const char * stringToUse = converted;
const char * charSetToUse = charset;
if (converted)
if (!stringToUse)
{
stringToUse = line;
charSetToUse = input_charset;
}
// If output_charset is NULL, then we should just return the decoded
// header value
if (!output_charset)
{
*output_ret = converted;
*output_size_ret = nsCRT::strlen(converted);
*output_size_ret = nsCRT::strlen(stringToUse);
}
else
{
char *convertedString = NULL;
PRInt32 res = MIME_ConvertString(charset, "UTF-8", converted, &convertedString);
PRInt32 res = MIME_ConvertString(charSetToUse, "UTF-8", stringToUse, &convertedString);
if ( (res != 0) || (!convertedString) )
{
*output_ret = converted;
*output_size_ret = nsCRT::strlen(converted);
*output_ret = nsCRT::strdup(stringToUse);
*output_size_ret = nsCRT::strlen(stringToUse);
}
else
{
PR_Free(converted);
*output_ret = convertedString;
*output_size_ret = nsCRT::strlen(convertedString);
}
}
}
else
{
*output_ret = 0;
*output_size_ret = 0;
}
if (line != input_line)
PR_Free(line);
PR_FREEIF(converted);
return 0;
}