W3cubDocs

/Ruby 2.3

class Net::IMAP::PlainAuthenticator

Parent:
Object

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

Public Class Methods

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

Public Instance Methods

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

Ruby Core © 1993–2016 Yukihiro Matsumoto
Licensed under the Ruby License.
Ruby Standard Library © contributors
Licensed under their own licenses.