Thx, we have purchased source, and debugging at login function, we found that in standard sequence, the library (imap.cs line 2534) execute first the line if (Array.IndexOf(_authTypes, ImapAuthentication.CramMD5, 0, _authTypes.Length) >= 0){
LoginInternal(userName, password, ImapAuthentication.CramMD5, null);
return; and in log we read:
Response: R00002 NO ERROR 119 invalid user or password err 2
but if we move ahead the line
if (Array.IndexOf(_authTypes, ImapAuthentication.ClearText, 0, _authTypes.Length) >= 0) the login is OK.
Is it a Server issue?
Thx
Diego