Hi,
Just to let you know: I had the same problem today. I couldn't retrieve the attachements. Here's what I did:
In Base64.cs on line 92 I added:
The fix is very ugly, but for a friday, it works.
SIncerely,
Johannes
Just to let you know: I had the same problem today. I couldn't retrieve the attachements. Here's what I did:
In Base64.cs on line 92 I added:
s = s.Replace("* 1 FETCH (", string.Empty);
int outlookInt = s.IndexOf("UID");
if (outlookInt > 5)
{
s = s.Substring(0, outlookInt);
}
The problem is: there was a ( added to the first part: (JVBERi0x. And at the end was the text: UID 75. So that results in a bad base64 string. The fix is very ugly, but for a friday, it works.
SIncerely,
Johannes