List unprivileged users

Hello,

Has someone a config option, or AddOn for RT 3.8.2 that would allow to
list ALL existing (including unprivileged) users via the gui, in
Admin/Users/index.html or anywhere else ?
I can do it with the Shredder, but it’s quite dangerous ! and I don’t
want to let access to the staff using RT.

thank you very much for answer
laetib

Hello,

Has someone a config option, or AddOn for RT 3.8.2 that would allow to
list ALL existing (including unprivileged) users via the gui, in
Admin/Users/index.html or anywhere else ?
I can do it with the Shredder, but it’s quite dangerous ! and I don’t
want to let access to the staff using RT.

Search for User Id matches % and you’ll get the complete list

-kevin

Has someone a config option, or AddOn for RT 3.8.2 that would allow to
list ALL existing (including unprivileged) users via the gui,

The BecomeUser plugin will list all users, though it takes a while for
the page to load

After install, you get there by going to: Configuration, Tools, Become User
You need to the “ShowConfigtab” right to get there, I think.

The easiest way I know of is, at the bottom of the Configuration->Users page, check the 'Include disabled users in search" box, and in the query box, just put a % (sql wild card). You should get a list of everyone there!-----Original Message-----
From: rt-users-bounces@lists.bestpractical.com [mailto:rt-users-bounces@lists.bestpractical.com] On Behalf Of Allen
Sent: Friday, September 18, 2009 1:55 PM
To: rt-users@lists.bestpractical.com
Subject: Re: [rt-users] list unprivileged users

Has someone a config option, or AddOn for RT 3.8.2 that would allow to
list ALL existing (including unprivileged) users via the gui,

The BecomeUser plugin will list all users, though it takes a while for the page to load RTx::BecomeUser - Become any user - metacpan.org

After install, you get there by going to: Configuration, Tools, Become User You need to the “ShowConfigtab” right to get there, I think.
http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users

Community help: http://wiki.bestpractical.com Commercial support: sales@bestpractical.com

Discover RT’s hidden secrets with RT Essentials from O’Reilly Media.
Buy a copy at http://rtbook.bestpractical.com
This e-mail message is intended only for the personal use of the recipient(s) named above. If you are not an intended recipient, you may not review, copy or distribute this message. If you have received this communication in error, please notify the Hearst Service Center (cadmin@hearstsc.com) immediately by email and delete the original message.

The easiest way I know of is, at the bottom of the Configuration->Users page, check the 'Include disabled users in search" box, and in the query box, just put a % (sql wild card). You should get a list of everyone there!
This is what Kevin said above.

RTx::BecomeUser is relatively quick, and will list
priveleged and unpriveleged separately, but in select
fields and you must have SuperUser.

If using the wildcard trick, you can get everyone on one
page by tweaking the URI, and also speed things up by eliminating
extraneous info/markup e.g;

/Admin/Users/index.html?Format=%27__id__%2C__Name__%2C__RealName__&Rows=10000&UserField=Name&UserOp=LIKE&UserString=%25

That actually loads faster on my box than a single page of the the
default formatted table.

Thank you very much.

I’ll use the wildcard because the people who need to list Users aren’t
SuperUsers.
I don’t have a lot of users, so the speed isn’t problem, but I’m
interested in your formating, because it’s necessary for me to print
Organization name :
So this is my search :
/Admin/Users/index.html?Format='id%2C__Name__%2C__RealName__%2C__Organization__&Order=ASC&OrderBy=Organization&Page=1&Rows=10000&UserField=Name&UserOp=LIKE&UserString=%25

Do you know how I can give it for the rt staff users, like a kind of
saved search ?

thanks

Jerrad Pierce a �crit :> On Fri, Sep 18, 2009 at 14:07, Lander, Scott slander@hearstsc.com wrote:

The easiest way I know of is, at the bottom of the Configuration->Users page, check the 'Include disabled users in search" box, and in the query box, just put a % (sql wild card). You should get a list of everyone there!

This is what Kevin said above.

RTx::BecomeUser is relatively quick, and will list
priveleged and unpriveleged separately, but in select
fields and you must have SuperUser.

If using the wildcard trick, you can get everyone on one
page by tweaking the URI, and also speed things up by eliminating
extraneous info/markup e.g;

/Admin/Users/index.html?Format=%27__id__%2C__Name__%2C__RealName__&Rows=10000&UserField=Name&UserOp=LIKE&UserString=%25

That actually loads faster on my box than a single page of the the
default formatted table.


The rt-users Archives

Community help: http://wiki.bestpractical.com
Commercial support: sales@bestpractical.com

Discover RT’s hidden secrets with RT Essentials from O’Reilly Media.
Buy a copy at http://rtbook.bestpractical.com

Do you know how I can give it for the rt staff users, like a kind of saved
search ?
Saved searches are for ticket builder, this is a user search.
They can either create a browser bookmark, or you could
add a link to it in the UI with a Tabs callback.
Cambridge Energy Alliance: Save money. Save the planet.

Jerrad Pierce a écrit :

Do you know how I can give it for the rt staff users, like a kind of saved
search ?
    
Saved searches are for ticket builder, this is a user search.
They can either create a browser bookmark, or you could
add a link to it in the UI with a Tabs callback.
  

thanks, I don’t really know how to add a Tabs Callback.

@page { margin: 2cm } P { margin-bottom: 0.21cm } --What I have done, is copy /opt/rt3/share/html/Admin/Elements/UserTabs

in /opt/rt3/local/html/Admin/Elements/UserTabs

and add the html link at the bottom of the UserTabs file.

The link appears in the UI in Configuration/Users page, so it works for
now.

But it is not very clean (appears also in Modify User page…). So if
someone has a cleaner receipt - with those Callbacks-, I take it !

thanks