Project

General

Profile

Actions

Bug #13579

closed

Net::IMAP#append blocks when a NO response is received

Added by shugo (Shugo Maeda) almost 7 years ago. Updated almost 7 years ago.

Status:
Closed
Target version:
-
[ruby-dev:50129]

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) almost 7 years ago

  • Status changed from Assigned to Closed

Fixed in r58792 and r58844.

Actions

Also available in: Atom PDF

Like0
Like0