bjaverhagen

Results 8 comments of bjaverhagen

I had the same problem but with another config. ``` $clientManager->setConfig([ 'options' => [ 'decoder' => [ 'message' => 'utf-8', 'attachment' => 'utf-8', ], ], ]); ``` My solution is...

I also can't show messages with large attachment. I would like to avoid attachment downloading to.

I tried the following code in Header.php but it doesn't work: ``` // match case for: Fri, 10 Nov 2023 09:19:34 +0100 (W. Europe Standard Time)/Fri, 10 Nov 2023 09:19:34...

I fixed it by adding a small code to the parseDate function in Header.php ![image](https://github.com/Webklex/php-imap/assets/82268250/d1ee6fd9-d7bb-467e-aac5-315f791d44c4)

Hi Webklex, Thanks for your response. Can I mail the testmail to some address so you can look into it? Greetings, Bas

Thanks a lot. I disabled rfc822 in the config file and now I don't have this error anymore. I don't see any other parsing issues so far 👍

I had a memory problem when fetching messages with large attachments? I fixed the memory-issue with this solution: #457 Maybe it can help you to.