diff options
author | aamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-08-27 06:08:14 +0000 |
---|---|---|
committer | aamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-08-27 06:08:14 +0000 |
commit | d5b859323e3225fb74c1db821b1a41e5c95c9ef2 (patch) | |
tree | a5a612b907bde642570f21f0fc1ed3c56ef38a5f /lib | |
parent | 69f3f5f67ab1efcf514627786913d2ca43a0989d (diff) | |
download | ruby-d5b859323e3225fb74c1db821b1a41e5c95c9ef2.tar.gz ruby-d5b859323e3225fb74c1db821b1a41e5c95c9ef2.tar.xz ruby-d5b859323e3225fb74c1db821b1a41e5c95c9ef2.zip |
* lib/net/smtp.rb (check_response): AUTH CRAM-MD5 returns 334 response. [ruby-list:38279]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4449 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r-- | lib/net/smtp.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/net/smtp.rb b/lib/net/smtp.rb index 85d2452c5..d2de78239 100644 --- a/lib/net/smtp.rb +++ b/lib/net/smtp.rb @@ -601,7 +601,7 @@ module Net # :nodoc: def check_response( res, allow_continue = false ) return res if /\A2/ === res - return res if allow_continue and /\A354/ === res + return res if allow_continue and /\A3/ === res err = case res when /\A4/ then SMTPServerBusy when /\A50/ then SMTPSyntaxError |