php-imap icon indicating copy to clipboard operation
php-imap copied to clipboard

PHP-IMAP is a wrapper for common IMAP communication without the need to have the php-imap module installed / enabled. The protocol is completely integrated and therefore supports IMAP IDLE operation a...

Results 253 php-imap issues
Sort by recently updated
recently updated
newest added

Some Filenames are not beeing decoded correctly. #410

My code: ``` return $folder->query()->all()->limit(1)->get()->last(); ``` I am currently processing emails from a mailbox with about 9 thousand messages. Connection via oAuth, The above code executes in about 1.6 seconds....

One user reported an issue https://github.com/freescout-help-desk/freescout/issues/4159. If an error occurs during fetching the email in the mailbox stays "read" even though `leaveUnread()` is set. Here is the example of headers...

bug
validating

For fixing this issue > Webklex\PHPIMAP\Client::getFolderPath(): Return value must be of type string, null returned

After creating a folder in the mail service, I can't move a letter there. I get the error Attempt to read property "path" on null. The folder definitely exists, and...

This issue is similar to https://github.com/Webklex/php-imap/issues/35 When the email name contains `;`(don't ask me why, people just weird), the `Header::extractHeaderExtensions()` will convert it to a string for example for `John;...

Maybe I miss something but it seems, that the folder status isn't reliable or not up to date in every situation. I get the folder with `$folder->getStatus()` Result is: ```...

question

I was trying to load emails. it work on other email but I get issue with email account with multiple messages. here is the code: ```php $config = config('imap.accounts.default'); $config['username']...

help wanted
question

I'm trying to move a message to a different folder using the following code ```php $client = Client::account("default"); $client->connect(); /** @var \Webklex\PHPIMAP\Support\FolderCollection $folders */ $folder = $client->getFolder('INBOX'); if (empty($folder)) {...

question