summaryrefslogtreecommitdiff
path: root/lib/net
diff options
context:
space:
mode:
authoraamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-05-04 06:18:19 +0000
committeraamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-05-04 06:18:19 +0000
commit55d98580600f577a780f7955bfa5111fa018bf84 (patch)
treef6321b2df628ffb13644e23ca6d710642e0211f9 /lib/net
parentaf9bb04a6fe879f8208de99b5d080b9f4b602325 (diff)
* lib/net/smtp.rb: ESMTP -> SMTP transition wrongly fails.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3752 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/net')
-rw-r--r--lib/net/smtp.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/net/smtp.rb b/lib/net/smtp.rb
index 276c979b20..71d368e084 100644
--- a/lib/net/smtp.rb
+++ b/lib/net/smtp.rb
@@ -302,7 +302,7 @@ module Net
def start( helo = 'localhost.localdomain',
user = nil, secret = nil, authtype = nil )
- raise IOError, 'SMTP session opened already' if @started
+ raise IOError, 'SMTP session already started' if @started
if block_given?
begin
do_start(helo, user, secret, authtype)
@@ -330,7 +330,7 @@ module Net
rescue ProtocolError
if @esmtp
@esmtp = false
- @command.error_ok
+ @command = SMTPCommand.new(@socket)
retry
end
raise