-
-
Notifications
You must be signed in to change notification settings - Fork 828
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
"Syntax error in untagged Fetch response. Unexpected token: '('" (Domino IMAP4 Server) #943
Comments
The problem is that the IMAP server is adding an extra set of ()'s around the
It should, instead, look like this:
|
Do you have custom work-arounds for Domino bugs? I ask because in my attempt to unit test this fix, I discovered more bugs in Domino Server in that it doesn't escape the |
You can test the above fix by installing the latest MailKit nuget from https://www.myget.org/feed/mimekit/package/nuget/MailKit |
Never mind about the |
Thanks for the fix, works as expected! |
Describe the bug
Hi!
I am trying to fetch from a Domino IMAP4 Server with the following fetch command:
IList<IMessageSummary> results = folder.Fetch(0,-1, MessageSummaryItems.Envelope | MessageSummaryItems.BodyStructure | MessageSummaryItems.UniqueId);
I am getting the following error:
In this special case I tried to fetch the messages in the folder "Trash", in other folders, the fetch command ran successfully.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
I expected to get the list of messages in the trash folder returned.
Desktop (please complete the following information):
Additional context
Here is my imap.log for further details:
The text was updated successfully, but these errors were encountered: