-
Notifications
You must be signed in to change notification settings - Fork 519
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
IMAP - No unseen emails (because of " around date in query" #4175
Comments
Which mail server are you using? |
We've noticed that your date Try to hardcode the following and check if this is the reason of your issue:
|
Using an old server, Eudora Internet Mail Server. |
Same problem. Looks in RFC that dates following SINCE is used without quotes. |
We've changed it in the |
Did you have some error in logs when the date was enclosed in quotes? |
…P_SINCE_WITHOUT_QUOTES_ON_FETCHING env parameter - closes #4175
No errors, just wrong result. |
Starting from FreeScout v1.8.150 you need to set |
PHP version: 7.4/8.3
FreeScout version: 1.8.148
Database: MySQL
Are you using CloudFlare: No
Are you using non-official modules: No
After upgrading to 1.8.148 no new emails came.
After troubleshooting some time I found the problem to be with the query to our IMAP server.
UID SEARCH SINCE "7-Aug-2024" UNSEEN returned empty
UID SEARCH SINCE 7-Aug-2024 UNSEEN returned correctly
Changed in overrides/webklex/php-imap/src/Query/Query.php
to:
Is a workaround for me.
There is probably a much better solution though...
The text was updated successfully, but these errors were encountered: