-
Notifications
You must be signed in to change notification settings - Fork 513
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 fetching Emails from Office365 (IMAP) #176
Comments
In this case I commented the charset parameter and the mail is fetching.
Line 155 /**
* Don't set the charset if it isn't used - prevent strange outlook mail server errors
* @see https://github.com/Webklex/laravel-imap/issues/100
*/
if($this->getCharset() === null){
$available_messages = imap_search($this->getClient()->getConnection(), $this->getRawQuery(), SE_UID);
}else{
$available_messages = imap_search($this->getClient()->getConnection(), $this->getRawQuery(), SE_UID); //, $this->getCharset()
} |
Any news on this? It's almost a year so I wonder if there is any progress :) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
IMAP connection to Office365 Account quits with error.
Account settings
Error Message:
[BADCHARSET (US-ASCII)] The specified charset is not supported.
I had the same Problem in a PHP Project but at the moment no time to contribute. But I think the following Links should help to solve the problem and if you need someone for testing, just let me know.
Issue: Charset shouldn't be send with the imap_search
Issue: Problem with serverEncoding
The text was updated successfully, but these errors were encountered: