我有以下代码很少返回异常。并非总是如此,只是很少见。
string tag = GetTag(); //_tag++; string.Format("xm{0:000} ", _tag);
string response = SendCommandGetResponse(tag + "UID SEARCH (UNDELETED) (SENTSINCE \"28-May-2018\")"); //basically just send it off, and get the response
if (!response.StartsWith("* SEARCH", StringComparison.InvariantCultureIgnoreCase) && !IsResponse(response, "OK")) {
throw new Exception(response);
}
这将返回以下内容: xm005否此命令的状态错误。
为什么会这样? 顺便说一句,是的,我尝试使用LOGIN USERNAME PASSWORD登录。
我设法找到了一个似乎总是发生在以下位置的电子邮件提供商:post.cz
这是IMAP服务器错误而不是我的配置错误吗?