We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
From manual page: https://php.net/function.imap-fetch-overview
I'm facing this error and I don't know how to solve it..
PHP Notice: Unknown: Mailbox has more messages (1057204) exist than maximum (1000000) (errflg=2) in Unknown on line 0
PHP version: 7.4.32
Code:
<?php $mbox = imap_open("{******:993/imap/ssl/novalidate-cert}INBOX", "*****", "*****") or die("can't connect: " . imap_last_error()); var_dump("Listing"); $MC = imap_check($mbox); $range = 20; var_dump($MC->Nmsgs); // Fetch an overview for all messages in INBOX $result = imap_fetch_overview($mbox,"1:{$range}",1); /*foreach ($result as $overview) { echo "#{$overview->msgno} ({$overview->date}) - From: {$overview->from} {$overview->subject}\n"; }*/ imap_close($mbox);
PHP 7.4.32
Centos 7
The text was updated successfully, but these errors were encountered:
You already asked about this in php/doc-en#2593
Sorry, something went wrong.
No branches or pull requests
Description
From manual page: https://php.net/function.imap-fetch-overview
I'm facing this error and I don't know how to solve it..
PHP Notice: Unknown: Mailbox has more messages (1057204) exist than maximum (1000000) (errflg=2) in Unknown on line 0
PHP version: 7.4.32
Code:
PHP Version
PHP 7.4.32
Operating System
Centos 7
The text was updated successfully, but these errors were encountered: