Results 24 issues of Allan Brazute

CommandA.php handle: ``` $this->call('CommandB', [ 'param' => 'some_param' ], $output_buffer); ``` I've try a 3rd param to get the output and the Command::output method, but both does not exist in...

Hi. Is it possible to use CylonJS within Espruino Pico? If no, there are plans to support Espruino?

Hi. Using the example numbers: ``` $optimus = new Jenssegers\Optimus\Optimus(1580030173, 59260789, 1163945558); $id = "1000000000"; //10 digits $encoded = $optimus->encode($id); $original = $optimus->decode($encoded); print_r(array($id, $encoded, $original), true); // ["1000000000", 1768948822,...

I'm still reading the issues to find my way in NodeOS, so please forgive me if this topic was discussed already. I'm understanding that running an UI app within NodeOS...

enhancement
discussion
question

If someone send a message to bcc, the To tag in the mail header will be ```php To: undisclosed-recipients:; ``` Some SMTP server have the ability to add a **X-Origitanal-To**...

question

Move message fails silently. ``` $messagge->move('INBOX.Trash'); // fails silently. ``` Here is the why: move method at https://github.com/Webklex/php-imap/blob/master/src/Message.php#L901 does ``` $status = $this->client->getConnection()->examineFolder($folder_path); if (isset($status["uidnext"])) { ``` but, "uidnext" does...

bug
validating

Array of multiple search criteria is not working, just the first one works. ```php // Does not works, just the subject criteria is respected -( $folder->query()->where([['subject' => 'foo'], ['UNSEEN']]); //...

enhancement

At least on Gmail, I can't get delete to work. It returns true, but does nothing. Manually set 'Deleted' flag on a message does nothing as well. Am I noobing...

enhancement
Gmail

**Problem:** When passing **'sequence' => \Webklex\PHPIMAP\IMAP::ST_UID** to **ClientManager**, we can "see" the **attachments** only for the **last message** in the query. I'm on this problem all the day long trying...

bug
validating
Gmail