-
Notifications
You must be signed in to change notification settings - Fork 78
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
parseResponse in fMailbox.php dies when the mail subject includes {123456} #208
Comments
It looks like the limit should be 65535, which makes sense because I would make sure that you are sending only the subject line into the preg_match. if you inisist on parsing the full email over a 65536 limit use strlen with the preg_match
OR
It is possible that the preg_match is attempting to parse the string into a variable type that can not hold it in the C code, in which case it would be a bug in the PHP command itself. |
{123456} is literal which would be included when we have double quotes in Email subject and number corresponds to the character in Email subject |
i had solved this issue by doing some pattern replace and successfully resolved and fetch all Email , please add this code to fMailbox.php after the line $output = array();
and change the foreach parameters to |
Anyone an idea when this is necessary (parseResponse)?
We cannot get a response which actually needs it but it finds e.g. {123456} within the mail subject and then dies with:
"preg_match_all(): Compilation failed: number too big in {} quantifier at offset 23"
The text was updated successfully, but these errors were encountered: