method

auth

auth(account, password)
public

No documentation available.

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