Ruby on Rails IMAP 与 Ruby 1.9.2 出现段错误

发布于 2024-10-22 02:23:57 字数 498 浏览 1 评论 0原文

我试图做一个简单的测试,按照这些说明从 gmail 中提取电子邮件。但是,当我使用 Ruby 1.9.2p136 执行此操作时,它会在此行上引发分段错误:

imap = Net::IMAP.new('imap.gmail.com', 993, true)

使用 1.8.7p334 工作正常。我遇到过类似的问题,ActionMailer 使用 smtp 发送在 1.9.2 中会出现段错误,但在 1.8.7 中工作正常。我发现 这篇文章 指出设置 enable_starttls_auto =>假。但是,我没有看到任何方法可以将其推送到 IMAP。不过,似乎有关联。

I was trying to do a simple test to pull emails from gmail following these instructions. However, when I do this with Ruby 1.9.2p136 it throws a segmentation fault on this line:

imap = Net::IMAP.new('imap.gmail.com', 993, true)

Using 1.8.7p334 it works fine. I had been running into a similar issue where ActionMailer sending with smtp would segfault in 1.9.2 and work fine in 1.8.7. I found this article which pointed out setting enable_starttls_auto => false. However, I don't see any way to push that through to IMAP. However, it seems related.

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

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

发布评论

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

评论(1

oО清风挽发oО 2024-10-29 02:23:57

添加以下环境变量:

导出 RUBYOPT=-r openssl

您可以在您的个人资料中执行此操作或查看:设置环境变量在 OS X 中?

Add the following environment variable:

export RUBYOPT=-r openssl

You can do this from within your profile or see: Setting environment variables in OS X?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文