如何在Ruby中使用netimap在邮箱中搜索邮件?

如何在Ruby中使用netimap在邮箱中搜索邮件?,第1张

概述我在 Ruby 1.9.3上有一些脚本: require "net/imap"imap = Net::IMAP.new(mail_imap_server)imap.login(mail_login, mail_password)imap.select("INBOX")puts imap.search(["FROM", "homer@simpson.com"])imap.logoutim 我在 Ruby 1.9.3上有一些脚本:

require "net/imap"imap = Net::IMAP.new(mail_imap_server)imap.login(mail_login,mail_password)imap.select("INBox")puts imap.search(["FROM","homer@simpson.com"])imap.logoutimap.disconnect

如果存在所需的消息,那么一切都很好.
如果缺少所需的消息,则会出现错误:

/opt/local/lib/ruby1.9/1.9.1/net/imap.rb:1332:in `block in search_internal': undefined method `[]' for nil:NilClass (NoMethodError)from /opt/local/lib/ruby1.9/1.9.1/monitor.rb:211:in `mon_synchronize'from /opt/local/lib/ruby1.9/1.9.1/net/imap.rb:1326:in `search_internal'from /opt/local/lib/ruby1.9/1.9.1/net/imap.rb:752:in `search'from ./mail.rb:12:in `mail'from ./mail.rb:26:in `<main>'

我怎么解决这个问题?

解决方法 首先检查结果中是否有消息,以防万一

require "net/imap" imap = Net::IMAP.new(mail_imap_server) imap.login(mail_login,mail_password) imap.select("INBox")begin  messages = imap.search(["FROM","homer@simpson.com"])   puts messages if messages.length > 0rescue  puts "Error while retrIEving the message" endimap.logout imap.disconnect
总结

以上是内存溢出为你收集整理的如何在Ruby中使用net / imap在邮箱中搜索邮件?全部内容,希望文章能够帮你解决如何在Ruby中使用net / imap在邮箱中搜索邮件?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1267131.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-08
下一篇 2022-06-08

发表评论

登录后才能评论

评论列表(0条)

保存