Advertisement
Guest User

Untitled

a guest
Oct 28th, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. # Copied/modified from net/imap.rb, don't modify that file, put this
  2. # in your own code to override the continue_req method
  3. module Net
  4. class IMAP
  5. class ResponseParser
  6. def continue_req
  7. match(T_PLUS)
  8. #match(T_SPACE) # Comment this line out to not expect a space.
  9. return ContinuationRequest.new(resp_text, @str)
  10. end
  11. end
  12. end
  13. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement