Results 235 comments of Webklex

Hi @cms007 , please give the current `master` a try. Also make sure you've enabled `options.debug`. This might help to figure out which part in the communication takes so long....

Hi @EthraZa , what do you think of replacing https://github.com/Webklex/php-imap/blob/23c80eb698e9f9d3c10297a8ff54e1965a58e0fb/src/Query/WhereQuery.php#L126-L146 with this: ```php public function where($criteria, $value = null) { if (is_array($criteria)) { foreach ($criteria as $key => $value) {...

Hi @EthraZa , this change is now available via the [v3.0.0-alpha](https://github.com/Webklex/php-imap/releases/tag/3.0.0-alpha) release. Best regards,

Hi @lwcorp , I guess you are looking for this method: `Folder::appendMessage()`? :) Best regards,

Hi @lwcorp , take a look at an .eml file in a text editor - it's a simple text file. So in theory this could work: ```php $eml_template = file_get_contents("path/to/email.eml");...

Hi @petarg , many thanks for your report. Best regards,

Hi @petarg , please give [v3.0.0-alpha](https://github.com/Webklex/php-imap/releases/tag/3.0.0-alpha) a try. The default boundary regex used to detect the message parts in a multi-part message has been changed and can now also be...

Hi @Yooootsuba , you have to call `$client->expunge()` at the end. Otherwise those changes aren't committed on the server and therefor the messages won't get deleted. Alternative, you could call...

Hi @ricuss , many thanks for the detailed report! Unfortunately I don't have a gmail test account atm (Google keeps deleting it). You can enable the `debug` mode: https://github.com/Webklex/php-imap/blob/master/src/config/imap.php#L152 This...

Hi @ricuss , sry my bad - you didn't have to edit the vendors file, you can access the connection via this snipped: ```php /** @var \Webklex\PHPIMAP\Client $client */ $con...