diff --git a/ChangeLog b/ChangeLog index fa358a5d36..d8262a3728 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Wed Aug 27 15:07:57 2003 Minero Aoki + + * lib/net/smtp.rb (check_response): AUTH CRAM-MD5 returns 334 + response. [ruby-list:38279] + Wed Aug 27 05:10:15 2003 NAKAMURA Usaku * win32/win32.c (map_errno): support winsock error. diff --git a/lib/net/smtp.rb b/lib/net/smtp.rb index 85d2452c5b..d2de78239b 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