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
I'm testing against a local instance of hMailServer. When I delete a message via POP, the hMailServer logs show that it returns "+OK msg deleted". But there appear to be some control characters in the stream before the +OK, starting with 10 13, so Utilities.ReadLine() returns "" and CheckResultOK() throws an exception.
In the debugger, the first bytes of the stream are 10 13 10 46 13 10 43 79 75 (that's the +OK at the end).
Is hMailServer doing something really odd here, or is it a bug in AE.Net.Mail? (Or should AE.Net.Mail just be more tolerant?)
The text was updated successfully, but these errors were encountered:
I'm testing against a local instance of hMailServer. When I delete a message via POP, the hMailServer logs show that it returns "+OK msg deleted". But there appear to be some control characters in the stream before the +OK, starting with 10 13, so
Utilities.ReadLine()
returns "" andCheckResultOK()
throws an exception.In the debugger, the first bytes of the stream are
10 13 10 46 13 10 43 79 75
(that's the +OK at the end).Is hMailServer doing something really odd here, or is it a bug in AE.Net.Mail? (Or should AE.Net.Mail just be more tolerant?)
The text was updated successfully, but these errors were encountered: