andyedinborough / aenetmail

C# POP/IMAP Mail Client
370 stars 153 forks source link

Handle untagged responses #154

Open andyedinborough opened 10 years ago

andyedinborough commented 10 years ago

There are several areas of code that look like while(line.StartsWith("*")) { line = ReadLine(); }. These need to be changed to parse the data then return it as part of the result of the command.

See #7 for context.