class Net::IMAP::PlainAuthenticator

Authenticator for the "PLAIN" authentication type. See authenticate().

Public Class Methods

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

Public Instance Methods

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