Authenticator for the “PLAIN” authentication type. See authenticate().
Class Methods
lib/net/imap.rb
View on GitHub
# File tmp/rubies/ruby-2.4.10/lib/net/imap.rb, line 3460
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.4.10/lib/net/imap.rb, line 3454
def process(data)
return "\0#{@user}\0#{@password}"
end
No documentation available