method
apop
v1_8_6_287 -
Show latest stable
- Class:
Net::POP3Command
apop( account, password )public
No documentation available.
# File lib/net/pop.rb, line 769
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