Authenticator for the “PLAIN” authentication type. See authenticate().
Class Methods
lib/net/imap.rb
View on GitHub
# File tmp/rubies/ruby-2.7.6/lib/net/imap.rb, line 3537
def initialize(user, password)
@user = user
@password = password
end
No documentation available
Instance Methods
lib/net/imap.rb
View on GitHub
# File tmp/rubies/ruby-2.7.6/lib/net/imap.rb, line 3531
def process(data)
return "\0#{@user}\0#{@password}"
end
No documentation available