Method: Net::POP3Command#retr

Defined in:
lib/pop_ssl.rb

#retr(num, &block) ⇒ Object



929
930
931
932
933
934
# File 'lib/pop_ssl.rb', line 929

def retr(num, &block)
  critical {
    getok('RETR %d', num)
    @socket.each_message_chunk(&block)
  }
end