class Net::POP3Command

def auth(account, password)

def auth(account, password)
  check_response_auth(critical {
    check_response_auth(get_response('USER %s', account))
    get_response('PASS %s', password)
  })
end