класс Net::IMAP::PlainAuthenticator
Аутентификатор для типа аутентификации «PLAIN». См. authenticate().
Публичные Классовые Методы
# File lib/net/imap.rb, line 3459 def initialize(user, password) @user = user @password = password end
Публичные Экземплярные Методы
# File lib/net/imap.rb, line 3453
def process(data)
return "\0#{@user}\0#{@password}"
end
Ruby Core © 1993–2017 Yukihiro Matsumoto
Licensed under the Ruby License.
Ruby Standard Library © contributors
Licensed under their own licenses.