# File lib/rbot/core/auth.rb, line 694
  def auth_list_users(m, params)
    # TODO name regexp to filter results
    list = @bot.auth.save_array.inject([]) { |list, x| ['everyone', 'owner'].include?(x[:username]) ? list : list << x[:username] }
    if defined?(@destroy_q)
      list.map! { |x|
        @destroy_q.include?(x) ? x + _(" (queued for destruction)") : x
      }
    end
    return m.reply(_("I have no botusers other than the default ones")) if list.empty?
    return m.reply(n_("botuser: %{list}", "botusers: %{list}", list.length) %
                   {:list => list.join(', ')})
  end