method

auth

v1_8_6_287 - Show latest stable - Class: Net::POP3Command
auth( account, password )
public

No documentation available.

# File lib/net/pop.rb, line 762
    def auth( account, password )
      check_response_auth(critical {
        check_response_auth(get_response('USER %s', account))
        get_response('PASS %s', password)
      })
    end