Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Error when searching Flagged Messages #474

Open
oriolfuentes opened this issue May 19, 2023 · 0 comments
Open

Error when searching Flagged Messages #474

oriolfuentes opened this issue May 19, 2023 · 0 comments

Comments

@oriolfuentes
Copy link

Hello,

I 'm trying to fetch flagged mails from a specified folder.
I tried:
$folder->query()->not()->unflagged()->setFetchBody(false)->leaveUnread()->get();
$folder->query()->not()->where([["UNFLAGGED"]])->leaveUnread()->get();

And some other I don't have now.

It throws me this reponse:
Too few arguments to function Webklex\PHPIMAP\Query\WhereQuery::where(), 0 passed and at least 1 expected

Also tried:

$folder->query()->flagged('Flagged')->setFetchBody(false)->leaveUnread()->get();

This throws me:
Webklex \PHPIMAP\ Exceptions\ImapServerErrorException

I also tried:
$aMessage = $folder->query()->seen()->setFetchBody(false)->leaveUnread()->get();
$aMessage = $folder->query()->unseen()->setFetchBody(false)->leaveUnread()->get();
$aMessage = $folder->query()->unflagged()->setFetchBody(false)->leaveUnread()->get();
$aMessage = $folder->query()->whereAll()->setFetchBody(false)->leaveUnread()->get();

And they work perfectly.

Any ideas why I can not retrive flagged messages or where is my error?

Thanks in advance.

Oriol

PS: I also opened the same question on php-imap, but i didn't had any responses for more than a week, so i am trying here. Sorry if this is not the correct way

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant