Ruby on Rails IMAP 与 Ruby 1.9.2 出现段错误
我试图做一个简单的测试,按照这些说明从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
添加以下环境变量:
您可以在您的个人资料中执行此操作或查看:设置环境变量在 OS X 中?
Add the following environment variable:
You can do this from within your profile or see: Setting environment variables in OS X?