Class: Net::IMAP::PlainAuthenticator (Ruby 2.3.4)

Net::IMAP::PlainAuthenticator

Authenticator for the “PLAIN” authentication type. See authenticate().

Public Class Methods

new(user, password)
 
               # File net/imap.rb, line 3458
def initialize(user, password)
  @user = user
  @password = password
end
            

Public Instance Methods

process(data)
 
               # File net/imap.rb, line 3452
def process(data)
  return "\0#{@user}\0#{@password}"
end