diff options
author | Lucas Nussbaum <lucas@lucas-nussbaum.net> | 2009-07-28 00:04:56 +0200 |
---|---|---|
committer | Lucas Nussbaum <lucas@lucas-nussbaum.net> | 2009-07-28 00:04:56 +0200 |
commit | 606304b0fe02adcbb127bded67945bab5297a613 (patch) | |
tree | ea27ee88f6de8007d3c4a67f31aba55057c54f86 /lib/feed2imap | |
parent | df20c06c365dc9efb7594abe84dc72ac8372d481 (diff) | |
download | feed2imap-606304b0fe02adcbb127bded67945bab5297a613.tar.gz feed2imap-606304b0fe02adcbb127bded67945bab5297a613.tar.bz2 feed2imap-606304b0fe02adcbb127bded67945bab5297a613.zip |
removed patch from haeger ; no longer needed with newer rubyimap.rb
Diffstat (limited to '')
-rw-r--r-- | lib/feed2imap/rubyimap.rb | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/feed2imap/rubyimap.rb b/lib/feed2imap/rubyimap.rb index 45379a7..a36393d 100644 --- a/lib/feed2imap/rubyimap.rb +++ b/lib/feed2imap/rubyimap.rb @@ -1,8 +1,6 @@ # File fetched from # http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/lib/net/imap.rb?view=log # Current rev: 24263 -# Also added a patch from https://gna.org/bugs/?13977 to fix a problem with -# dovecot 1.2.1 ############################################################################ # # = net/imap.rb @@ -2822,7 +2820,7 @@ module Net token = match(T_ATOM) name = token.value.upcase case name - when /\A(?:ALERT|PARSE|READ-ONLY|READ-WRITE|TRYCREATE|NOMODSEQ|CLOSED)\z/n + when /\A(?:ALERT|PARSE|READ-ONLY|READ-WRITE|TRYCREATE|NOMODSEQ)\z/n result = ResponseCode.new(name, nil) when /\A(?:PERMANENTFLAGS)\z/n match(T_SPACE) |