连接到雅虎!来自鲁比的邮件

发布于 2024-12-02 09:14:45 字数 126 浏览 1 评论 0原文

我尝试连接到邮件 Yahoo!使用 net/imap 和 net/pop 的 Ruby 帐户。但我随机收到错误 EOFile(来自 IMAP)或连接被对等方拒绝/重置(来自 POP)。有没有人尝试过连接到 Yahoo!邮件和有一些经验吗?

I try to connect to mail Yahoo! account from Ruby using both net/imap and net/pop. But I randomly get error EOFile (from IMAP) or Connection Refused/Reset by peer (from POP). Has anybody tried to connect to Yahoo! Mail and had some experiences about it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

好听的两个字的网名 2024-12-09 09:14:45

ruby 的 net/imap 库中有一个错误,在连接到 Yahoo 时会暴露出来。
修复方法很简单,如下所述:

http://redmine.ruby-lang.org/issues/4509基本上

,编辑 imap.rb 并将 search_response 方法的内部循环从: 更改

        token = lookahead
        case token.symbol
        when T_CRLF
          break
        when T_SPACE
          shift_token
        end
        data.push(number)

为:

        token = lookahead
        case token.symbol
        when T_CRLF
          break
        when T_SPACE
          shift_token
        else
          data.push(number)
        end

然后使用以下代码进行测试:

require 'net/imap'
Net::IMAP.debug = true
conn = Net::IMAP.new('imap.mail.yahoo.com', 143, false)
conn.instance_eval { send_command('ID ("GUID" "1")') }
conn.authenticate('LOGIN', ARGV[0], ARGV[1] )
conn.select("INBOX")
uids = conn.uid_search(['ALL'])
puts uids.join(',')
conn.logout
conn.disconnect

There's a bug in ruby's net/imap library that is exposed when connecting to Yahoo.
The fix is straightforward and described here:

http://redmine.ruby-lang.org/issues/4509

Basically, edit imap.rb and change the inner loop of search_response method from:

        token = lookahead
        case token.symbol
        when T_CRLF
          break
        when T_SPACE
          shift_token
        end
        data.push(number)

to:

        token = lookahead
        case token.symbol
        when T_CRLF
          break
        when T_SPACE
          shift_token
        else
          data.push(number)
        end

then test with the following code:

require 'net/imap'
Net::IMAP.debug = true
conn = Net::IMAP.new('imap.mail.yahoo.com', 143, false)
conn.instance_eval { send_command('ID ("GUID" "1")') }
conn.authenticate('LOGIN', ARGV[0], ARGV[1] )
conn.select("INBOX")
uids = conn.uid_search(['ALL'])
puts uids.join(',')
conn.logout
conn.disconnect
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文