Pop3Client.Connect(stream) hangs forever.
dstampher opened this issue · 1 comments
dstampher commented
Since this library does not support proxy servers, I am using the starksoft-aspen library to create a proxied NetworkStream to be passed into Pop3Client.Connect.
In the example code below, the Connect() method hangs forever with no exception to tell me what is wrong.
var client = new Pop3Client()
var proxyClient = new HttpProxyClient("127.0.0.1", 8888);
client.Connect(proxyClient.CreateConnection(hostname, port).GetStream());
client.Authenticate(username, password);