diff --git a/ChangeLog b/ChangeLog index 8fb8768f51..3ef429d1df 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Thu Jan 22 22:54:53 2004 Shugo Maeda + + * lib/net/imap.rb (BEG_REGEXP): allow 8-bit characters in quoted + strings for Novell GroupWise Internet Agent. + * lib/net/imap.rb (DATA_REGEXP): ditto. + Thu Jan 22 18:35:49 2004 WATANABE Hirofumi * lib/e2mmap.rb (VERSION): remove unnecessary version checking. diff --git a/lib/net/imap.rb b/lib/net/imap.rb index 6ca03c703f..85bef3c391 100644 --- a/lib/net/imap.rb +++ b/lib/net/imap.rb @@ -1840,7 +1840,7 @@ module Net # :nodoc: (?# 2: NIL )(NIL)(?=[\x80-\xff(){ \x00-\x1f\x7f%*"\\\[\]+])|\ (?# 3: NUMBER )(\d+)(?=[\x80-\xff(){ \x00-\x1f\x7f%*"\\\[\]+])|\ (?# 4: ATOM )([^\x80-\xff(){ \x00-\x1f\x7f%*"\\\[\]+]+)|\ -(?# 5: QUOTED )"((?:[^\x80-\xff\x00\r\n"\\]|\\["\\])*)"|\ +(?# 5: QUOTED )"((?:[^\x00\r\n"\\]|\\["\\])*)"|\ (?# 6: LPAR )(\()|\ (?# 7: RPAR )(\))|\ (?# 8: BSLASH )(\\)|\ @@ -1857,7 +1857,7 @@ module Net # :nodoc: (?# 1: SPACE )( )|\ (?# 2: NIL )(NIL)|\ (?# 3: NUMBER )(\d+)|\ -(?# 4: QUOTED )"((?:[^\x80-\xff\x00\r\n"\\]|\\["\\])*)"|\ +(?# 4: QUOTED )"((?:[^\x00\r\n"\\]|\\["\\])*)"|\ (?# 5: LITERAL )\{(\d+)\}\r\n|\ (?# 6: LPAR )(\()|\ (?# 7: RPAR )(\)))/ni