plehoux (Philippe-Antoine Lehoux)
- Login: plehoux
- Email: plehoux@gmail.com
- Registered on: 08/05/2014
- Last sign in: 05/10/2017
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 2 | 2 |
Activity
05/10/2017
-
05:11 PM Ruby Feature #10119: [PATCH] [net/imap] Add CHANGEDSINCE FETCH modifier + complementary add MODSEQ Message Data Item in FETCH Command
- I updated the patch so the code doesn't raise when passing a CHANGEDSINCE value bigger than 4294967296, as defined by rfc 4551.
https://tools.ietf.org/html/rfc4551 :
mod-sequence-value = 1*DIGIT
;; Po... -
03:21 PM Ruby Feature #10119: [PATCH] [net/imap] Add CHANGEDSINCE FETCH modifier + complementary add MODSEQ Message Data Item in FETCH Command
- The above patch was wrong. There is/was no flags variable in current/previous ruby versions.
The attached patch now correctly reflect the real diff.
I also added this test as requested:
~~~ ruby
# [Bug #10119]
def test_msg...
08/08/2014
-
08:00 PM Ruby Feature #10119 (Closed): [PATCH] [net/imap] Add CHANGEDSINCE FETCH modifier + complementary add MODSEQ Message Data Item in FETCH Command
- Add [CHANGEDSINCE FETCH modifier]
(http://tools.ietf.org/html/rfc4551#section-3.3.1)
+
Add [MODSEQ Message Data Item in FETCH Command]
(http://tools.ietf.org/html/rfc4551#section-3.3.2)
08/06/2014
-
12:52 AM Ruby Bug #10112: NET::IMAP fails to parse uid_search/search response with MODSEQ search criteria
- Here is my patch to parse the response successfully.
~~~
require 'net/imap'
##
# Fixing issue: NET::IMAP fails to parse uid_search/search response with MODSEQ search criteria
# https://bugs.ruby-lang.org/issues/10112
module Net...
08/05/2014
-
05:50 PM Ruby Bug #10112 (Closed): NET::IMAP fails to parse uid_search/search response with MODSEQ search criteria
- ~~~
imap.examine('INBOX')
imap.uid_search(['MODSEQ', 12345])
~~~
NET::IMAP fails to parse uid_search/search response with MODSEQ search criteria (example above), here is the debug output I get from running it on GMAIL.
~~~
C:...