Maintenance of Ruby 2.0.0 ended on February 24, 2016. Read more

In Files

  • net/imap.rb

Parent

Methods

Net::IMAP::PlainAuthenticator

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

Public Class Methods

new(user, password) click to toggle source
 
               # File net/imap.rb, line 3410
def initialize(user, password)
  @user = user
  @password = password
end
            

Public Instance Methods

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