Actions
Bug #13579
closedNet::IMAP#append blocks when a NO response is received
Description
Net::IMAP#append blocks when a NO response is received.
For example, if the destination mailbox doesn't exist, Net::IMAP#append blocks:
require "net/imap"
imap = Net::IMAP.new("localhost")
imap.login("username", "password")
imap.append("non-exist-mailbox", <<EOS, nil, nil)
From: hoge
To: hoge
hoge
EOS
imap.logout
imap.disconnect
This issues was originally reported by Tomita-san in ruby-list:42831.
Updated by shugo (Shugo Maeda) about 8 years ago
- Status changed from Assigned to Closed
Fixed in r58792 and r58844.
Actions
Like0
Like0