Filippo Tessarotto

Results 335 comments of Filippo Tessarotto

Take a look at the second line of the last commit: https://github.com/ddeboer/imap/commit/00b75df6d51bcadae5e2b449a04d928322a1f6aa.patch

May you post the exact diff of how you altered this library to suppress the error please?

To get the exact name of the mailboxes, try to inspect them as shown in the readme: [Mailboxes](https://github.com/ddeboer/imap#mailboxes)

Mmm, can you provide a reproducible test case on what you have and what you expect?

> I was instantiating 2 different instances. This isn't tested indeed, and also not supported by imap ext I think

Hi, `Mailbox::getAttributes` return the attributes gathered by `imap_getmailboxes`, see https://www.php.net/manual/en/function.imap-getmailboxes.php#refsect1-function.imap-getmailboxes-returnvalues ```console $ php -r 'print_r(get_defined_constants());'| grep LATT_ [LATT_NOINFERIORS] => 1 [LATT_NOSELECT] => 2 [LATT_MARKED] => 4 [LATT_UNMARKED] => 8 [LATT_REFERRAL]...

There is no built-in feature to achieve thread iteration, you have to read headers such `Message-Id`, `References` and `In-Reply-To` and organize accordingly the mails. This is what mail clients do.

As the error code says, error 500 depends on the server, not the client, so this very library isn't directly involved with the issue

I have no idea what you are talking about