method

apop

v1_9_1_378 - Show latest stable - Class: Net::POP3Command
apop(account, password)
public

No documentation available.

# File lib/net/pop.rb, line 889
    def apop(account, password)
      raise POPAuthenticationError, 'not APOP server; cannot login'                                                        unless @apop_stamp
      check_response_auth(critical {
        get_response('APOP %s %s',
                     account,
                     Digest::MD5.hexdigest(@apop_stamp + password))
      })
    end