Open meehi opened 12 years ago
Can you forward an example message to me? andy.edinborough@gmail.com
hi, yeah sure. I have forwarded the email from my gmail account: mihaly.sogorka@gmail.com. The mail came from info@it2it.hu.
Thanks for the help, Mihaly Sogorka
-----Original Message----- From: Andy Edinborough reply@reply.github.com To: meehi mihaly.sogorka@aol.com Sent: Tue, Mar 20, 2012 4:53 am Subject: Re: [aenetmail] Body character coding problem (#54)
Can you forward an example message to me? andy.edinborough@gmail.com
Reply to this email directly or view it on GitHub: https://github.com/andyedinborough/aenetmail/issues/54#issuecomment-4588736
Hi!
I modified and complied your code in ImapClient.cs class in the GetMessages() procedure with the following code:
string pattern = "charset=";
string temp_charset = Encoding.Default.BodyName;
string charset = "";
while (remaining > 0) {
read = _Stream.Read(buffer, 0, Math.Min(remaining, buffer.Length));
if (temp_charset != charset)
{
string temp_body = System.Text.Encoding.GetEncoding(temp_charset).GetString(buffer, 0, read);
temp_body = temp_body.Replace("\"", "").Replace(" ", "");
if (temp_body.ToLower().Contains(pattern))
{
int start_pos = temp_body.IndexOf(pattern) + pattern.Length;
int end_pos = temp_body.IndexOf("\r\n", start_pos);
if (end_pos == -1)
{
end_pos = temp_body.IndexOf("\r", start_pos);
if (end_pos == -1)
end_pos = temp_body.IndexOf(";", start_pos);
}
if (end_pos != -1)
{
int length = end_pos - start_pos;
charset = temp_body.Substring(start_pos, length).Replace(";", "");
if (charset != "" && charset != temp_charset)
temp_charset = charset;
}
}
}
body.Append(System.Text.Encoding.GetEncoding(temp_charset).GetString(buffer, 0, read));
remaining -= read;
}
I have tested it with Unicode mails and they now displaying correctly. The code is not nice but working. It might give you an idea how to workaround this problem.
Best regards, Mihaly Sogorka
-----Original Message----- From: Andy Edinborough reply@reply.github.com To: meehi mihaly.sogorka@aol.com Sent: Tue, Mar 20, 2012 4:53 am Subject: Re: [aenetmail] Body character coding problem (#54)
Can you forward an example message to me? andy.edinborough@gmail.com
Reply to this email directly or view it on GitHub: https://github.com/andyedinborough/aenetmail/issues/54#issuecomment-4588736
Related to this problem I found another one in HeaderObject.cs class in SetBody(string value) procedure: This line carries on the same character decoding issue:
var data = Convert.FromBase64String(value);
Previous line should look like something like this:
value = System.Text.Encoding.GetEncoding(??BODY_CHARSET??).GetString(Convert.FromBase64String(value));
So the character encoding of the body (charset) should be stored in the object model somehow. This way you could refer to it any time when you need to use a decoder function.
I can see two cases where your code will fail :
And i think the charset header is not even mandatory.
well I know it's not perfect but working. If you check the code then you can see it will use your OS default codepage if it cant find the charset in body: string temp_charset = Encoding.Default.BodyName. But in most cases it finds the charset I made many test with different mails.
Can you please provide me with a codeblock what you have changed? thanks
Hi, could you try with this code ? It seems to be working for me.
[Edited : the part where I decoded quoted-printable and base64 was just stupid........] [EDITED 2 : removed the getMessages code which was taking too much space. See a few post down for a rtf containing the function
Added in utilities :
{
int indexOf=-1;
int tmp = -1;
int j = 0;
end = end == -1 ? fullArray.Length - 1 : end;
for (int i = start; i <= end; i++)
{
if (fullArray.GetValue(i).Equals(innerArray.GetValue(j)))
{
if (j == 0) { tmp = i;}
else { if (j == innerArray.Length - 1) { indexOf = tmp; break; } }
j++;
}
else { j = 0; }
}
return indexOf;
}
internal static int LastIndexOfArray(Array fullArray, Array innerArray, int start = 0, int end = -1) { int lastIndexOf = -1; int tmp = -1; int j = innerArray.Length - 1; end = end == -1 ? fullArray.Length - 1 : end; for (int i = end; i > start; i--) { if (fullArray.GetValue(i).Equals(innerArray.GetValue(j))) { if (j == innerArray.Length - 1) { tmp = i; } else { if (j == 0) { lastIndexOf = tmp; break; } } j--; } else { j = innerArray.Length - 1; } } return lastIndexOf; }```
Please send me the whole GetMessages() function because some of the declaration is missing from the above code.
what is cancellationPending variable?
Sorry, you should just remove the lines "if (cancellationPending) throw new GetMessagesCancelledException();" i forgot to take them off, they are not part of the library.
I think the regex needs to be adjusted because i found a few emails that would make it fail. E.g. when the charset end with a ";".
It's working with UTF8 mails but not with Latin1 charachters. It throw an exception in Utitilities, this line:
if (fullArray.GetValue(i).Equals(innerArray.GetValue(j)))
Index was outside the bounds of the array.
Have you tried with the method in the rtf file i sent ? I had inverted two lines, which caused the issue. About latin charachters, with me it seems to work, i can see all accents fine.
So far i noticed to bugs :
Yes with the rtf file it's working. Nice. I just bulk pasted the code didn't examine it yet :)
In some cases it still appears that it can't find the right decoder. Just received a mail that still contains '?' (question marks)
Cool ! I think it's better if we use a code based on a regex because we can make improvements without changing the whole method.
Just a thought : I'm wondering if we should keep trying to parse the encoding of body and parts while downloading. Maybe this should be optional since most of the times when we download emails, the info we want while downloading is in the headers, the rest should only be parsed when needed. Therefor, perhaps the MailMessages should store the raw body bytes rather than the raw body string.
It's possible, as an example my code won't work if there is no charset specified at all (it happens !) or if the headers of a part are like that:
Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline
Rather than :
Content-Transfer-Encoding: quoted-printable
The regex has to be updated but i think the general idea is there.
yes, good thought.
And in HeaderObject.cs there is also a function called SetBody() which "hard codes" the encoder or uses the default that can be a problem:
var data = Convert.FromBase64String(value);
This overrides the function what you have write above..
Much simpler, better and faster version of the previous custom GetMessages : http://cjoint.com/12av/BDdnH6aFbJs_getmessageswithcharsetparsingv2.rtf Some stuff I was decoding wasn't actually useful (like the non us-ASCII headers since they are encoded in quoted printable which is only ASCII).The regex should now take into account every kind of content-type header fields. Also, I tried to limit as much as I could the extraction of information to keep the complexity low.
Thanks, I'm going to test it as soon as I can.
So, I have tested your last GetMessages() function with different mails, here is the result: some of the mails with Latin charset are displaying well but in 1 case there is still '?' character instead of unicode chars. This is a text/html mail.
There is another problem: line breaks are missing. In original version there were \n\r line breaks but now they gone.
I have forwarded a mail that is displaying incorrectly to: andy.edinborough@gmail.com
Here is an example where your code fail:
Mail snippet:
--b1_03e47a899ab3248e32619e3ddc24148c Content-Type: text/html; charset = "iso-8859-2" Content-Transfer-Encoding: 8bit
Regards, Mihaly Sogorka
Conclusion: returning to roots.
So I have tested your code block with 5 different mails and got the following result: 4 of 5 mails displaying correctly while 1 mail is still incorrect. I changed back my GetMessages() function to my previous version explained here: https://github.com/andyedinborough/aenetmail/issues/54#issuecomment-4591205 and this code displaying 5/5 mails correctly. So I'm returning to this version.
Could you send me the full problematic email and tell me where exactly it fails parsing ? (use github messages)
Are the line breaks missing in every message ?
I have forwarded the mail.
Hey guys, I think this is simply an issue of not using the right default character set. I've updated the code to use ISO-8859-1, Latin 1, as the default, and then updated the SetBody
method to obey the charset specified in headers.
Hi Andy,
so this fix works not just for ISO-8859-1 rather every kind of messages?
You might want to use this code, instead of hard coding ISO-8859-1?
--modifiied--
public string DEFAULT_CHARSET = System.Text.Encoding.Default.BodyName;
There is 1 case when your code fails: I've got a mail containing the following line:
charset=binary
Never seen this before but it seems like it's possible.
public static Encoding ParseCharsetToEncoding(string characterSet) { if (string.IsNullOrEmpty(characterSet)) characterSet = DEFAULT_CHARSET;
string charSetUpper = characterSet.ToUpperInvariant();
if (charSetUpper.Contains("WINDOWS") || charSetUpper.Contains("CP"))
{
// It seems the character set contains an codepage value, which we should use to parse the encoding
charSetUpper = charSetUpper.Replace("CP", ""); // Remove cp
charSetUpper = charSetUpper.Replace("WINDOWS", ""); // Remove windows
charSetUpper = charSetUpper.Replace("-", ""); // Remove - which could be used as cp-1554
// Now we hope the only thing left in the characterSet is numbers.
int codepageNumber = int.Parse(charSetUpper, System.Globalization.CultureInfo.InvariantCulture);
return Encoding.GetEncoding(codepageNumber);
}
// It seems there is no codepage value in the characterSet. It must be a named encoding
return Encoding.GetEncoding(characterSet);
}
when you call return Encoding.GetEncoding(characterSet); characterSet variable value holds this "binary" and it fails here.
possible workaround:
if (string.IsNullOrEmpty(characterSet) || charset.Contains("binary"))
characterSet = DEFAULT_CHARSET;
or
try
{
return Encoding.GetEncoding(characterSet);
}
catch
{
return Encoding.GetEncoding(DEFAULT_CHARSET);
}
Stack overflow in HeaderObject.cs, here:
return _Headers ?? (_Headers = HeaderDictionary.Parse(RawHeaders, Encoding));
By the way this improvements looking promising :)
Oy. Can't believe I missed that. I should really learn to run the unit tests before checking in. :]
Great work!
All the messages are displaying correctly. Decoding can't be a problem anymore :). But I would be interested getting a letter from China or from Japan.
There is still 1 case when the message is displaying incorrectly:
This time the message is being decoded with ISO-8859-2 while it was encoded with UTF-8 so unicode characters will be displayed wrong.
I don't understand how using the system's default encoding can be a solution. This probably works fine on simple cases where emails are exchanged within people using the same environnment but i'm sure soon enough someone will open an issue saying "hey I received an email from this unknown country with that particular encoding and it's not displaying correctly"
It's a solution because as far as I can tell, SMTP headers are supposed to be encoded with Latin1. Anything that isn't Latin1 should be encoded in place with the =?encoding-name?tobedecoded?=
syntax.
@meehi I've set TextClient
to specifically request Latin1. Let me know how that works for that last case.
Fair enough but I was more thinking about the body, would it work in every case ?
Hmmm... I think there's still an issue. Shoot. To set the body, it switches to the encoding specified in the headers, but by that point, it's already been decoded. I've got an idea. I'll work on it tonight.
Ok, I will wait for that idea and then test it.
Hi!
I'm working on a program in VS2010 (C#) and using your component to receive unseen messages. It's working nice but today I received a mail that is not shown correctly and containing '?' characters (Unicode characters). Here is the code I use:
System.Lazy[] myMessages = _client2.SearchMessages(AE.Net.Mail.SearchCondition.Unseen());
foreach (System.Lazy message in myMessages)
{
AE.Net.Mail.MailMessage msg = message.Value;
}
I have added a watch on "msg" variable and can see the following: msg.AlternativeViews[0].Content -> A h�ten virtu�lis msg.AlternativeViews[0].ContentEncoding -> 8bit msg.BodyHtml -> the same as above, but with html tags
msg.AlternativeViews[0].Content should be look like this -> A héten virtuális...
As you can see the message body contains accute (Unicode) characters (they are Hungarian characters, and might be in ISO-8859-1, or ISO-8859-2).