Hi all, i'm trying rebex library. When using ImapBrowser sample (or ImapConsoleClient) in Implicit Security mode, i can connect with almost all servers but one, thath respond ERROR 119 invalid user or password err 2 (NO). User and password are correct, as i can connect via web mail and mailbee libraries too. Any suggestion, plz? Thx Diego

asked 24 Jun '10, 10:30

Diego's gravatar image

Diego
16
accept rate: 0%

edited 10 Aug '10, 13:54

Rebex%20KB's gravatar image

Rebex KB ♦♦
256312

Please check out http://www.rebex.net/kb/logging.aspx, add logging capabilities to one of the samples and produce a log showing this error. Then mail the log to us (support@rebex.net) or edit your question to include it. We should be able to tell more then.

(24 Jun '10, 12:32) Lukas Pokorny ♦♦

Explicitly specifying an authentication method in the Imap.Login call might help - it is possible that default one doesn't work on this server and using a different method might be a usable workaround.

(24 Jun '10, 12:34) Lukas Pokorny ♦♦

Is there any news on this? Have you been able to solve this or produce the communication log?

(28 Jun '10, 10:49) Lukas Pokorny ♦♦

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

(02 Jul '10, 16:04) Diego
Be the first one to answer this question!
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "title")
  • image?![alt text](/path/img.jpg "title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Tags:

×71
×7
×4
×1

Asked: 24 Jun '10, 10:30

Seen: 261 times

Last updated: 10 Aug '10, 13:54