module Net::IMAP::SASL

def self.authenticator(*args, registry: authenticators, **kwargs, &block)

forwarded to to registry.new.
+registry+ defaults to SASL.authenticators. All other arguments are

Creates a new SASL authenticator, using SASL::Authenticators#new.
def self.authenticator(*args, registry: authenticators, **kwargs, &block)
  registry.new(*args, **kwargs, &block)
end