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