module Net::IMAP::Authenticators

def authenticator(...)

Deprecated. Use Net::IMAP::SASL.authenticator instead.
def authenticator(...)
  warn(
    "%s.%s is deprecated.  Use %s.%s instead." % [
      Net::IMAP, __method__, Net::IMAP::SASL, __method__
    ],
    uplevel: 1, category: :deprecated
  )
  Net::IMAP::SASL.authenticator(...)
end