IMAP:从C++程序发送电子邮件时"Unable to create selectable TCP socket"



我正在尝试使用 imap 库从C++程序发送电子邮件。我有一个Google Apps和一个Gmail帐户,我要向其发送电子邮件。

每当程序无法发送电子邮件时,我都会将错误记录到文件中。

我将程序设置为循环运行以发送电子邮件。有时,我收不到电子邮件,当我检查日志文件时,我发现每次发送电子邮件失败时都会记录这些错误。

以下是日志文件的一部分:

[2012-04-23 11:04:34]   ErrCode:1 ErrMsg:Unable to create selectable TCP socket (2753 >= 1024)
[2012-04-23 11:04:34]   ErrCode:2 ErrMsg:Unable to create selectable TCP socket (2753 >= 1024)
[2012-04-23 11:05:36]   ErrCode:1 ErrMsg:Unable to create selectable TCP socket (1692 >= 1024)
[2012-04-23 11:05:36]   ErrCode:2 ErrMsg:Unable to create selectable TCP socket (1692 >= 1024)
[2012-04-23 11:07:52]   ErrCode:1 ErrMsg:Unable to create selectable TCP socket (1605 >= 1024)
[2012-04-23 11:07:52]   ErrCode:2 ErrMsg:Unable to create selectable TCP socket (1605 >= 1024)
[2012-04-23 11:08:02]   ErrCode:1 ErrMsg:Unable to create selectable TCP socket (1566 >= 1024)
[2012-04-23 11:08:02]   ErrCode:2 ErrMsg:Unable to create selectable TCP socket (1566 >= 1024)
[2012-04-23 11:08:09]   ErrCode:1 ErrMsg:Unable to create selectable TCP socket (1067 >= 1024)
[2012-04-23 11:08:09]   ErrCode:2 ErrMsg:Unable to create selectable TCP socket (1067 >= 1024)
[2012-04-23 11:08:19]   ErrCode:1 ErrMsg:Unable to create selectable TCP socket (1648 >= 1024)
[2012-04-23 11:08:19]   ErrCode:2 ErrMsg:Unable to create selectable TCP socket (1648 >= 1024)
[2012-04-23 11:08:20]   ErrCode:1 ErrMsg:Unable to create selectable TCP socket (1130 >= 1024)
[2012-04-23 11:08:20]   ErrCode:2 ErrMsg:Unable to create selectable TCP socket (1130 >= 1024)

它与 imap 服务器端口有关吗?如果是这样,应将其设置为哪个端口?993 总是??如何解决此错误?

这是我的设置:

Name: Ashwin
my email: blahblah@wyswtf.com
reply-to-email: blahblah@wyswtf.com

SMTP 服务器信息:

Host: smtp.gmail.com
Encryption: SSL
Port: 465

该程序以 root 用户身份运行,我正在使用的库来自 http://panda.com/imap/

该库使用一些古老的 I/O 多路复用代码,因此一次只能处理 1,024 个连接。使用其他库或限制对该库的请求的速率。

更新:我将为您研究这个问题,并在必要时修复代码以解决此问题或找出对代码构建方式的更改。但该库似乎不是公开的。抱歉,我们无法为您修复封闭源代码。

相关内容

  • 没有找到相关文章

最新更新