In Files

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 3274
def initialize(user, password)
  @user = user
  @password = password
end

Public Instance Methods

process(data) click to toggle source
                
# File net/imap.rb, line 3268
def process(data)
  return "\00##{@user}\00##{@password}"
end
blog comments powered by Disqus