Imap_Client icon indicating copy to clipboard operation
Imap_Client copied to clipboard

Horde IMAP Client

Results 4 Imap_Client issues
Sort by recently updated
recently updated
newest added

If you download an email with a large attachment (30M, for example), and disconnect your local network interface mid way through https://github.com/bytestream/Imap_Client/blob/ac98de92168777fb8bf0bacf3129fc178523defe/lib/Horde/Imap/Client/Socket/Connection/Socket.php#L186 then Horde hangs indefinitely. `feof` hangs indefinitely when...

`Horde_Imap_Client_Data_Format_Mailbox_MailboxTest::testBadInput` fails on PHP 8.2. This is due to `mb_convert_encoding("foo\0", 'UTF7-IMAP', 'UTF-8');` producing `foo&AAA-` on PHP 8.2, and `foo\0` on prior versions. See https://onlinephp.io/c/20a6. The change in data means the...

According to RFC 9051 "Servers MAY permit the client to define new keywords in the mailbox". For my use-case this makes it necessary that I change the encoding of keywords...

Commit 0738f13 introduced a regression by hardcoding utf8 encoding instead of using dynamic encoding selection. This breaks compatibility with IMAP servers not announcing UTF8=ACCEPT (like Cyrus), making it impossible to...