Feature #7145
closedAdd string-based range support to IMAP library
Description
The imap protocol supports fetching ranges of messages using notation like "1:" (to fetch all messages). I'd like to support things like: @im.fetch('1:', 'FULL')@
I've already implemented this as part of https://github.com/ruby/ruby/pull/193 and https://github.com/ruby/ruby/pull/194
Updated by tonyarkles (Tony Arkles) about 12 years ago
Was in "ruby 1.9.3p194" that I noticed the problem.
Updated by shugo (Shugo Maeda) about 12 years ago
- Status changed from Open to Assigned
- Assignee changed from tonyarkles (Tony Arkles) to shugo (Shugo Maeda)
Updated by tonyarkles (Tony Arkles) about 12 years ago
I broke the pull request. https://github.com/ruby/ruby/pull/196 is the fixed one.
Updated by shugo (Shugo Maeda) about 12 years ago
- Status changed from Assigned to Feedback
tonyarkles (Tony Arkles) wrote:
The imap protocol supports fetching ranges of messages using notation like "1:" (to fetch all messages). I'd like to support things like: @im.fetch('1:', 'FULL')@
I've already implemented this as part of https://github.com/ruby/ruby/pull/193 and https://github.com/ruby/ruby/pull/194
You can specify "1:*" like im.fetch(1..-1, 'FULL').
Can you tell me any other use case of an arbitrary String message set?
Updated by mame (Yusuke Endoh) almost 12 years ago
- Target version set to 2.6
Updated by shugo (Shugo Maeda) about 11 years ago
- Status changed from Feedback to Rejected
I close this issue because there's no feedback for a long time.