gpt4 book ai didi

c# - 使用 POP3 连接到 SSL

转载 作者:太空宇宙 更新时间:2023-11-03 13:53:05 26 4
gpt4 key购买 nike

我有一个应用程序可以扫描电子邮件帐户以查找退回的邮件。它使用 POP3,并在多个客户的系统上成功运行。但是,对于一个客户端,当我们尝试连接时,我们会收到 SocketException - 不知道这样的主机。

我的第一个想法是地址或端口无法访问,但他们回来说这是一个 SSL 端口,我认为我的代码可能无法处理 SSL。但是,当我调用 tcpClient = new TcpClient(Host, Port); 时发生了错误,所以我又回到了之前的假设。 TcpClient 是否需要通过特殊方式连接到 SSL 端口?

我的第二个问题是,是否有一种简单的方法可以将代码转换为使用 SSL,而无需基本上创建常规 POP3 连接类和 SSL POP3 连接类?我相信我需要使用 SslStream 而不是 StreamReader,这意味着我必须修改任何访问 POP3 服务器的代码,因为 SslStream 确实没有 ReadLine() 方法。

我在下面添加了我的初始连接代码(或重要的部分)。

try
{
tcpClient = new TcpClient(Host, Port);
}
catch (SocketException e)
{
logger.Log(...);
throw (e);
}
String response = "";

try
{
streamReader = new StreamReader(tcpClient.GetStream());

// Log in to the account
response = streamReader.ReadLine();
if (response.StartsWith("+OK"))
{
response = SendReceive("USER ", UserName.Trim() + "@" + Domain.Trim());
if (response.StartsWith("+OK"))
{
response = SendReceive("PASS ", Password);
}
}

if (response.StartsWith("+OK"))
result = true;
}
catch (Exception e)
{
result = false;
}

SendReceive 方法非常简单:

private String SendReceive(String command, String parameter)
{
String result = null;
try
{
String myCommand = command.ToUpper().Trim() + " " + parameter.Trim() + Environment.NewLine;
byte[] data = System.Text.Encoding.ASCII.GetBytes(myCommand.ToCharArray());
tcpClient.GetStream().Write(data, 0, data.Length);
result = streamReader.ReadLine();
}
catch { } // Not logged in...
return result;
}

这似乎主要是 ReadLine() 方法不起作用,但阅读它表明很难用流读取一行,因为您不知道它是否是否发送完毕。是这种情况,还是我只需要编写一个快速方法来读取直到我点击 \r\n

最佳答案

要回答您的第一个问题,连接到 SSL 端口的方式没有不同,其工作方式完全相同。

至于你的第二个问题,StreamReader 包装了 System.IO.StreamSslStream 只是 的一个实现>System.IO.Stream,因此您可以围绕它创建一个 StreamReader

你需要做的是这样的:

var stream = tcpClient.GetStream ();

if (useSsl) {
var ssl = new SslStream (stream);
ssl.AuthenticateAsClient (Host, null, SslProtocols.Tls12, true);
stream = ssl;
}

streamReader = new StreamReader (stream);

当然,您需要修复您的 SendReceive() 方法,使其不再使用 tcpClient.GetStream(),因为您需要使用 SslStream 而不是 tcpClient.GetStream() 将返回的 NetworkStream

最简单的方法可能是将 stream 变量传递给 SendReceive(),或者,我想,添加一个 Stream 加入您的类(class),就像您可能为 streamReadertcpClient 所做的那样。

当然,更好的解决方案是为此使用一个库,例如我的 MailKit以比这段代码更健壮的方式为您处理所有这些的库 :)

关于c# - 使用 POP3 连接到 SSL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34340961/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com