# File lib/rbot/core/auth.rb, line 346
  def auth_whois(m, params)
    return auth_whoami(m, params) if !m.public?
    u = m.channel.users[params[:user]]

    return m.reply("I don't see anyone named '#{params[:user]}' here") unless u

    m.reply _("#{params[:user]} is %{who}") % {
      :who => get_botusername_for(u).gsub(
                /^everyone$/, _("no one that I know")).gsub(
                /^owner$/, _("my boss"))
    }
  end