You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 31, 2024. It is now read-only.
I have a .NET core console app that runs 24x7, checking mail every 60 seconds. After a week or two, it eventually freezes at the search call. The app is then completely halted until I close and restart it. The relevant code is below. Any suggestions?
using var client = new ImapClient(server, 993, login, password, AuthMethod.Login, true);
IEnumerable uids = client.Search(SearchCondition.Unseen()); // execution stops here intermittently
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I have a .NET core console app that runs 24x7, checking mail every 60 seconds. After a week or two, it eventually freezes at the search call. The app is then completely halted until I close and restart it. The relevant code is below. Any suggestions?
using var client = new ImapClient(server, 993, login, password, AuthMethod.Login, true);
IEnumerable uids = client.Search(SearchCondition.Unseen()); // execution stops here intermittently
The text was updated successfully, but these errors were encountered: