Results 235 comments of Webklex

Even if you initialize the folder manually? ```php /** @var \Webklex\PHPIMAP\Client $client */ $path = "{pop.gmail.com:995/pop3/novalidate-cert/ssl}INBOX"; $folder = new \Webklex\PHPIMAP\Folder($client, $path, $delimiter = "/", $flags = []); $message = $folder->query()...

Can you share the entire call stack from the first screenshot? It looks like you've just caught the __destruct call - something has happened before, which caused the exception. Would...

Thanks :) So everything works up until `$folder->query()` and therefor `LegacyProtocol::selectFolder()` gets called: ```php [previous exception] [object] (ErrorException(code: 0): imap_reopen(): Couldn't re-open stream at /Users/rswanepoel/dev/efficiencyhub/vendor/webklex/php-imap/src/Connection/Protocols/LegacyProtocol.php:184) [stacktrace] #0 [internal function]: Illuminate\Foundation\Bootstrap\HandleExceptions->handleError(2,...

Here we have a partial solution: https://github.com/Webklex/php-imap/pull/234 However its missing the pop3 protocol check and won't fix the second `selectFolder` problem.

Hi @mdemori , many thanks for the suggestion. I guess you're talking about this method right? https://github.com/Webklex/php-imap/blob/6e76b3552491e437f37721ae113129682489c141/src/Connection/Protocols/Protocol.php#L165 ..and: https://github.com/Webklex/php-imap/blob/6e76b3552491e437f37721ae113129682489c141/src/Connection/Protocols/Protocol.php#L200 ..and you would like to extend the array which gets parsed...

Hi @EthraZa , is there a certain reason you have to use `ST_MSGN` instead of `ST_UID`? What happens if you use the `moveManyMessages()` method? :) If you are missing a...

I see. I'm scared to touch the boundary. Every time its changed, it breaks something else.. What do you think if the boundary regex gets moved to the config -...

Hi @jil1092000 , thanks for your question. It is possible, but not so trivial. You could use `Folder::appendMessage()` to "create" a new mail inside the mailbox of the other account....

Hi @hiralmmavani , if you dump the entire folder object: ```php var_dump($folder); //or dump($folder); ``` is the correct name somewhere within? Have you tried to enable the debug mode? If...

Hi @mdemori , that's interesting, do you know if those have to be handled separately or are they "included" within these functions? - mailparse_rfc822_parse_addresses - imap_mime_header_decode - iconv - mb_convert_encoding...