<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://rt-wiki.bestpractical.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Mdfinn</id>
	<title>Request Tracker Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://rt-wiki.bestpractical.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Mdfinn"/>
	<link rel="alternate" type="text/html" href="https://rt-wiki.bestpractical.com/wiki/Special:Contributions/Mdfinn"/>
	<updated>2026-08-22T12:40:47Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.41.1</generator>
	<entry>
		<id>https://rt-wiki.bestpractical.com/index.php?title=Kerberos_SSO_with_Active_Directory_Integration&amp;diff=26936</id>
		<title>Kerberos SSO with Active Directory Integration</title>
		<link rel="alternate" type="text/html" href="https://rt-wiki.bestpractical.com/index.php?title=Kerberos_SSO_with_Active_Directory_Integration&amp;diff=26936"/>
		<updated>2019-09-09T21:33:09Z</updated>

		<summary type="html">&lt;p&gt;Mdfinn: Numbered list formatting was broken. Changed to bulleted list.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== &#039;&#039;&#039;Goal&#039;&#039;&#039; ==&lt;br /&gt;
Users should transparently log in to Request Tracker with AD domain credentials.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;&#039;Overview&#039;&#039;&#039; ==&lt;br /&gt;
Apache authenticates users using mod_auth_kerb and passes the authenticated username to RequestTracker. If the users exists in RT, they will be logged in automatically. If the user does not exist, an unprivileged user will be created using details from AD (email, full name etc) and then logged in.&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;&#039;Installation&#039;&#039;&#039;==&lt;br /&gt;
* Download all of the relevant files from [http://www.amnet.net.au/~anguswarren/ here]&lt;br /&gt;
** If anyone knows how to upload files to wikia, please upload them from my webspace and remove the link :)&lt;br /&gt;
** I will put the patch file in the appendix below, in case my hosting goes down at some stage in the future.&lt;br /&gt;
* Install Request Tracker onto apache&lt;br /&gt;
** Set up your basic configuration, confirm everything is working&lt;br /&gt;
* Install RT::Authen::ExternalAuth (I tested on version 0.09)&lt;br /&gt;
** Setup RT to authenticate against AD using LDAP&lt;br /&gt;
** Test and confirm that everything is working as expected, with manually typed usernames and passwords&lt;br /&gt;
* Install mod_auth_kerb and configure to authenticate against your AD&lt;br /&gt;
** This is the step that will cause the most issues, there is plenty of documentation out there though&lt;br /&gt;
** I suggest setting up a location like /private and testing against that, until you have the authentication working successfully, then apply it to the RT directory/virtualhost and test it further&lt;br /&gt;
* Test and ensure that mod_auth_kerb is authenticating the RT location/virtualhost.&lt;br /&gt;
** If this is setup correctly, RT will still be prompting for a username and password.&lt;br /&gt;
* Update &amp;quot;$RT4_HOME/local/plugins/RT-Authen-ExternalAuth/lib/RT/Authen/ExternalAuth.pm&amp;quot;&lt;br /&gt;
** I have supplied a patch file and also the modified file&lt;br /&gt;
* Add this configuration line to your RT_SiteConfig.pm file:&lt;br /&gt;
** Set($StripStringFromRemoteUser, &amp;quot;\@DOMAIN.LOCAL&amp;quot;);&lt;br /&gt;
** You need the backslash to escape the &amp;quot;@&amp;quot; symbol. Single quotes might have worked, but I have not tested them.&lt;br /&gt;
** This removes the domain name from your username before trying to authenticate&lt;br /&gt;
* Check to see if it is now working.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;&#039;Notes&#039;&#039;&#039; ==&lt;br /&gt;
=== &#039;&#039;&#039;Kerberos&#039;&#039;&#039; ===&lt;br /&gt;
Kerberos is a pain in the ass. Check that the SPN is valid against the hostname that you are connecting to and that you do not have a duplicate SPN configured in AD. The following code will check for duplicate SPN&#039;s&lt;br /&gt;
  ldapsearch -h dc01.domain.local -x -W -D &amp;quot;Administrator@domain.local&amp;quot; \&lt;br /&gt;
  -b &amp;quot;DC=DOMAIN,DC=LOCAL&amp;quot; &#039;serviceprincipalname=*&#039; serviceprincipalname | \&lt;br /&gt;
  grep &#039;Name:&#039; | sort | uniq -d&lt;br /&gt;
&lt;br /&gt;
To Generate your keytab, the easiest way is to run this command from the linux host after joining the domain.&lt;br /&gt;
  net ads keytab add HTTP -U Administrator&lt;br /&gt;
&lt;br /&gt;
If you are using a virtual server and the name you connect with is not the same as the domain computers name, you will need to generate a keytab for the second hostname. At my company, the computers name is Support01 but we are connecting using rt.domain.local. Authentication will fail if the keytab does not match the hostname/fqdn you connect to. To generate a keytab for another hostname:&lt;br /&gt;
# Create a new user account for the SPN/keytab to be bound with, set the password never to expire.&lt;br /&gt;
# From the windows command line run the following command (obviously you will need to replace my values to match your enviroment)&lt;br /&gt;
#* ktpass -princ HTTP/rt.domain.local@DOMAIN.LOCAL -out C:\rt.domain.local.keytab -mapuser rt-kerb@domain.local --pass userspassword&lt;br /&gt;
# Move the keytab to the correct location on the apache host. (specified in the apache config file for your virtual host)&lt;br /&gt;
&lt;br /&gt;
=== &#039;&#039;&#039;Firefox&#039;&#039;&#039; ===&lt;br /&gt;
Open about:config and change add the RT url to &#039;network.negotiate-auth.trusted-uris&#039;&lt;br /&gt;
&lt;br /&gt;
=== &#039;&#039;&#039;Internet Explorer&#039;&#039;&#039; ===&lt;br /&gt;
First, add the RT url to either the Trusted sites or the Intranet zone. Once you have done that, either&lt;br /&gt;
* set the security settings for that zone to allow &amp;quot;automatic logon with the current username and password.&amp;quot;&lt;br /&gt;
* OR the lazy (efficient) way: Set the security level for the zone to &amp;quot;Low&amp;quot;&lt;br /&gt;
== &#039;&#039;&#039;Appendix&#039;&#039;&#039;==&lt;br /&gt;
This is the patch file:&lt;br /&gt;
 *** ExternalAuth.pm.vanilla	2011-07-28 10:39:08.024453400 +0800&lt;br /&gt;
 --- ExternalAuth.pm	2011-07-28 10:39:13.784799000 +0800&lt;br /&gt;
 ***************&lt;br /&gt;
 *** 81,89 ****&lt;br /&gt;
           # safely bypass the password checking later on; primarily because&lt;br /&gt;
           # it&#039;s VERY unlikely we even have a password to check if an SSO succeeded.&lt;br /&gt;
           $pass_bypass = 0;&lt;br /&gt;
 ! 	if(defined($username)) {&lt;br /&gt;
 ! 	    $RT::Logger-&amp;gt;debug(&amp;quot;Pass not going to be checked, attempting SSO&amp;quot;);&lt;br /&gt;
 !             $pass_bypass = 1;&lt;br /&gt;
           } else {&lt;br /&gt;
 &lt;br /&gt;
   	    # SSO failed and no $user was passed for a login attempt&lt;br /&gt;
 --- 81,94 ----&lt;br /&gt;
           # safely bypass the password checking later on; primarily because&lt;br /&gt;
           # it&#039;s VERY unlikely we even have a password to check if an SSO succeeded.&lt;br /&gt;
           $pass_bypass = 0;&lt;br /&gt;
 ! &lt;br /&gt;
 !         if(defined $ENV{&#039;REMOTE_USER&#039;}) {&lt;br /&gt;
 !             $username = $ENV{&#039;REMOTE_USER&#039;};&lt;br /&gt;
 !             if(defined $RT::StripStringFromRemoteUser) {&lt;br /&gt;
 !                 $username =~ s/$RT::StripStringFromRemoteUser//;&lt;br /&gt;
 !             }&lt;br /&gt;
 !             $RT::Logger-&amp;gt;debug(&amp;quot;REMOTE_USER set to: $username&amp;quot;);&lt;br /&gt;
 !             $pass_bypass = 1; &lt;br /&gt;
           } else {&lt;br /&gt;
 &lt;br /&gt;
           # SSO failed and no $user was passed for a login attempt&lt;br /&gt;
[[Category:SSO]]&lt;br /&gt;
[[Category:Kerberos]]&lt;br /&gt;
[[Category:LDAP]]&lt;br /&gt;
[[Category:Authentication&#039;]]&lt;br /&gt;
[[Category:Apache]]&lt;br /&gt;
[[Category:mod_auth_kerb]]&lt;/div&gt;</summary>
		<author><name>Mdfinn</name></author>
	</entry>
	<entry>
		<id>https://rt-wiki.bestpractical.com/index.php?title=FastCGIConfiguration&amp;diff=26505</id>
		<title>FastCGIConfiguration</title>
		<link rel="alternate" type="text/html" href="https://rt-wiki.bestpractical.com/index.php?title=FastCGIConfiguration&amp;diff=26505"/>
		<updated>2017-06-30T13:33:58Z</updated>

		<summary type="html">&lt;p&gt;Mdfinn: Some nowiki tags were not closing properly because of indents; fixed.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{OutdatedInstallGuide}}&lt;br /&gt;
&lt;br /&gt;
As of the 12/19/2012, a fastcgi_server is in the libexec folder of your request_tracker path in debian. It is flawed in such a way (line 202; &#039;&#039;unless&#039;&#039; clause) that you cannot specify the socket file you want to use, it will always use the default one (specifying the pid file works though). For this very reason, the configuration values below correspond to the default ones of the fastcgi_server script.&lt;br /&gt;
&lt;br /&gt;
Following are the initscript and the nginx configuration necessary to use it:&lt;br /&gt;
&lt;br /&gt;
 #!/bin/sh&lt;br /&gt;
      &lt;br /&gt;
      RTPATH=&amp;quot;/usr/share/request-tracker3.8/&amp;quot;&lt;br /&gt;
      RTUSER=www-data&lt;br /&gt;
      SOCKET_FILE=/var/cache/request-tracker3.8/fastcgi.sock&lt;br /&gt;
      # if you want to use a IP connection instead, please modify the su line to start it with -p or --port option instead of the --socket one.&lt;br /&gt;
      PID_FILE=/var/cache/request-tracker3.8/fastcgi.pid&lt;br /&gt;
      &lt;br /&gt;
      case $1 in&lt;br /&gt;
          start)&lt;br /&gt;
              echo -n &amp;quot;Starting RT: &amp;quot;&lt;br /&gt;
              cd $RTPATH&lt;br /&gt;
              export FCGI_SOCKET_PATH&lt;br /&gt;
              RTUSER_GROUP=&amp;quot;`id -gn $RTUSER 2&amp;gt;/dev/null`&amp;quot;&lt;br /&gt;
              if [ -n &amp;quot;$RTUSER_GROUP&amp;quot; ]&lt;br /&gt;
              then&lt;br /&gt;
                touch $PID_FILE $SOCKET_FILE;&lt;br /&gt;
                chown $RTUSER:$RTUSER_GROUP $PID_FILE $SOCKET_FILE&lt;br /&gt;
              fi&lt;br /&gt;
              su $RTUSER -c &amp;quot;libexec/fastcgi_server --pidfile=$PID_FILE --socket=$SOCKET_FILE 2&amp;gt; /dev/null&amp;quot; &amp;amp;&lt;br /&gt;
              echo &amp;quot;Started.&amp;quot;&lt;br /&gt;
              ;;&lt;br /&gt;
      &lt;br /&gt;
          stop)&lt;br /&gt;
              echo -n &amp;quot;Stopping RT: &amp;quot;&lt;br /&gt;
              PID=&amp;quot;`cat $PID_FILE 2&amp;gt;/dev/null`&amp;quot;&lt;br /&gt;
              if [ -n &amp;quot;$PID&amp;quot; ]&lt;br /&gt;
              then&lt;br /&gt;
                  kill $PID&lt;br /&gt;
                  echo &amp;quot;Stopped.&amp;quot;&lt;br /&gt;
                  rm -f $SOCKET_FILE $PID_FILE&lt;br /&gt;
              else&lt;br /&gt;
                  echo &amp;quot;not running.&amp;quot;&lt;br /&gt;
              fi&lt;br /&gt;
              ;;&lt;br /&gt;
      &lt;br /&gt;
          restart|force-reload)&lt;br /&gt;
              $0 stop&lt;br /&gt;
              $0 start&lt;br /&gt;
              ;;&lt;br /&gt;
      &lt;br /&gt;
          *)&lt;br /&gt;
              echo &amp;quot;Usage: /etc/init.d/rt { stop | start | restart }&amp;quot;&lt;br /&gt;
              exit 1&lt;br /&gt;
              ;;&lt;br /&gt;
      esac&lt;br /&gt;
&lt;br /&gt;
 server {&lt;br /&gt;
        root /usr/share/request-tracker3.8/html;&lt;br /&gt;
        index index.html index.htm;&lt;br /&gt;
        server_name localhost debian;&lt;br /&gt;
        location / {&lt;br /&gt;
                rewrite ^/rt/(.*)$ /$1 last; # this line can be removed if the 50-debconf file is modified. (&#039;&#039;Set($WebPath , &amp;quot;&amp;quot;);&#039;&#039;)&lt;br /&gt;
                try_files $uri $uri/ index.html;&lt;br /&gt;
                fastcgi_pass    unix:/var/cache/request-tracker3.8/fastcgi.sock;&lt;br /&gt;
                include         /etc/nginx/fastcgi_params;&lt;br /&gt;
                fastcgi_param   SCRIPT_NAME &amp;quot;&amp;quot;;&lt;br /&gt;
                fastcgi_param   PATH_INFO $uri;&lt;br /&gt;
        }&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr /&amp;gt;&#039;&#039;&#039;NOTE: The information below is outdated. It is superseded by the documentation in docs/web_deployment.pod in the base RT tarball.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr /&amp;gt;[https://www.soljerome.com/blog/2011/04/22/installing-request-tracker-on-ubuntu-with-nginx/ http://soljerome.com/blog/category/linux/nginx/], 4/22/2011 blog post about setting up&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;RT 3.8&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;nginx&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;MySQL&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;Ubuntu 10.04&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&lt;br /&gt;
-- MarkB&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr /&amp;gt;FastCGI is a variant to run RT server. You may want to read [[ManualApacheConfig]] to decide what you want to use.&lt;br /&gt;
&lt;br /&gt;
Even if you decided to use [[FastCGI]] then anyway you must read [[ManualApacheConfig]]. It&#039;s sort of mandatory reading :)&lt;br /&gt;
&lt;br /&gt;
Configuring RT to run in [[FastCGI]] mode is dead simple. However, configuring Apache is hard. If you are considering a single web server to use with RT, you might like to consider a fast and simple solution such as lighttpd, nginx or any of the commercial and free web servers available that support [[FastCGI]].&lt;br /&gt;
&lt;br /&gt;
= Configuring RT 3.2 and newer to run in FastCGI mode =&lt;br /&gt;
&lt;br /&gt;
When installing RT, run:&lt;br /&gt;
&lt;br /&gt;
 ./configure \&lt;br /&gt;
   --with-web-user=&amp;quot;webuser&amp;quot; \&lt;br /&gt;
   --with-web-group=&amp;quot;webgroup&amp;quot; \&lt;br /&gt;
   --with-rt-user=&amp;quot;webuser&amp;quot; \&lt;br /&gt;
   --with-rt-group=&amp;quot;webgroup&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Don&#039;t forget to include other configuration options that matter to you, like --prefix. You will still need to customize [=etc/[[RT SiteConfig|RT_SiteConfig]].pm] using [=etc/[[RT Config|RT_Config]].pm] as a base, before you run `&amp;lt;code&amp;gt;make install&amp;lt;/code&amp;gt;&#039;. If you do not have `root&#039; access to the server you are installing to, you can use `&amp;lt;code&amp;gt;fakeroot&amp;lt;/code&amp;gt;&#039; or a similar utility to use `&amp;lt;code&amp;gt;make install&amp;lt;/code&amp;gt;&#039;.&lt;br /&gt;
&lt;br /&gt;
== Configuring RT to run as a dynamic FastCGI application ==&lt;br /&gt;
&lt;br /&gt;
A dynamic [[FastCGI]] application is one in which the application process is dynamically started and stopped by the webserver process, on demand.&lt;br /&gt;
&lt;br /&gt;
RT&#039;s [[FastCGI]] handler defaults to assuming it is being run as as a dynamic application. So, configure your web server to start &amp;lt;code&amp;gt;bin/mason_handler.fcgi&amp;lt;/code&amp;gt; inside the RT installation directory for requests that it is to handle. The first time RT is accessed the web server will attempt to start RT.&lt;br /&gt;
&lt;br /&gt;
Note that this is a less-than-ideal approach, security wise, since the RT application runs under the same user-id as the web server. A better approach would be to have the web server somehow switch users when starting RT. This is commonly achieved via set-uid wrappers, which are generally hard to debug when things go wrong. Also, you will be relying on the process manager included with your web server.&lt;br /&gt;
&lt;br /&gt;
== Configuring RT to run as a static/external FastCGI application ==&lt;br /&gt;
&lt;br /&gt;
A static/external [[FastCGI]] application is one in which the application is started manually or independently of the webserver, and the webserver connects to it when needed. This makes it easy to setup user separation between the RT process and the webserver process, but you lose out on the ability for the webserver to dynamically determine how many RT processes need to be running.&lt;br /&gt;
&lt;br /&gt;
This is achieved by running the &amp;lt;code&amp;gt;bin/mason_handler.fcgi&amp;lt;/code&amp;gt; script as the configured RT user, setting &amp;lt;code&amp;gt;FCGI_SOCKET_PATH&amp;lt;/code&amp;gt; in the process environment to the location of the application socket, or a /hostname:port/ combination. This is a feature of the &amp;lt;code&amp;gt;CGI::Fast&amp;lt;/code&amp;gt; perl module, so you may need to upgrade your version of that module if your version does not support this feature.&lt;br /&gt;
&lt;br /&gt;
Note that the [[FastCGI]] handler for RT does not currently include a process manager, instead single threading requests. This is likely to be addressed in a later version of either &amp;lt;code&amp;gt;CGI::Fast&amp;lt;/code&amp;gt; or RT, but for small installations this is usually acceptable. A simple workaround is simply to start more than one RT daemon.&lt;br /&gt;
&lt;br /&gt;
Note that running RT in single threaded [[FastCGI]] mode is the &#039;&#039;&#039;only&#039;&#039;&#039; time that it is actually /safe/ to turn off the [=$[[WebFlushDbCacheEveryRequest]]] configuration option.&lt;br /&gt;
&lt;br /&gt;
You will need to set up a script that starts RT after your web server. For best results, use a [[SysV]]-style &amp;lt;code&amp;gt;/etc/init.d/&amp;lt;/code&amp;gt; script. Here is an example of such a script:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;#!/bin/sh&lt;br /&gt;
                        &lt;br /&gt;
                        RTPATH=/path/to/rt&lt;br /&gt;
                        RTUSER=rt&lt;br /&gt;
                        FCGI_SOCKET_PATH=$RTPATH/var/appSocket&lt;br /&gt;
                        &lt;br /&gt;
                        case $1 in&lt;br /&gt;
                            start)&lt;br /&gt;
                                echo -n &amp;quot;Starting RT: mason_handler.fcgi&amp;quot;&lt;br /&gt;
                                cd $RTPATH&lt;br /&gt;
                                export FCGI_SOCKET_PATH&lt;br /&gt;
                                su $RTUSER -c perl bin/mason_handler.fcgi &amp;amp;amp;&lt;br /&gt;
                                echo&lt;br /&gt;
                                ;;&lt;br /&gt;
                        &lt;br /&gt;
                            stop)&lt;br /&gt;
                                echo -n &amp;quot;Stopping RT: &amp;quot;&lt;br /&gt;
                                PIDS=`ps axww | awk &#039;/[m]ason_handler.fcgi/ { print $1}&#039;`&lt;br /&gt;
                                if [ -n &amp;quot;$PIDS&amp;quot; ]&lt;br /&gt;
                                then&lt;br /&gt;
                                    echo -n kill -TERM $PIDS&lt;br /&gt;
                                    kill $PIDS&lt;br /&gt;
                                    echo&lt;br /&gt;
                                else&lt;br /&gt;
                                    echo RT not running&lt;br /&gt;
                                fi&lt;br /&gt;
                                ;;&lt;br /&gt;
                        &lt;br /&gt;
                            restart|force-reload)&lt;br /&gt;
                                $0 stop&lt;br /&gt;
                                $0 start&lt;br /&gt;
                                ;;&lt;br /&gt;
                        &lt;br /&gt;
                            *)&lt;br /&gt;
                                echo &amp;quot;Usage: /etc/init.d/rt { stop | start | restart }&amp;quot;&lt;br /&gt;
                                exit 1&lt;br /&gt;
                                ;;&lt;br /&gt;
                        esac&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
(this example corresponds to the lighttpd setup example)&lt;br /&gt;
&lt;br /&gt;
= Web-server specific FastCGI notes =&lt;br /&gt;
&lt;br /&gt;
== Configuring RT to run with lighttpd ==&lt;br /&gt;
&lt;br /&gt;
A small patch needs to be applied to lighttpd 1.3.x, as its [[FastCGI]] support is slightly broken. See [[LighttpdPatch]] for the patch. Lighttpd 1.4.x does not have the problem.&lt;br /&gt;
&lt;br /&gt;
First, make sure that &amp;lt;code&amp;gt;&amp;quot;mod_fastcgi&amp;quot;&amp;lt;/code&amp;gt; is uncommented in the &amp;lt;code&amp;gt;server.modules&amp;lt;/code&amp;gt; option. Then you can use a &amp;lt;code&amp;gt;fastcgi.server&amp;lt;/code&amp;gt; configuration setting similar to:&lt;br /&gt;
&lt;br /&gt;
 fastcgi.server = ( &amp;quot;/rt&amp;quot; =&amp;amp;gt;&lt;br /&gt;
                      ( &amp;quot;rt&amp;quot; =&amp;amp;gt;&lt;br /&gt;
                          (&lt;br /&gt;
                              &amp;quot;socket&amp;quot; =&amp;amp;gt; &amp;quot;/path/to/rt/var/appSocket&amp;quot;,&lt;br /&gt;
                               &amp;quot;check-local&amp;quot; =&amp;amp;gt; &amp;quot;disable&amp;quot;&lt;br /&gt;
                          )&lt;br /&gt;
                      )&lt;br /&gt;
                  )&lt;br /&gt;
&lt;br /&gt;
Information for lighttpd is included as it is the easiest to setup open source web server that supports [[FastCGI]] that I am aware of. However, the process is just as simple using commercial web servers, like Zeus, [[LiteSpeed]] or thttpd professional, and no doubt other web servers with [[FastCGI]] support like Roxen or Pi3web.&lt;br /&gt;
&lt;br /&gt;
== Configuring RT to run with Apache ==&lt;br /&gt;
&lt;br /&gt;
RT 3.2 includes a significant change to the [[FastCGI]] handler. It is no longer &amp;quot;setgid&amp;quot; to the RT group. Perl&#039;s setid support has been deprecated for the last several releases and a number of platforms don&#039;t bundle the &amp;quot;sperl&amp;quot; or &amp;quot;suidperl&amp;quot; executable by default. Additionally, when perl is run [[SetUID]] or [[SetGID]], the interpreter is automatically switched into /taint mode/, in which all incoming data, no matter the source is considered suspect. At first, this seems like a great idea. But perl&#039;s taint mode is a big sledgehammer used to hit small nails. Many perl libraries aren&#039;t tested in taint mode and will fail when least expected. Moving away from a [[SetGID]] [[FastCGI]] handler will enable more users to have a smoother RT experience. It does require some changes in how you set up and configure RT.&lt;br /&gt;
&lt;br /&gt;
Beginning with RT 3.2, you have several choices about how to configure RT to run as a [[FastCGI]]:&lt;br /&gt;
&lt;br /&gt;
=== 1. Install RT as the user your webserver runs as ===&lt;br /&gt;
&lt;br /&gt;
Pros: Very easy to configure&lt;br /&gt;
&lt;br /&gt;
Cons: Your webserver has access to RT&#039;s private database password&lt;br /&gt;
&lt;br /&gt;
==== How To ====&lt;br /&gt;
&lt;br /&gt;
First, determine whether you are using mod_fastcgi or mod_fcgid. I believe mod_fastcgi is older and supports older versions of Apache (i.e. Apache 1.x). The mod_fcgid is newer and is included with newer versions of Fedora Linux, etc. RT does not care which module is being used, but the configuration syntax is different for each module.&lt;br /&gt;
&lt;br /&gt;
If you are using mod_fastcgi (apache 1.x), you&#039;ll want to add something like the following to your httpd.conf:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE:&#039;&#039;&#039; Most [[FastCGI]] options are available only in apache&#039;s server config context, not in virtual host sections.&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;# Tell FastCGI to put its temporary files somewhere sane.&lt;br /&gt;
                        FastCgiIpcDir /tmp&lt;br /&gt;
                        &lt;br /&gt;
                        # Number of processes is tunable, but you need at least 3 or 4&lt;br /&gt;
                        FastCgiServer /opt/rt3/bin/mason_handler.fcgi -idle-timeout 120 -processes 4&lt;br /&gt;
                        &lt;br /&gt;
                        &amp;amp;lt;VirtualHost rt.example.com&amp;amp;gt;&lt;br /&gt;
                        &lt;br /&gt;
                           AddHandler fastcgi-script fcgi&lt;br /&gt;
                           ScriptAlias / /opt/rt3/bin/mason_handler.fcgi/&lt;br /&gt;
                        &lt;br /&gt;
                        &amp;amp;lt;/VirtualHost&amp;amp;gt;&lt;br /&gt;
                        &lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you are using mod_fcgid, you&#039;ll want to add something like the following to your httpd.conf:&lt;br /&gt;
&lt;br /&gt;
 &amp;amp;lt;VirtualHost rt.example.com&amp;amp;gt;&lt;br /&gt;
 &lt;br /&gt;
    ServerName rt.example.com&lt;br /&gt;
    DocumentRoot /opt/rt3/share/html&lt;br /&gt;
 &lt;br /&gt;
    AddHandler fcgid-script fcgi&lt;br /&gt;
    ScriptAlias / /opt/rt3/bin/mason_handler.fcgi/&lt;br /&gt;
 &lt;br /&gt;
 &amp;amp;lt;/VirtualHost&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== 2. Make your webserver user a member of the &amp;quot;rt&amp;quot; group ===&lt;br /&gt;
&lt;br /&gt;
Pros: Easy to configure&lt;br /&gt;
&lt;br /&gt;
Cons: Your webserver has access to RT&#039;s private database password&lt;br /&gt;
&lt;br /&gt;
==== How To ====&lt;br /&gt;
&lt;br /&gt;
Install RT normally. Add whichever user your webserver runs as (whatever you set --with-web-user to) to the &amp;quot;rt&amp;quot; group (whatever you set --with-rt-group to) in /etc/groups.&lt;br /&gt;
&lt;br /&gt;
To find out what user your webserver runs as, look for the line&lt;br /&gt;
&lt;br /&gt;
 User some-user-name&lt;br /&gt;
&lt;br /&gt;
in your apache httpd.conf. Common values are www, www-data, web and nobody.&lt;br /&gt;
&lt;br /&gt;
=== 3. Run RT using _suexec_ or a similar mechanism ===&lt;br /&gt;
&lt;br /&gt;
Pros: More secure&lt;br /&gt;
&lt;br /&gt;
Cons: Sometimes very difficult to configure&lt;br /&gt;
&lt;br /&gt;
==== How To ====&lt;br /&gt;
&lt;br /&gt;
Apache&#039;s &amp;lt;u&amp;gt;suexec&amp;lt;/u&amp;gt; utility allows you run CGI programs as specific users. Because that&#039;s a relatively heavy responsibility, it&#039;s very, very conservative about what it&#039;s willing to do for you. On top of that, Apache&#039;s mod_fastcgi plugin doesn&#039;t respect all of suexec&#039;s features. While suexec is designed to execute CGI scripts in a given virtual host&#039;s DocumentRoot, It can only execute [[FastCGI]] scripts in the system&#039;s &#039;&#039;&#039;main&#039;&#039;&#039; DocumentRoot.&lt;br /&gt;
&lt;br /&gt;
This means you have to copy the RT [[FastCGI]] handler into your main DocumentRoot&lt;br /&gt;
&lt;br /&gt;
The following example VirtualHost will run RT as a [[FastCGI]] on Apache 1.3 on a Debian Linux server.&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;# Tell FastCGI to put its temporary files somewhere sane.&lt;br /&gt;
                        FastCgiIpcDir /tmp&lt;br /&gt;
                        &lt;br /&gt;
                        # Tell FastCGI that it should use apache&#039;s &amp;quot;suexec&amp;quot; binary to call any FastCGI script.&lt;br /&gt;
                        # This is a GLOBAL setting&lt;br /&gt;
                        FastCgiWrapper /usr/lib/apache/suexec&lt;br /&gt;
                        &lt;br /&gt;
                        # You need to copy the rt mason_handler.fcgi into a directory inside the main server DocumentRoot&lt;br /&gt;
                        # That directory must be owned by the user and group that will execute the FastCGI script&lt;br /&gt;
                        # In this case, that directory is /var/www/rt&lt;br /&gt;
                        &lt;br /&gt;
                        # To find the local DocumentRoot, run &amp;quot;suexec -V&amp;quot; as root and look for the&lt;br /&gt;
                        #  -D DOC_ROOT parameter.&lt;br /&gt;
                        &lt;br /&gt;
                        # Apache 1.3 discards the user and group parameters on the FastCgiServer line.&lt;br /&gt;
                        # Apache 2.0 requires them.&lt;br /&gt;
                        FastCgiServer /var/www/rt/mason_handler.fcgi -idle-timeout 120 -user rt -group rt -processes 4&lt;br /&gt;
                        &lt;br /&gt;
                        &amp;amp;lt;VirtualHost rt.example.com&amp;amp;gt;&lt;br /&gt;
                        &lt;br /&gt;
                           DocumentRoot /opt/rt3/share/html&lt;br /&gt;
                        &lt;br /&gt;
                           # Set the rt user and group as the executing user for this virtual host.&lt;br /&gt;
                           # For apache 2 you need&lt;br /&gt;
                           #    SuexecUserGroup rt rt&lt;br /&gt;
                           # instead&lt;br /&gt;
                           User rt&lt;br /&gt;
                           Group rt&lt;br /&gt;
                        &lt;br /&gt;
                           AddHandler fastcgi-script fcgi&lt;br /&gt;
                           ScriptAlias / /var/www/rt/mason_handler.fcgi/&lt;br /&gt;
                        &lt;br /&gt;
                        &amp;amp;lt;/VirtualHost&amp;amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Configuring RT3 to run with nginx ==&lt;br /&gt;
&lt;br /&gt;
The patch listed below is no longer required with the latest version of nginx ([[ManualApacheConfig|http://www.nginx.net]]),&lt;br /&gt;
&lt;br /&gt;
Here is a quick excerpt that shows how to run rt3 with a [[FastCGI]] socket,&lt;br /&gt;
&lt;br /&gt;
 server {&lt;br /&gt;
     listen       80;&lt;br /&gt;
     server_name  localhost;&lt;br /&gt;
 &lt;br /&gt;
     location / {&lt;br /&gt;
             root   /usr/local/rt3/share/html;&lt;br /&gt;
             fastcgi_pass    unix:/var/run/rt3/rt3.socket;&lt;br /&gt;
 &lt;br /&gt;
             fastcgi_param  QUERY_STRING       $query_string;&lt;br /&gt;
             fastcgi_param  REQUEST_METHOD     $request_method;&lt;br /&gt;
             fastcgi_param  CONTENT_TYPE       $content_type;&lt;br /&gt;
             fastcgi_param  CONTENT_LENGTH     $content_length;&lt;br /&gt;
             fastcgi_param  PATH_INFO          $fastcgi_script_name;&lt;br /&gt;
     }&lt;br /&gt;
 &lt;br /&gt;
     location /NoAuth/ {&lt;br /&gt;
             alias   /usr/local/rt3/share/html/NoAuth/;&lt;br /&gt;
     }&lt;br /&gt;
&lt;br /&gt;
It seems that declaring SCRIPT_NAME /and/ PATH_INFO clobbers some functions so be sure to use only PATH_INFO.&lt;br /&gt;
&lt;br /&gt;
A small patch needs to be applied to mason_handler.fcgi to run properly under [[FastCGI]] witn nginx. Problem - nginx not send PATH_INFO to fastcgi server.&lt;br /&gt;
&lt;br /&gt;
First apply next patch to mason_handler.fcgi:&lt;br /&gt;
&lt;br /&gt;
  --- ./bin/mason_handler.fcgi    2005-12-02 08:23:20.000000000 -0500&lt;br /&gt;
  +++ /usr/local/rt3/bin/mason_handler.fcgi       2005-12-02 11:54:56.000000000 -0500&lt;br /&gt;
  @@ -68,11 +68,17 @@&lt;br /&gt;
      Module::Refresh-&amp;amp;gt;refresh if $RT::DevelMode;&lt;br /&gt;
      RT::ConnectToDatabase();&lt;br /&gt;
 &lt;br /&gt;
 +    my $path_info = $cgi-&amp;amp;gt;script_name;&lt;br /&gt;
 +    $path_info =~ s/^\///;&lt;br /&gt;
 +    $cgi-&amp;amp;gt;path_info($path_info);&lt;br /&gt;
 +        $RT::Logger-&amp;amp;gt;crit($path_info);&lt;br /&gt;
 +&lt;br /&gt;
      if ( ( !$Handler-&amp;amp;gt;interp-&amp;amp;gt;comp_exists( $cgi-&amp;amp;gt;path_info ) )&lt;br /&gt;
          &amp;amp;amp;&amp;amp;amp; ( $Handler-&amp;amp;gt;interp-&amp;amp;gt;comp_exists( $cgi-&amp;amp;gt;path_info . &amp;quot;/index.html&amp;quot; ) ) ) {&lt;br /&gt;
          $cgi-&amp;amp;gt;path_info( $cgi-&amp;amp;gt;path_info . &amp;quot;/index.html&amp;quot; );&lt;br /&gt;
      }&lt;br /&gt;
 -&lt;br /&gt;
 +&lt;br /&gt;
 +            $RT::Logger-&amp;amp;gt;crit($cgi-&amp;amp;gt;path_info);&lt;br /&gt;
      eval { $Handler-&amp;amp;gt;handle_cgi_object($cgi); };&lt;br /&gt;
      if ($@) {&lt;br /&gt;
          $RT::Logger-&amp;amp;gt;crit($@);&lt;br /&gt;
&lt;br /&gt;
Then create config for vhost that you want run rt3 on:&lt;br /&gt;
&lt;br /&gt;
(example of config for fastcgi socket path - /tmp/request_tracker and rt3 installation path - /usr/local/rt3/&lt;br /&gt;
&lt;br /&gt;
 server {&lt;br /&gt;
 listen  IP_ADDRESS:PORT;&lt;br /&gt;
 server_name     domain.com;&lt;br /&gt;
 &lt;br /&gt;
 location /images/ {	   alias /usr/local/rt3/share/html/NoAuth/images/;    }&lt;br /&gt;
 &lt;br /&gt;
    location  / {&lt;br /&gt;
    fastcgi_pass  unix:/tmp/request_tracker;&lt;br /&gt;
    fastcgi_x_powered_by off; # default on&lt;br /&gt;
    fastcgi_param   DOCUMENT_ROOT   /usr/local/rt3/share/html;&lt;br /&gt;
    fastcgi_param   SCRIPT_FILENAME /usr/local/rt3/share/html$fastcgi_script_name;&lt;br /&gt;
    fastcgi_param   PATH_TRANSLATED /usr/local/rt3/share/html$fastcgi_script_name;&lt;br /&gt;
    fastcgi_param   SCRIPT_NAME  $fastcgi_script_name;&lt;br /&gt;
    fastcgi_param   QUERY_STRING    $query_string;&lt;br /&gt;
    fastcgi_param   CONTENT_TYPE    $content_type;&lt;br /&gt;
    fastcgi_param   CONTENT_LENGTH  $content_length;&lt;br /&gt;
    fastcgi_param   REDIRECT_STATUS 200;&lt;br /&gt;
    fastcgi_param   SERVER_ADDR     $server_addr;&lt;br /&gt;
    fastcgi_param   SERVER_PORT     $server_port;&lt;br /&gt;
    fastcgi_param   SERVER_PROTOCOL $server_protocol;&lt;br /&gt;
    fastcgi_param   SERVER_SOFTWARE &amp;quot;nginx/0.3.15&amp;quot;;&lt;br /&gt;
    fastcgi_param   GATEWAY_INTERFACE       &amp;quot;CGI/1.1&amp;quot;;&lt;br /&gt;
    fastcgi_param   SERVER_NAME     $server_name;&lt;br /&gt;
    fastcgi_param   SERVER_NAME     $server_name;&lt;br /&gt;
    fastcgi_param   REQUEST_URI     $request_uri;&lt;br /&gt;
    fastcgi_param   REQUEST_METHOD  $request_method;&lt;br /&gt;
    fastcgi_param   REMOTE_USER     $remote_user;&lt;br /&gt;
    fastcgi_param   REMOTE_ADDR     $remote_addr;&lt;br /&gt;
    fastcgi_param   REMOTE_PORT     $remote_port;&lt;br /&gt;
    }&lt;br /&gt;
 &lt;br /&gt;
 location ~* .+\.(html|js|css)$  {       ....same as above location....     }&lt;br /&gt;
 &lt;br /&gt;
 location  /NoAuth/ {     	alias /usr/local/rt3/share/html/NoAuth/;     }&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
All tested and working with rt 3.5.5&lt;br /&gt;
&lt;br /&gt;
Other information about nginx and FastCGI can be found on our site - [[ManualApacheConfig|http://www.nginx.info]] (now russian only, will be translated soon)&lt;br /&gt;
&lt;br /&gt;
PS. If you want run rt3 with prefix - domain.com/prefix/, so need to remove that prefix for path_info (in perl code of patch above)&lt;br /&gt;
&lt;br /&gt;
== RT 3.0 FastCGI configuration ==&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;nowiki&amp;gt;!FastCGI configuration for Apache 2.0&amp;lt;/nowiki&amp;gt; ===&lt;br /&gt;
&lt;br /&gt;
(assumes FastCGI is already installed)&lt;br /&gt;
&lt;br /&gt;
This is roughly what I had to do to get [[RequestTracker]] working using [[FastCGI]] on [[RedHat9]] system.&lt;br /&gt;
&lt;br /&gt;
1. Install suidperl package, if not already installed.&lt;br /&gt;
&lt;br /&gt;
2. Edit first line of /opt/rt3/bin/mason_handler.fcgi to be&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;#!/usr/bin/suidperl&lt;br /&gt;
                        &lt;br /&gt;
 &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
3. Add the following to /etc/httpd/conf/httpd.conf&lt;br /&gt;
&lt;br /&gt;
 LoadModule fastcgi_module modules/mod_fastcgi.so&lt;br /&gt;
 &lt;br /&gt;
 FastCgiIpcDir /tmp&lt;br /&gt;
 FastCgiServer /opt/rt3/bin/mason_handler.fcgi -idle-timeout 300 -processes 5&lt;br /&gt;
 &amp;amp;lt;VirtualHost *&amp;amp;gt;&lt;br /&gt;
     ServerName rt-host-name.example.org&lt;br /&gt;
     DocumentRoot /opt/rt3/share/html&lt;br /&gt;
 &lt;br /&gt;
     AddHandler fastcgi-script fcgi&lt;br /&gt;
     ScriptAlias / /opt/rt3/bin/mason_handler.fcgi/&lt;br /&gt;
 &lt;br /&gt;
     &amp;amp;lt;Location /&amp;amp;gt;&lt;br /&gt;
         AddDefaultCharset UTF-8&lt;br /&gt;
         SetHandler fastcgi-script&lt;br /&gt;
     &amp;amp;lt;/Location&amp;amp;gt;&lt;br /&gt;
 &amp;amp;lt;/VirtualHost&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;nowiki&amp;gt;!FastCGI configuration for Apache 1.3&amp;lt;/nowiki&amp;gt; ===&lt;br /&gt;
&lt;br /&gt;
 LoadModule fastcgi_module libexec/apache/mod_fastcgi.so&lt;br /&gt;
 AddModule mod_fastcgi.c&lt;br /&gt;
&lt;br /&gt;
Outside the vhost:&lt;br /&gt;
&lt;br /&gt;
 FastCgiServer /opt/rt3/bin/mason_handler.fcgi -idle-timeout 300 -processes 5&lt;br /&gt;
&lt;br /&gt;
In your vhost:&lt;br /&gt;
&lt;br /&gt;
 AddHandler fastcgi-script fcgi&lt;br /&gt;
 ScriptAlias / /opt/rt3/bin/mason_handler.fcgi/&lt;br /&gt;
 &amp;amp;lt;Location /&amp;amp;gt;&lt;br /&gt;
       AddDefaultCharset UTF-8&lt;br /&gt;
       SetHandler fastcgi-script&lt;br /&gt;
 &amp;amp;lt;/Location&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Since the default Apache install includes a Directory directive blocking access to / and another to allow for the [[DocumentRoot]], you might need to add something like:&lt;br /&gt;
&lt;br /&gt;
 &amp;amp;lt;Directory &amp;quot;/opt/rt3&amp;quot;&amp;amp;gt;&lt;br /&gt;
     Order allow,deny&lt;br /&gt;
     Allow from all&lt;br /&gt;
 &amp;amp;lt;/Directory&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
To allow access to that directory, too. The symptom is getting &#039;403 Forbidden&#039; and a line like &#039;client denied by server configuration&#039; in your Apache error log, even for index.html. -- [[HowardJones]]&lt;br /&gt;
&lt;br /&gt;
=== See also ===&lt;br /&gt;
&lt;br /&gt;
* [http://www.fastcgi.com/mod_fastcgi/docs/mod_fastcgi.html#fastcgiserver mod_fastcgi for apache]&lt;br /&gt;
&lt;br /&gt;
== Running rt 4.2.6 / nginx / DocumentRoot-prefix &amp;quot;/rt&amp;quot; ==&lt;br /&gt;
I updated to rt 4.2.6 - now, the combination of rt / nginx / fastcgi / document-root &#039;/rt&#039; does not work again. My goal is to map a RT with nginx to a URL like &amp;quot;http://www.domain.de:8080/rt&amp;quot; (instead of &amp;quot;http://www.domain.de:8080&amp;quot;). I played around and found the following working setup - Danny70437.&lt;br /&gt;
 /etc/nginx/conf.d/rt4.conf&lt;br /&gt;
 &lt;br /&gt;
 server {&lt;br /&gt;
 &lt;br /&gt;
 listen       8080;&lt;br /&gt;
 server_name  host.domain.de;&lt;br /&gt;
 root /tmp;&lt;br /&gt;
 &lt;br /&gt;
 &amp;lt;nowiki&amp;gt;#&amp;lt;/nowiki&amp;gt; /opt/rt4/etc/RT_SiteConfig.pm&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;#&amp;lt;/nowiki&amp;gt;   Set($WebDomain, &amp;quot;host.domain.de&amp;quot;);&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;#&amp;lt;/nowiki&amp;gt;   Set($WebPort , 8080);&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;#&amp;lt;/nowiki&amp;gt;   Set($WebPath , &amp;quot;/rt&amp;quot;);&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;#&amp;lt;/nowiki&amp;gt;   Set(@ReferrerWhitelist, qw(extranet.domain.de:443 host.domain.de:8080 ));&lt;br /&gt;
 &lt;br /&gt;
 &amp;lt;nowiki&amp;gt;#&lt;br /&gt;
 #&lt;br /&gt;
 #&lt;br /&gt;
 location  / {&lt;br /&gt;
 &lt;br /&gt;
 ###&amp;lt;/nowiki&amp;gt; &amp;lt;original /etc/nginx/fastcgi_params - debian 7.x&amp;gt;&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;#&amp;lt;/nowiki&amp;gt; include         /etc/nginx/fastcgi_params;&lt;br /&gt;
 fastcgi_param QUERY_STRING            $query_string;&lt;br /&gt;
 fastcgi_param REQUEST_METHOD          $request_method;&lt;br /&gt;
 fastcgi_param CONTENT_TYPE            $content_type;&lt;br /&gt;
 fastcgi_param CONTENT_LENGTH          $content_length;&lt;br /&gt;
 &lt;br /&gt;
 fastcgi_param SCRIPT_FILENAME         $request_filename;&lt;br /&gt;
 fastcgi_param SCRIPT_NAME             $fastcgi_script_name;&lt;br /&gt;
 fastcgi_param REQUEST_URI             $request_uri;&lt;br /&gt;
 fastcgi_param DOCUMENT_URI            $document_uri;&lt;br /&gt;
 fastcgi_param DOCUMENT_ROOT           $document_root;&lt;br /&gt;
 fastcgi_param SERVER_PROTOCOL         $server_protocol;&lt;br /&gt;
 &lt;br /&gt;
 fastcgi_param GATEWAY_INTERFACE       CGI/1.1;&lt;br /&gt;
 fastcgi_param SERVER_SOFTWARE         nginx/$nginx_version;&lt;br /&gt;
 &lt;br /&gt;
 fastcgi_param REMOTE_ADDR             $remote_addr;&lt;br /&gt;
 fastcgi_param REMOTE_PORT             $remote_port;&lt;br /&gt;
 fastcgi_param SERVER_ADDR             $server_addr;&lt;br /&gt;
 fastcgi_param SERVER_PORT             $server_port;&lt;br /&gt;
 fastcgi_param SERVER_NAME             $server_name;&lt;br /&gt;
 &lt;br /&gt;
 fastcgi_param HTTPS                   $https;&lt;br /&gt;
 &lt;br /&gt;
 &amp;lt;nowiki&amp;gt;#&amp;lt;/nowiki&amp;gt; PHP only, required if PHP was built with --enable-force-cgi-redirect&lt;br /&gt;
 fastcgi_param REDIRECT_STATUS         200;&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;###&amp;lt;/nowiki&amp;gt; &amp;lt;/original /etc/nginx/fastcgi_params&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
 fastcgi_pass   unix:/opt/rt4/var/fastcgi.sock;&lt;br /&gt;
 &lt;br /&gt;
 fastcgi_param   SCRIPT_NAME &amp;quot;/rt&amp;quot;;&lt;br /&gt;
 fastcgi_param   PATH_INFO $uri;&lt;br /&gt;
 &lt;br /&gt;
 }&lt;br /&gt;
 &lt;br /&gt;
 }&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 rt-server.fcgi was called like this:&lt;br /&gt;
 /opt/rt4/sbin/rt-server.fcgi --pidfile=/opt/rt4/var/fastcgi.pid --socket=/opt/rt4/var/fastcgi.sock 2&amp;gt; /dev/null&lt;/div&gt;</summary>
		<author><name>Mdfinn</name></author>
	</entry>
	<entry>
		<id>https://rt-wiki.bestpractical.com/index.php?title=RTUsers&amp;diff=5352</id>
		<title>RTUsers</title>
		<link rel="alternate" type="text/html" href="https://rt-wiki.bestpractical.com/index.php?title=RTUsers&amp;diff=5352"/>
		<updated>2016-06-17T18:54:14Z</updated>

		<summary type="html">&lt;p&gt;Mdfinn: added link to our RT&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== RT Users ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Do not create&#039;&#039;&#039; new users&#039; pages like JohnDoe. wikia has user profile and link to the profile. All such pages &#039;&#039;&#039;will be deleted&#039;&#039;&#039; with notice. Such pages already exist, but that&#039;s history.&lt;br /&gt;
&lt;br /&gt;
Add yourself to the list if you use RT, &#039;&#039;&#039;sorted alphabetically by first name&#039;&#039;&#039; (since no one was actually &#039;&#039;&#039;sorting&#039;&#039;&#039; by last name as requested :-). If you can, please list the name of the organization that uses RT in parentheses afterwards. Feel free to include a link.&lt;br /&gt;
&lt;br /&gt;
* Yahia Reda Abdul Qawi (Open IT, egypt , facebook.com/OpeniT)&lt;br /&gt;
* Teyseer&lt;br /&gt;
&lt;br /&gt;
* [[AaronHawley]] (Beeman Elementary School; New Haven, VT, US)&lt;br /&gt;
* Adam Lowe ([http://www.routesense.net Route Sense Corporation])&lt;br /&gt;
* [http://www.bauani.org/ Ahamed Bauani]&lt;br /&gt;
* Al Moran (Pearson School Technology)&lt;br /&gt;
* [[AlanBrault]] ([http://www.hardwareandtools.com Hardware and Tools Corp.])&lt;br /&gt;
* Alan Clegg ([http://www.hostedsolutions.com Hosted Solutions]&lt;br /&gt;
* [https://www.linkedin.com/in/albertoscotto/en Alberto Scotto]&lt;br /&gt;
* Alex Rhys-Hurn ( [http://www.itworx.co.ke ITworX Limited], IT Services, Nairobi, Kenya )&lt;br /&gt;
* Alex Dolman [http://www.southeastjobs.com.au (south east jobs)]&lt;br /&gt;
* Alex Moura ([http://www.rnp.br/en/ RNP], [http://www.rnp.br/en/ceo/ NOC], [http://www.rnp.br/en/ Brazilian R&amp;amp;amp;D Network])&lt;br /&gt;
* Alexander Finger (several large installations)&lt;br /&gt;
* Alexander Suscom ([http://www.ankauf-verkauf.net Goldankauf]&lt;br /&gt;
* Alexander Susdorf ([http://www.suscom.de Computer Shop])&lt;br /&gt;
* [http://chorny.net Alexandr Ciornii]&lt;br /&gt;
* Alexandre Vovan ([http://cegepst.qc.ca Cégep de Sorel-Tracy], Canada)&lt;br /&gt;
* [[AlexVandiver]] [http://www.bestpractical.com Best Practical Solutions]&lt;br /&gt;
* Alison Downie ([http://www.inf.ed.ac.uk School of Informatics,University of Edinburgh])&lt;br /&gt;
* Alister West ([http://www.6robots.com Robots unite!])&lt;br /&gt;
* ALLAN LIN ([http://www.tabcorp.com.au Solutions Delivery])&lt;br /&gt;
* Allan Thrower ([http://mct.open.ac.uk Mathematics, Computing and Technology Faculty - The Open University])&lt;br /&gt;
* Anderson R Pereira ([http://internet.sefaz.es.gov.br/index.php Sefaz_ES], Brasil)&lt;br /&gt;
* [[AndreasEdler]] ([http://www.hostway.eu/ Hostway Europe])&lt;br /&gt;
* Andre Dalle ([http://www.ncf.ca/ National Capital Freenet], Canada)&lt;br /&gt;
* Andre Filipe Batista ([http://hpc.ufabc.edu.br Federal University of ABC - High Performance Computing])&lt;br /&gt;
* [[AndreSachs]]&lt;br /&gt;
* Andrew Bruex ([http://www.universalformulas.com Universal Formulas]/Industrial Logic)&lt;br /&gt;
* [http://www.mcfarland.co.uk Andrew McFarland]&lt;br /&gt;
* Andrew Michael Stemen (Fairfield County IT)&lt;br /&gt;
* Andrew Nicols ([http://www.luns.net.uk Lancaster University Network Services Limited.,])&lt;br /&gt;
* Andrew Wafula (Siemens FN COM Kenya)&lt;br /&gt;
* [[AndrewRedman]] ([http://education.ucsb.edu UCSB Gevirtz Graduate School of Education])&lt;br /&gt;
* [[AndrewSterlingHanenkamp]] ([http://www.ksu.edu Kansas State University], [http://www.cis.ksu.edu/ Computing and Information Science], [http://support.cis.ksu.edu/ Systems Support])&lt;br /&gt;
* [[AndrewSweger]] (Lucidoc Corporation)&lt;br /&gt;
* Andy Buckley (Manheim Retail Services [http://www.manheimretailservices.co.uk/ Manheim Retail Services])&lt;br /&gt;
* Andy Halvorsen (Zivity)&lt;br /&gt;
* Andy Rosenthal [http://www.permabit.com Permabit]&lt;br /&gt;
* Andy Sturm (Graypoint Auto Finance Corp.)&lt;br /&gt;
* [[AndyHarrison]] ([http://www.metrocast.com MetroCast CableVision] )&lt;br /&gt;
* Angelo Turetta [http://www.nuoz.com/voipcloud-computing/voip/polycom-ip-phone/ Polycom IP phone]&lt;br /&gt;
* Ann Barcomb&lt;br /&gt;
* Anthony Ball (ant at suave dot net)&lt;br /&gt;
* Anthony David Curtolo [http://www.nuoz.com/voipcloud-computing/managed-cloud-services-comparison/ managed cloud services]&lt;br /&gt;
* Anthony Fairchild ([http://www.islandone.com Island One Resorts])&lt;br /&gt;
* Antonissen Sven ([http://www.svanto.net Svanto.net - Internet Telephony Provider, cloud based voice applications] )&lt;br /&gt;
* Anya Figlin (Pictage, Inc.)&lt;br /&gt;
* Arjun Surendra [http://www.aol.com Aol.]&lt;br /&gt;
* Ari Constâncio ([http://www.isep.ipp.pt Instituto Superior de Engenharia do Porto])&lt;br /&gt;
* Arnel Espanola (UCLA-Arts)&lt;br /&gt;
* Art Sackett [http://www.artsackett.com/ Perl Programmer]&lt;br /&gt;
* Asa Gage ([http://www.ibec.net IBEC, Inc.])&lt;br /&gt;
* Atro Tossavainen ([http://www.biocenter.helsinki.fi/bi/ Institute of Biotechnology], [http://www.helsinki.fi/ University of Helsinki])&lt;br /&gt;
* [[AutrijusTang]] ([=[[OurInternet]]], Inc.)&lt;br /&gt;
* Avi Attia ([http://www.spd.co.il sPD Hosting LTD.])&lt;br /&gt;
* Bill Adamuska (CleverMinds)&lt;br /&gt;
* Ben Bridle ([LMH, Oxford Uni])&lt;br /&gt;
* Ben Loyall ([http://asd-www.larc.nasa.gov NASA LaRC, Science Directorate])&lt;br /&gt;
* Bengt Gördén ([http://www.resilans.se/ Resilans AB])&lt;br /&gt;
* Benjamin Meyers&lt;br /&gt;
* [mailto:b.wakely@latrobe.edu.au Benji Wakely] ([http://www.aarlin.edu.au AARLIN])&lt;br /&gt;
* Bert Dvornik&lt;br /&gt;
* Bill Barnard ([http://www.prospectsolution.com/ Writer Jobs])&lt;br /&gt;
* Bill Chmura ([http://www.strongpointnetworks.com Strongpoint Networks])&lt;br /&gt;
* Bill George ([http://www.vonage.com Vonage])&lt;br /&gt;
* Bill Gerrard ([http://www.popularreview.com Review Networks, Inc.])&lt;br /&gt;
* [mailto:BarnacleBob@gmail.com Bob Barnacle] (user since 11/2002)&lt;br /&gt;
* Bob Blanchard ([http://www.daintyrice.ca Dainty Foods])&lt;br /&gt;
* Bob Goldstein ([http://www.uic.edu/ University of Illinois at Chicago])&lt;br /&gt;
* Bob Michie ([http://www.caseygrp.com The Casey Group])&lt;br /&gt;
* [https://github.com/btb Bradley Bell] ([http://www.css.washington.edu Classroom Support Services] , [http://www.washington.edu University of Washington] )&lt;br /&gt;
* Brazen (reachable at jdinkel &amp;lt;at&amp;gt; bucoks &amp;lt;dot&amp;gt; com)&lt;br /&gt;
* Brian Benson (Philomath School District &amp;amp;amp; Lebanon School District, Oregon k12)&lt;br /&gt;
* Brian Bush ([http://www.sylmark.com/ Sylmark, Inc])&lt;br /&gt;
* [[BrianGupta]]&lt;br /&gt;
* Brian Hill (BCH Technical Services, LLC)&lt;br /&gt;
* [[BrianIngerson]]&lt;br /&gt;
* Bruce Ferrell&lt;br /&gt;
* [[BruceTimberlake]]&lt;br /&gt;
* Bruno Marmier&lt;br /&gt;
* [http://requesttracker.wikia.com/wiki/Skorzen Bruno Martins] ([http://www.galileu.pt/ Galileu])&lt;br /&gt;
* Bryan Ellinger (Applied Dynamics International)&lt;br /&gt;
* Bryan Morris (University of Utah, [[NetOpS]])&lt;br /&gt;
* Camron Fox ([http://www.fai.fujitsu.com High Performance Computing Group, Fujitsu America, Inc.])&lt;br /&gt;
* Charles Miller (Eleisure)&lt;br /&gt;
* Carl Vincent ([http://www.netskills.ac.uk/ Netskills, University of Newcastle])&lt;br /&gt;
* Carlos Moreira ([http://www.bu.edu/eng/ Boston University College of Engineering] )&lt;br /&gt;
* Carlos Teles [[Carlosalbertoteles]] ([http://www.embratel.net.br/ EMBRATEL])&lt;br /&gt;
* Casper Bruun Møller ([http://www.metropolonline.dk/ Metropol Online])&lt;br /&gt;
* Chaitanya Veludandi (TCG Software Services Pvt. Ltd)&lt;br /&gt;
* Charles Delorme (charles . delorme at suricat . net)&lt;br /&gt;
* Charles Fish ([http://www.the-center.org/ The Center for Behavioral Health,])&lt;br /&gt;
* Charlie Garrison ([http://www.make-tracks.com.au/ Make-Tracks Secure Hosting])&lt;br /&gt;
* Cheryl Davis (Hallmark Cards, Inc.)&lt;br /&gt;
* Chris Cordy (Trent University)&lt;br /&gt;
* Chris Doherty ([http://www.coherent-amt.com Coherent-AMT, Inc.])&lt;br /&gt;
* Chris Haag ([[IronPort]] Systems)&lt;br /&gt;
* Chris Mason (Altamer Resort)&lt;br /&gt;
* Chris Wong ([http://www.istep.com iStep])&lt;br /&gt;
* Christian Kyony ([http://www.africacentre.ac.za/ Africa Centre for Health and Population Studies])&lt;br /&gt;
* Christian Loos ([http://www.netcologne.de/ NetCologne])&lt;br /&gt;
* Christian O. Knudsen ([http://www.comx.dk ComX Networks])&lt;br /&gt;
* [[ChristianAveryBryant]] [http://www.healthcare.ucla.edu UCLA Healthcare]&lt;br /&gt;
* Chris Nelson [http://nighthawkrad.net NightHawk Radiology]&lt;br /&gt;
* Christopher Morris (Sabre-Holdings -- used internally)&lt;br /&gt;
* Chuck Colby (Remote Network Operations Center (rnoc.net))&lt;br /&gt;
* Claudine Weber&lt;br /&gt;
* Claus R. Wickinghoff ([http://www.linudata.de/ linudata GmbH] )&lt;br /&gt;
* Clauzon Vied&lt;br /&gt;
* [[CodeMechanic]] ([|[[AaronHawley|&amp;lt;nowiki/&amp;gt;]]http://www.tonido.com])&lt;br /&gt;
* Craig Cooper&lt;br /&gt;
* Craig Harffey ([http://myfreedomdatacentres.com Myfreedom Data Centre Services])&lt;br /&gt;
* Cristian Haddad Reaney ([http://www.stars.manchester.ac.uk/ The University of Manchester, Directorate of STARS, UK])&lt;br /&gt;
* Cristian Cordobina ([http://www.mbvsi.fr MBVSI], FR)&lt;br /&gt;
* [http://wiki.bestpractical.com/view/Cris Cristiano Guadagnino] (Bankadati Servizi Informatici - [http://www.creval.it Gruppo Credito Valtellinese])&lt;br /&gt;
* [[DaleBewley]] ([http://www.lib.ucdavis.edu UC Davis Library])&lt;br /&gt;
* Dan Wilson (Medication Delivery, Baxter Healthcare)&lt;br /&gt;
* [http://dclark.us Daniel Clark] ([http://laptop.org One Laptop per Child])&lt;br /&gt;
* Daniel Daoust (Aeroplan)&lt;br /&gt;
* Daniel Farst ([http://www.case.edu/artsci Case Western Reserve University - College of Arts &amp;amp;amp; Sciences, Cleveland, OH, USA])&lt;br /&gt;
* Daniel Foerderer (Universitaet Zuerich, www.id.unizh.ch)&lt;br /&gt;
* Dante Almeida ([http://www.inforlub.com.br Inforlub])&lt;br /&gt;
* Daren Fairbanks&lt;br /&gt;
* Dário Oliveros ([[CPqD]] Telecom &amp;amp;amp; IT Solutions, Brazil, [http://www.cpqd.com.br])&lt;br /&gt;
* Dauphin Marie-Noëlle ( IDRIS /CNRS , France )&lt;br /&gt;
* Dave Fitches ([http://www.unimelb.edu.au/ University of Melbourne], Melbourne, Australia)&lt;br /&gt;
* Dave Gregs ([http://www.capitalalist.com Capital A])&lt;br /&gt;
* Dave O&#039;Neill ([http://www.roaringpenguin.com Roaring Penguin Software], Ottawa, Ontario, Canada)&lt;br /&gt;
* Dave Pascoe ([http://www.liveatc.net LiveATC.net] )&lt;br /&gt;
* Dave Thacker (Omni Hotels)&lt;br /&gt;
* David Arnold&lt;br /&gt;
* David A. Ringer (Desantage, Inc.)&lt;br /&gt;
* Davide Gibilisco ([http://www.davidegibilisco.it/ davidegibilisco.it], [http://www.bhuman.it/ BHuman])&lt;br /&gt;
* [[DavidleBlanc]] ([http://www.freestyleenergy.com FreestyleEnergy, Melbourne, VIC, AUS])&lt;br /&gt;
* David Leemans (Vrije Universiteit Brussel, Administratieve Informatie Verwerking, [http://www.vub.ac.be/])&lt;br /&gt;
* David Obando (Egmont Ehapa Verlag [[GmbH]], [http://ehapa.de])&lt;br /&gt;
* David Urbina-Gómez ([http://www.uniandes.edu.co/ Universidad de los Andes] , [http://ciencias.uniandes.edu.co/index.php/es/ School of Science] )&lt;br /&gt;
* Debbi Schaubman ([http://www.mlcnet.org Michigan Library Consortium, Lansing, MI, US])&lt;br /&gt;
* Debbie Cimosz ([[KaplanIT]])&lt;br /&gt;
* Del Texley (Agate Healthcare)&lt;br /&gt;
* Deli&#039;s Finance [www.deli8.com]&lt;br /&gt;
* Denis Patterson (University College Dublin, [http://www.ucd.ie])&lt;br /&gt;
* Derek Adams - Principals Australia - IT Department ([http://www.principalsaustralia.edu.au/ Principals Australia])&lt;br /&gt;
* Des Curley (Complete Network Technology, www.complete.ie)&lt;br /&gt;
* Diana Zeimen (Chowen &amp;amp;amp; Associates, [http://www.chowen.com])&lt;br /&gt;
* Diego Cardoso ([http://www.unimedjp.com.br Unimed João Pessoa], Twitter [http://www.twitter.com/diegocardoso001 @diegocardoso001]&lt;br /&gt;
* [http://www.divideddirections.nl Divided Directions] ( Webdesign &amp;amp; Development )&lt;br /&gt;
* [[DigitalPath]] Networks ([digitalpath.net www.digitalpath.net])&lt;br /&gt;
* [[DirkPape]] (in the past working for Freie Universität Berlin, [http://www.mi.fu-berlin.de/tec/ Computer Center, Dept.Mathematics and Computer Science], now working for [http://www.vega.de VEGA Deutschland])&lt;br /&gt;
* Dmitry Roslyakov ([http://severis.ru/ Severis], [http://exchengine.com/ Exchange Engine])&lt;br /&gt;
* Don Beethe (RMTC Fedex)&lt;br /&gt;
* Doug Parks ([http://scalableinformatics.com Scalable Informatics])&lt;br /&gt;
* [[DouglasDenny]] ([http://sierrasystems.com Sierra Systems Inc, Canada])&lt;br /&gt;
* Drew Day ([http://www.cc.gatech.edu College of Computing] @ Georgia Institute of Technology)&lt;br /&gt;
* [[DrewBarnes]] ([http://www.rwc.uc.edu/ University of Cincinnati - Raymond Walters College])&lt;br /&gt;
* Drew Raines (loves RT)&lt;br /&gt;
* Drew Taylor (Cambridge Interactive Development Corp.)&lt;br /&gt;
* Durga Prasad Malyala (Datasoft Comnet Pvt. Ltd., India, [http://www.datasoftcomnet.com])&lt;br /&gt;
* E2E Networks Private Limited ([http://e2enteworks.com])&lt;br /&gt;
* Ed Ackerman [http://www.mtksistemas.com.br Controle de Acesso]&lt;br /&gt;
* Ed Eaglehouse ([http://www.atmsol.com Automated Solutions Corporation])&lt;br /&gt;
* [[EdMatthews]] (Odyssey Logistics &amp;amp;amp; Technology)&lt;br /&gt;
* Edson Cardoso Ribeiro Jr [http://www.m2com.com.br (M2COM Telecomunicações Ltda)]&lt;br /&gt;
* Eduardo Fernandez M. ([http://www.ges.com.pe Global Enterprise Solutions S.A.C. Lima-Peru])&lt;br /&gt;
* Edward Kovarski ([http://www.groupkae.com/ Group Kae Ltd,])&lt;br /&gt;
* Edward Groenendaal (eddyg) ([http://www.mionegroup.com ONE Group])&lt;br /&gt;
* Edwin Boersma (Fasterminds)&lt;br /&gt;
* Eric Noel (([http://www.eastwestbanker.com EastWest Bank]))(([http://www.bankcom.com.ph Bank of Commerce]))&lt;br /&gt;
* Eric Schultz (RT user/administrator/hacker at United Online)&lt;br /&gt;
* [[EricSorenson]]&lt;br /&gt;
* Erik Joelsson [http://www.ensenda.com/ Ensenda, Inc.]&lt;br /&gt;
* Ernesto Ecker [http://freewayautoinsurance.net Freeway Auto Insurance]&lt;br /&gt;
* [[EltonFenner]] ([http://www.al.rs.gov.br Assembléia Legislativa do Rio Grande do Sul - Porto Alegre/RS - Brasil])&lt;br /&gt;
* Emilian Ursu ([http://www.emuadmin.com/ Emuadmin])&lt;br /&gt;
* Emily Zaehring (Exa Corporation)&lt;br /&gt;
* Emilton Zacharias (([http://www.mtksistemas.com.br Relogio de Ponto]))&lt;br /&gt;
* Enmanuel Del Castillo ( Crossfire Telecom )&lt;br /&gt;
* Emmanuel Lacour ([http://rt.easter-eggs.org/ Easter-eggs])&lt;br /&gt;
* Emmanuel Sujith&lt;br /&gt;
* Ennis McCaffrey (Time Warner Cable Green Bay Division)&lt;br /&gt;
* Eric Brunner-Williams ([http://029.colo.coop/ Childminder at Jalama Beach,])&lt;br /&gt;
* Eric Dykstra ([http://www.VirtualCAD.com VirtualCAD Inc.])&lt;br /&gt;
* Éric Hupin (Ericsson Montréal Canada)&lt;br /&gt;
* Eric Malain (Wellpartner Inc.)&lt;br /&gt;
* Eric Sorenson ([http://explosive.net Explosive Networking], [http://transmeta.com Transmeta Corp])&lt;br /&gt;
* Espen Agnalt Johansen ([http://www.intsec.no IntSec])&lt;br /&gt;
* Eurotux ([http://eurotux.com Eurotux])&lt;br /&gt;
* Ezequiel Alfíe ([http://www.df.uba.ar Departmento de Física - Universidad de Buenos Aires])&lt;br /&gt;
* Fabrizio De Carlo ([[[SeniorSecurityConsultant]] @INPS])&lt;br /&gt;
* Fahd Sultan ([http://www.sharova.com Sharova Technologies])&lt;br /&gt;
* Fernando Claros [http://www.capside.com CAPSIDE]&lt;br /&gt;
* Filip Jonckers ([http://www.interconnect.be Interconnect Network Solutions])&lt;br /&gt;
* Fran Fabrizio ([http://www.cis.aub.edu/ U. of Alabama at Birmingham, CIS Department])&lt;br /&gt;
* Francesca Del Corso ([http://www.bo.infn.it INFN Sez. Bologna], Italy)&lt;br /&gt;
* Francisco Javier Hernandez (Systel S.A. - [[HostexCL]])&lt;br /&gt;
* F. Stanley (sdallstar@____NO-SPAM____gmail.com)&lt;br /&gt;
* Gabriele Franzini ([http://www.nervianoms.com/ Nerviano Medical Sciences SRL])&lt;br /&gt;
* Game Change ([http://www.game-change.de/ Spiele Tauschen - Change your Games])&lt;br /&gt;
* [http://www.gandi.net Gandi.net]&lt;br /&gt;
* Gareth Dawson ([http://www.christs.cam.ac.uk Christ&#039;s College] - University of Cambridge)&lt;br /&gt;
* Gary Greene ([http://www.minervanetworks.com Minerva Networks, Inc.])&lt;br /&gt;
* [[GarrettHoneycutt]] ([http://www.innovyx.com Innovyx, Inc], [http://www.mixxer.com Mixxer.com], 3[[GUpload]].com)&lt;br /&gt;
* Gary Samson ([http://www.kent.ac.uk/psychology School of Psychology, University of Kent])&lt;br /&gt;
* Garry Williams (Cbeyond Communications)&lt;br /&gt;
* [[Gaston@Huot.me|Gaston Huot]] (RT Specialist, Montreal)&lt;br /&gt;
* Gavin Henry ([http://www.suretecsystems.com Suretec] and [http://www.surevoip.co.uk SureVoIP])&lt;br /&gt;
* Gavin Mitchell ([http://www.btsgroupuk.com BTS Group])&lt;br /&gt;
* Gene LeDuc (San Diego State University)&lt;br /&gt;
* Georgiadis George ([http://www.rentrak.com Rentrak])&lt;br /&gt;
* German Pizarro (Chile)&lt;br /&gt;
* Gerd Buschmann (http://www.zertico.de)&lt;br /&gt;
* [[GilmarSantosJr]] ([http://www.safernet.org.br/ SaferNet Brasil])&lt;br /&gt;
* Gilson Vieira (Brasil)&lt;br /&gt;
* [http://puntofisso.net Giuseppe Sollazzo] ([http://www.sgul.ac.uk St. George&#039;s University of London])&lt;br /&gt;
* Glenn [[McHenry]] ([http://www.qualcomm.com/ Qualcomm Inc.])&lt;br /&gt;
* Graham Miln ([http://www.dssw.co.uk DssW] )&lt;br /&gt;
* [http://www.greenpeace.org Greenpeace]&lt;br /&gt;
* Greg Evans ([http://www.hcc.net/ Hood Canal Communications])&lt;br /&gt;
* Greg Sheard ([http://www.dixonsca.com Dixons City Academy, Bradford, England])&lt;br /&gt;
* Gretta Armstrong ([http://aset.its.psu.edu/ Penn State University])&lt;br /&gt;
* Guy Baxter ([http://www.burnley.ac.uk/ Burnley College])&lt;br /&gt;
* [http://haeco.aero HAECO Americas] (Hong Kong Aircraft Engineering Company)&lt;br /&gt;
* [http://www.schendera.com/ Harald Schendera (All Internet Services)]&lt;br /&gt;
* [[HaraldWagener]] ([http://germany.fcb.com fcb germany])&lt;br /&gt;
* [http://www.heanet.ie/ HEAnet, Ireland&#039;s National Education &amp;amp;amp; Research Network]&lt;br /&gt;
* [[HelmutLichtenberg]] (Institute for Animal Science, Germany)&lt;br /&gt;
* [[HenrikWallentin]] ([http://www.parcelhouse.com Parcelhouse])&lt;br /&gt;
* [[HowardJones]] (Network-i)&lt;br /&gt;
* Ian Norton ([http://www.lancs.ac.uk/ University of Lancaster, Technical Infrastructure Group])&lt;br /&gt;
* Ilene Marlett ([http://www.amsl.com/])&lt;br /&gt;
* [http://www.imtg.com.au IMTG] (IT Consulting Services provider in Sydney, Australia)&lt;br /&gt;
* IP2 Internet B.V. [http://www.ip2.nl]&lt;br /&gt;
* Irene Gutierrez ([http://www.unican.es Universidad de Cantabria])&lt;br /&gt;
* Isaac Vetter ([http://www.math.purdue.edu/ Purdue University, Department of Mathematics])&lt;br /&gt;
* ITG, Gevirtz Graduate School of Education, UC Santa Barbara&lt;br /&gt;
* IVY Comptech (P) LTD., ([http://www.ivycomptech.com IVY Comptech])&lt;br /&gt;
* J.D. Meek ({[http://www.edgenet.com Edgenet Inc.])&lt;br /&gt;
* Jacob Baloul ([http://howtoforums.net HowToForums.net])&lt;br /&gt;
* Jake Williams (Oklahoma State University, IT Information Security Office [http://security.okstate.edu])&lt;br /&gt;
* James Okvist (Raytheon {raytheon.com})&lt;br /&gt;
* Jamie Bright ([http://www.unitedwarehouse.com United Warehouse Company])&lt;br /&gt;
* Janelle Seymour&lt;br /&gt;
* Janetty Benneton&lt;br /&gt;
* Jared Bell ([http://www.horizondatacom.com Horizon Datacom])&lt;br /&gt;
* Jardel Zimmermann [http://wurlitzerjukebox.net Wurlitzer Jukebox]&lt;br /&gt;
* Jarian Gibson ([http://www.saonline.com Securities America])&lt;br /&gt;
* Jason Cater ([http://www.ncsfulfillment.com NCS Fulfillment, Inc.])&lt;br /&gt;
* Jason Edmiston ([http://www.uoregon.edu University of Oregon])&lt;br /&gt;
* Jason Jay&lt;br /&gt;
* Jason Knight ([http://www.llenergyinc.com L&amp;amp;L Energy Inc.].)&lt;br /&gt;
* Jason Ngo ([http://www.7-eleven.com.ph Philippine Seven Corporation])&lt;br /&gt;
* Jason Tribbeck ([http://support.argogroup.com/rt/ Argogroup])&lt;br /&gt;
* [[JasonLong]] ([http://www.messiah.edu/ Messiah College])&lt;br /&gt;
* JB Hewitt ([http://www.stcpl.com.au Strategic Technology Consulting])&lt;br /&gt;
* Jean-Luc Penasse ([http://www.ethertec.net etherTec Systems, Germany])&lt;br /&gt;
* Jean-Marc LEONI (France, [http://www.exalead.com Exalead])&lt;br /&gt;
* Jean-Pierre FORCIOLI (France, [http://www.fortinet.com/ Fortinet Inc.])&lt;br /&gt;
* Jeff Berry (Goddard Institute for Space Studies)&lt;br /&gt;
* Jeff Voskamp (University of Waterloo, Ontario, Canada ([http://ist.uwaterloo.ca/]))&lt;br /&gt;
* Jeffrey D. Brown (City of Union City, Georgia)&lt;br /&gt;
* Jeffrey D.Brown, (Acorn Technologies, Inc. [http://www.acorn-technologies.net] Atlanta, Georgia USA)&lt;br /&gt;
* [[JeromeFenal]] ([http://www.logicacmg.com/fr/ LogicaCMG])&lt;br /&gt;
* Jerrad Pierce ([http://cambridgeenergyalliance.org Cambridge Energy Alliance])&lt;br /&gt;
* [[JesseVincent]], [http://www.bestpractical.com Best Practical Solutions] [[Image:bplogo.gif]]&lt;br /&gt;
* Jim Edlund (Builders [[FirstSource]] [http://www.bldr.com/])&lt;br /&gt;
* Jim Neundorf&lt;br /&gt;
* [[JimMeyer]] [http://geek.selequa.com/ Geek at Large]&lt;br /&gt;
* [[JimRoss]] (EBC)&lt;br /&gt;
* Joakim Nordlander (Sweden, [http://www.cfl.se Nationellt centrum för flexibelt lärande])&lt;br /&gt;
* Joel Merrick (BBC Research &amp;amp; Development)&lt;br /&gt;
* John McCormick (Vertical Scope)&lt;br /&gt;
* John Freeman ([http://www.itaas.com itaas, Inc.])&lt;br /&gt;
* John James ([http://www.mango-solutions.com Mango Solutions])&lt;br /&gt;
* John Lowry ([http://oblong.com Oblong Industries, Inc.])&lt;br /&gt;
* John [[McMellen]] (KSMU, Missouri State University [http://www.ksmu.org/])&lt;br /&gt;
* John Roman ([http://www.lexmark.com Lexmark international])&lt;br /&gt;
* John Schmidt (intechgra)&lt;br /&gt;
* John Schubert (Linear LLC)&lt;br /&gt;
* John Slone ([http://www.softsurroundings.com Soft Surroundings])&lt;br /&gt;
* John Watts ([http://www.cpc-i.com Computer Products Corporation])&lt;br /&gt;
* John Zeller ([http://seascf.seas.gwu.edu/index.html The George Washington University/SEAS/Computing Facility] )&lt;br /&gt;
* [http://jon.limedaley.com/plog/post/perl-initialization Jon Daley]&lt;br /&gt;
* Jon Johnson (Colorado Access)&lt;br /&gt;
* Jon Masters [http://www.jonmasters.org/]&lt;br /&gt;
* Jon Witts ([http://www.southhunsley.org.uk South Hunsley School and Sixth Form College])&lt;br /&gt;
* Jonathan Jesse (Founders Trust Personal Bank)&lt;br /&gt;
* Jonathan Kelly ([http://www.julien.ca/ Julien Inc])&lt;br /&gt;
* Joop van de Wege ([http://www.qustify.com Qustify]), ([http://www.nieuwland.nl Nieuwland GeoInformatieSystemen]) en ([mailto:puzzle-it@xs4all.nl Puzzle-IT])&lt;br /&gt;
* Joseph Magnotti ([http://www.twitart.com Twitter Backgrounds]) [[TwitArt]].com Twitter Backgrounds&lt;br /&gt;
* Josh Rivel ([http://www.contextweb.com ContextWeb, Inc.])&lt;br /&gt;
* Joshua Hunter ([http://telwestservices.com Tel West])&lt;br /&gt;
* Joshua Zeller (Anoka-Hennepin Independent School District 11, Anoka, Minnesota)&lt;br /&gt;
* Juan Manuel Acosta (Transbanca)&lt;br /&gt;
* Juan Martinez (DISA, DECC Columbus)&lt;br /&gt;
* Julian Dunn ([http://www.cbc.ca/ CBC.ca Production &amp;amp;amp; Operations])&lt;br /&gt;
* Julian Hein ([http://www.netways.de/ NETWAYS GmbH])&lt;br /&gt;
* Julie Smith ([http://genome.wustl.edu/ The Genome Institute])&lt;br /&gt;
* Justin Clayton ([http://www.capitalstream.com Capital Stream, Inc.])&lt;br /&gt;
* Justin Cooke ([http://www.trybpo.com TryBPO Outsourcing Solutions])&lt;br /&gt;
* Justin Hall ([http://www.ststephens.wa.edu.au/ St Stephen&#039;s School ICT Department])&lt;br /&gt;
* Justin Larue (A system administrator, programmer, and user of RT)&lt;br /&gt;
* Justin Paulsen ([http://www.frederic.k12.wi.us/ Frederic School District IT Dept.])&lt;br /&gt;
* José Luis Rey ([http://sudeban.gob.ve/webgui/ Superintendencia de las Instituciones del Sector Bancario] )&lt;br /&gt;
* Kabahuma Zamzam Ahmed ( Uganda Telecom Limited)&lt;br /&gt;
* Karlstad University IT-department ([http://www.kau.se/en Karlstad University]])&lt;br /&gt;
* Kate Wood ([http://www.teleatlas.com Tele Atlas North America])&lt;br /&gt;
* [mailto:karl@karl.com Karl J. Smith] (www.karl.com)&lt;br /&gt;
* Keana Galloway ([http://www.uic.edu/depts/oae UIC, Access &amp;amp;amp; Equity])&lt;br /&gt;
* Kelley Graham ([http://toasterz.com Toasterz] we use rt | offer to clients | rt is very flexible | thanks)&lt;br /&gt;
* [[KellyHickel]]&lt;br /&gt;
* Kenn Crocker (Lawrence Berkeley Nat&#039;l Lab, [mailto:KFCrocker@lbl.gov KFCrocker@lbl.gov])&lt;br /&gt;
* Kenneth Cummins (University of Iowa Hospitals &amp;amp;amp; Clinics, Information Services)&lt;br /&gt;
* Kenny Prickett ([http://www.shorelodgemccall.com Shore Lodge, McCall])([http://www.whitetailclub.com Whitetail, McCall])&lt;br /&gt;
* Ketema Harris (C4 Directsolutions, LLC [http://www.c4directsolutions.com])&lt;br /&gt;
* Kevin Wiliams (Southern Community Labs)&lt;br /&gt;
* [[KevinMurphy]] ([http://genome.chop.edu/ eGenome])&lt;br /&gt;
* [http://www.kijush.com.np Kijush Maharjan] ([http://www.radiusnp.com Radius Communications])&lt;br /&gt;
* Kim Ford ([http://www.aware.co.th Aware Corporation])&lt;br /&gt;
* Kirk Averett (Webmail.us - [http://www.webmail.us The Email Hosting Company])&lt;br /&gt;
* Lance Wilson ([http://www.alliedhealthsystems.com Allied Health Systems,])&lt;br /&gt;
* [[LanceSeelbach]] ([http://support.bekinc.net BEK Inc,] )&lt;br /&gt;
* Larry Shatzer&lt;br /&gt;
* Lars Bahner ([http://www.onlinebackupcompany.no/ The Online Backup Company AS])&lt;br /&gt;
* Lawrence Gabriel ([http://www.ocean.washington.edu University of Washington - Oceanography])&lt;br /&gt;
* [[LeafBridge]] ([http://www.leafbridge.com/])&lt;br /&gt;
* Lee Allan Sanders ([http://www.uccp.org])&lt;br /&gt;
* Lee Allen (Lee Allen [http://www.leeallenportfolio.com])&lt;br /&gt;
* Lee Whalen ([http://www.nellymoser.com Nellymoser Inc,])&lt;br /&gt;
* [[LeeGoddard]] ([http://www.leegoddard.net])&lt;br /&gt;
* Leon Como ([http://www.sgs.com])&lt;br /&gt;
* Lex Nemzer, [http://www.metacarta.com/ MetaCarta]&lt;br /&gt;
* [[LGTaube]] (York Consulting AB)&lt;br /&gt;
* Lieven Bridts ([http://www.puurs.be Local Government of Puurs], Belgium)&lt;br /&gt;
* Lisa Hallingström, [http://www.ingate.com/ Ingate Systems]&lt;br /&gt;
* Lloyd Shanks ([http://www.meccacosmetica.com.au Mecca Cosmetica], Australia)&lt;br /&gt;
* Lorenzo Iannuzzi ([http://dada.dada.net Dada.net])&lt;br /&gt;
* Luca Bianchi ([http://www.fullsix.it Fullsix spa ], Italy )&lt;br /&gt;
* Luis Aguilar ([http://www.cafsa.fi.cr Grupo Financiero CAFSA,], Costa Rica)&lt;br /&gt;
* Luis Nogueira ([http://www.inter.com.br InterConnect Brasil,], Sao Paulo, Brasil)&lt;br /&gt;
* [[LuisArnauth]] ([http://www.arnauth.net])&lt;br /&gt;
* [[LukeVanderfluit]] ([http://ticket.internode.com.au])&lt;br /&gt;
* Lutz Reinhardt ([http://www.mobileobjects.de mobileObjects AG], Germany)&lt;br /&gt;
* Marc B.Ricart ([http://www.cesca.es CESCA])&lt;br /&gt;
* Marcel Kerssens (Indover bank)&lt;br /&gt;
* Marcin Kobus ([http://www.altkom.com.pl Altkom])&lt;br /&gt;
* Marco Marocco ([http://www.datainform.it datainform], Italy)&lt;br /&gt;
* Marco Tulio Estrada ([http://www.naucalpan.gob.mx H. Ayuntamiento de Naucalpan de Juárez], México)&lt;br /&gt;
* [[MarcusRamberg]]&lt;br /&gt;
* Marianne Boudot ([http://www.inria.fr INRIA], France)&lt;br /&gt;
* [[MarianoAbsatz]]&lt;br /&gt;
* Mark Roedel ([http://www.letu.edu/ LeTourneau University])&lt;br /&gt;
* Mark Rolfzen ([http://www.mudomaha.com/ Metropolitan Utilities District])&lt;br /&gt;
* Mark Palmer ([http://www.intechnology.co.uk/ Hosted IP Telephony])&lt;br /&gt;
* Mark Sallee - The GLOBE Program&lt;br /&gt;
* Mark Ueberwasser (Mill Valley School District)&lt;br /&gt;
* [[MarkNagel]] ([http://www.willingminds.com/ Willing Minds])&lt;br /&gt;
* Markus Iturriaga ([http://www.eecs.utk.edu Unversity of Tennessee Electrical Engineering and Computer Science] )&lt;br /&gt;
* Martin Brenner (Whitfield School)&lt;br /&gt;
* Martin Steel ([http://www.mediaburst.co.uk/ Mediaburst] )&lt;br /&gt;
* Martin S. Nielsen ([[BrokenSoft]] - [http://www.brokensoft.dk] / [http://netpages.dk])&lt;br /&gt;
* [[MaryaDoery]]&lt;br /&gt;
* Matthew Barnes ([http://www.2020fresno.com 20/20 Optometric of Fresno])&lt;br /&gt;
* Matthew Brown (TechCircles project of [http://www.iam-afghanistan.org/ IAM], Afghanistan)&lt;br /&gt;
* Matthew Nickasch (Richgels Schaefer Insurance, Lancaster WI)&lt;br /&gt;
* [[MatthewYee]] ([http://www.vpd.ca Vancouver Police Department, IT Section], Vancouver, B.C., Canada)&lt;br /&gt;
* [[MattMillard]]&lt;br /&gt;
* [http://maxkueng.com/ Max Kueng] ([http://www.ifit.net/ IFIT Institute For Innovative Trading AG], Zurich, Switzerland)&lt;br /&gt;
* Max McGrath ([http://www.carthage.edu Carthage College]), Kenosha, WI&lt;br /&gt;
* [http://mauriciovieira.net Mauricio Vieira] (Perl/Mason/RTx developer at http://www.safernet.org.br)&lt;br /&gt;
* [[McCartyTony]] (PALCO, Scotia, California)&lt;br /&gt;
* Megagram ([http://www.megagram.com])&lt;br /&gt;
* [[MelanieHumphrey]] ([http://www.ualberta.ca/CNS University of Alberta, CNS] )&lt;br /&gt;
* Melissa Dehn ([http://www.as-t.de Arvato Systems Technologies] )&lt;br /&gt;
* Mérouane Achour ([http://www.asset-control.com Asset Control] )&lt;br /&gt;
* Michael Brannigan&lt;br /&gt;
* Michael dePascale ([http://www.yale.edu Yale University])&lt;br /&gt;
* Michael Erana (PC Network Inc.)&lt;br /&gt;
* Michael Liebman (RT user and former Remedy ARS administrator).&lt;br /&gt;
* Michael Loftis ([http://www.modwest.com Modwest PHP/Mysql Web Hosting], Missoula, Montana, US)&lt;br /&gt;
* Michael Sitzer (West Sonoma County Internet Coop. Corp. - [mailto:Mike@wscicc.org Mike@wscicc.org])&lt;br /&gt;
* Michael Sokol ([http://www.aeroplan.com Aeroplan])&lt;br /&gt;
* [[MichaelBirmingham]] ([http://www.sun.com Sun Microsyslems Inc.])&lt;br /&gt;
* [[MichaelBrader]] ([http://www.youramigo.com/ YourAmigo])&lt;br /&gt;
* [[MichaelFinn]] ([http://www.nbutexas.com New Braunfels Utilities] [http://helpdesk.nbutexas.com/ Our RT])&lt;br /&gt;
* [[MichaelPearson]] (Systems Engineer, [http://www.interactivedata.com Interactive Data Corporation] Asia Pacific)&lt;br /&gt;
* Michiel Klaver&lt;br /&gt;
* Microcom ([http://microcom.tv Microcom Communications Solutions],Anchorage, AK)&lt;br /&gt;
* Mike B (Dymec, Inc.)&lt;br /&gt;
* Mike Ellis ([http://umanitoba.ca/libraries University of Manitoba Libraries] )&lt;br /&gt;
* Mike Hamilton ([http://www.clovisusd.k12.ca.us Clovis Unified School District])&lt;br /&gt;
* Mike Lindberg (Spectrum Communications, Inc. [http://scml.us])&lt;br /&gt;
* [[MikePeachey]] ([http://www.jennic.com Jennic Ltd., Sheffield, UK.])&lt;br /&gt;
* Mike Richardson (Regional Educational Media Center [http://www.remc1.org])&lt;br /&gt;
* MIke Rose ([http://www.damtp.cam.ac.uk/ DAMTP, University of Cambridge])&lt;br /&gt;
* Mike Scullin (Cornell University [http://www.people.cornell.edu/pages/cms1/])&lt;br /&gt;
* Mike Skelly ([http://www.steinerstudios.com/ Steiner Studios,])&lt;br /&gt;
* Milt Reder ( IT Specialist, [http://digitalmedia.jhu.edu/ Johns Hopkins Digital Media Center,])&lt;br /&gt;
* [[MishaUshakov]] ([http://www.plus.ru/ PLUSINFO ISP,])&lt;br /&gt;
* [[MNaumann]] ([http://www.moritz-naumann.com/ Moritz Naumann], Germany)&lt;br /&gt;
* [[MorganSherwood]] (Slide, Inc.)&lt;br /&gt;
* Mulindwa Eric ( Uganda Telecom Limited)&lt;br /&gt;
* Murat ALTIPARMAK (Turk Telekom Inc. Internet Data Center, [http://www.ttidc.com.tr])&lt;br /&gt;
* Murray Bryant(Harmony Gold Australia)&lt;br /&gt;
* [[NateStGermain]] ([http://www.eagletribune.com Eagle-Tribune Publishing Co.])&lt;br /&gt;
* [[NathanielFilardo]] ([https://ebola.acm.jhu.edu/rt/ Johns Hopkins ACM chapter] and [http://bugs.dyna.org/ The Dyna Project]).&lt;br /&gt;
* National Agricultural Library ([http://www.nal.usda.gov National Agricultural Library, USA])&lt;br /&gt;
* Neil Kumar&lt;br /&gt;
* Neil Schwartzman ([http://senderscorecertified.com Sender Score Certified, Return Path Inc.])&lt;br /&gt;
* Niels Bakker&lt;br /&gt;
* Newton Calvin [http://www.spei.br Faculdades SPEI]&lt;br /&gt;
* Nic Bertrand ([http://www.ceh.ac.uk Centre for Ecology and Hydrology])&lt;br /&gt;
* Nicolas C&lt;br /&gt;
* Nicholas Owino ([http://www.uonbi.ac.ke University of Nairobi])&lt;br /&gt;
* [[NormanNunley]] ([http://www.peakstrategy.net/ Peak Strategy])&lt;br /&gt;
* Ole Craig ([http://www.symplified.com Symplified])&lt;br /&gt;
* Oliver Thomas ([http://mit.edu/ Massachusetts Institute of Technology])&lt;br /&gt;
* Olivier B. ([http://dialexia.com/index.php?lang=en Dialexia] )&lt;br /&gt;
* Olivier Berger&lt;br /&gt;
* omphile (AS)&lt;br /&gt;
* OSSF ([http://www.openfoundry.org/ OpenFoundry])&lt;br /&gt;
* [http://www.brookesracing.co.uk Oxford Brookes University Formula Student]&lt;br /&gt;
* Pablo Povarchik ([http://futurahost.com FuturaHost.Com])&lt;br /&gt;
* Patrice Corporon [http://www.kelkoo.com/ Kelkoo]&lt;br /&gt;
* [[PatrickLeBoutillier]]&lt;br /&gt;
* Paul Adams, Sean Glenville &amp;amp; John Tran ([http://www.bondor.com.au Metecno Pty Ltd] )&lt;br /&gt;
* Paul Baumgardner [http://www.enpocket.com/ Enpocket]&lt;br /&gt;
* Paul Fincher ([http://www.ghs.com Green Hills Software] )&lt;br /&gt;
* Paul Herbert JP ([http://www.harvardeng.com])&lt;br /&gt;
* Paul Menchini ([http://www.ncssm.edu])&lt;br /&gt;
* Paul O&#039;Rorke(Aviawest [http://www.aviawest.com] )&lt;br /&gt;
* Paul Schuh (Cornell University)&lt;br /&gt;
* Paul Siemens (Convedia Corporation [http://www.convedia.com])&lt;br /&gt;
* [mailto:pedro.santa@gmail.com Pedro Machado Santa]&lt;br /&gt;
* [[PauloMatos]] ([http://www.fct.unl.pt FCT/UNL], Portugal)&lt;br /&gt;
* Per Kristiansen ([http://www.gathering.org The Gathering] / [http://www.partyticket.net Partyticket], Norway)&lt;br /&gt;
* Perttu Helle ([http://www.leiri.fi Leirikesä ry])&lt;br /&gt;
* Peter A. Kristoffersen ([http://www.uio.no University of Oslo])&lt;br /&gt;
* Peter Baldridge&lt;br /&gt;
* Peter Harder ([http://www.hitflip.de Hitflip - Medienartikel wie DVDs, CDs usw. tauschen])&lt;br /&gt;
* [[PeterBrownell]] ([http://www.londontown.com London Marketing])&lt;br /&gt;
* Peter Nugent (Hibernia Computer Services, Ireland)&lt;br /&gt;
* Peter Tonoli ([http://www.svi.edu.au St. Vincent&#039;s Institute] )&lt;br /&gt;
* Peter Tonoli ([http://www.bobim.org The O&#039;Brien Institute] )&lt;br /&gt;
* Peter Tonoli ([http://www.stv.unimelb.edu.au The University of Melbourne, St. Vincent&#039;s Hospital Academic Centre] )&lt;br /&gt;
* Petr Hanousek ([http://www.zcu.cz University of West Bohemia], Czech Republic)&lt;br /&gt;
* Philip Court ([http://www.icestack.com Icestack])&lt;br /&gt;
* Philip Lang ([http://www.concentrix.com Concentrix Corp.])&lt;br /&gt;
* Phil Plumbo ([http://www.printwarellc.com Printware, LLC])&lt;br /&gt;
* [[PHP4Hosting]] ([http://www.php4hosting.com PHP4Hosting])&lt;br /&gt;
* Pierre Baume ([http://www.ams-ix.net AMS-IX BV])&lt;br /&gt;
* Prasun Sinha&lt;br /&gt;
* Ralph Chambers ([http://www.popularreview.com ITSolution systems])&lt;br /&gt;
* Raghu Siddarth ([http://ritsnet.com RITSnet])&lt;br /&gt;
* Ratish Ravindran {[System Engineer, India]}&lt;br /&gt;
* Ralph Chambers&lt;br /&gt;
* Ralph G (jdshelp.org)&lt;br /&gt;
* Ramon Borges ([http://www.unimedjp.com.br Unimed João Pessoa])&lt;br /&gt;
* [http://www.ramzz-tech.co.za RAMZZ TECH] (South Africa)&lt;br /&gt;
* [[RandyMcEoin]] ([http://www.pe.com The Press-Enterprise])&lt;br /&gt;
* rapaman (Remote Admin Service, UA [http://remote-admin-service.encrypted-life.net])&lt;br /&gt;
* [http://requesttracker.wikia.com/wiki/User:RaviMahendra RaviMahendra] (Student)&lt;br /&gt;
* [[RayFaith]] ([http://mitsloan.mit.edu MIT Sloan])&lt;br /&gt;
* Reed Loden&lt;br /&gt;
* Rémi REY&lt;br /&gt;
* [http://www.remc1.org/ REMC1 SupportNet]&lt;br /&gt;
* Riccardo Capecchi ([http://www.cineca.it/ Cineca, Interuniversity Consortium])&lt;br /&gt;
* Rich Morgan ([[FutureTrade]] Technologies) [http://www.futuretrade.com/]&lt;br /&gt;
* Richard Arker ([http://www.cs.st-andrews.ac.uk/ School of Computer Science], University of St Andrews)&lt;br /&gt;
* Richard Clark ([http://www.chooseportal.com Portal])&lt;br /&gt;
* [[RichardEllis]] Contractor at([http://www.sun.com Sun Microsystems])&lt;br /&gt;
* [[RichardHarman]]&lt;br /&gt;
* Ricky Baca, [http://www.lewiscenter.org Lewis Center for Educational Research] (Apple Valley, CA USA)&lt;br /&gt;
* Rikard Cidh ([http://www.magdadigital.se/ Magda Digital], Norrköping, Sweden]&lt;br /&gt;
* Rob Gillan ([[DZhoN]] Pty. Ltd.)&lt;br /&gt;
* Rob Matney ([http://www.amicus.com Amicus, Inc.])&lt;br /&gt;
* Robert d&#039;Apice ([https://prosple.com.au Prosple])&lt;br /&gt;
* Robert Guerra ([http://www.privaterra.org Privaterra]) (Toronto, Canada)&lt;br /&gt;
* Robert Heller ([http://www.deepsoft.com Deepwoods Software]) (Wendell, MA USA)&lt;br /&gt;
* [[RobHooft]] ([http://www.bruker-nonius.com Bruker Nonius])&lt;br /&gt;
* [http://www.zanfur.com/resume.html Robin Battey]&lt;br /&gt;
* [[RobinEricsson]] ([http://www.profecta.se Profecta])&lt;br /&gt;
* [[RobMunsch]]&lt;br /&gt;
* [[RobPickering]] ([http://www.proscan.com ProScan Imaging])&lt;br /&gt;
* [[RobWalker]]&lt;br /&gt;
* Rodney Rindels, Director, Information Systems, ([http://www.navinetclaims.com NaviMedix - NaviNet Claims])&lt;br /&gt;
* Roger Mastrude ([County of Santa Cruz, California])&lt;br /&gt;
* [[RolfSchaufelberger]] ([http://www.mypixler.com plusW])&lt;br /&gt;
* Ron van den Burg (A non-disclosed customer of [http://www.logica.com Logica NL])&lt;br /&gt;
* Ron Damiano [http://www.imapp.com (IMAPP, Inc])&lt;br /&gt;
* [[User:Gould_ron|Ron Gould]] ([http://www.standsure.com/ Stand Sure Systems])&lt;br /&gt;
* Ronald Nissley (Eastern Mennonite Missions, [http://www.emm.org])&lt;br /&gt;
* Roses L ODOUNGA (Network Information Centre - GA)&lt;br /&gt;
* Ruddock, Richard (ECIT Institute, Queen&#039;s University of Belfast [http://www.ecit.qub.ac.uk])&lt;br /&gt;
* [[RuslanZakirov]]&lt;br /&gt;
* Ryos Suzuki ([http://www.sinby.com Sinby Crop.])&lt;br /&gt;
* Sam Byrne [http://www.altia.com Altia, Inc]&lt;br /&gt;
* Sannse Carter ([http://www.wikia.com Wikia]&lt;br /&gt;
* Savannah Brien&lt;br /&gt;
* Scott B (Intercasting [http://www.intercasting.com])&lt;br /&gt;
* Scott Chamings (ACH Group Inc)&lt;br /&gt;
* Scott Courtney ([http://sca.org/ Society for Creative Anachronism])&lt;br /&gt;
* Scott Packard ([http://cae.jpl.nasa.gov/ Jet Propulsion Laboratory])&lt;br /&gt;
* Scott Thomson ([http://www.uua.org/ Unitarian Universalist Association] )&lt;br /&gt;
* Scott ([http://www.sunyit.edu State University of New York Institute of Technology] )&lt;br /&gt;
* [[ScottHebert]] (CAE, Montreal, Canada)&lt;br /&gt;
* Sean Burke-Gaffney (Aeroplan)&lt;br /&gt;
* Sean D. Conway ([http://www.mts.ca MTS Allstream])&lt;br /&gt;
* Sean Killen ([http://www.fbs.leeds.ac.uk Faculty of Biological Sciences, University of Leeds])&lt;br /&gt;
* Sean [[McGrath]] (Roosevelt Middle School) (Oakland, California)&lt;br /&gt;
* Sean Turner ([http://help.wbs.ac.uk Warwick Business School - WBS Solutions])&lt;br /&gt;
* [[SebastianBrady]] ([http://www.missinglink.net.au Missing Link Records])&lt;br /&gt;
* Sebastien Person ([http://www.easter-eggs.com Easter-eggs])&lt;br /&gt;
* Seib Seibl (Yesmail [http://www.yesmail.com] /infoUSA)&lt;br /&gt;
* Sergio Barrera (Tech.Support San Jose Unified)&lt;br /&gt;
* [[Sharan Kalwani]] ([https://icer.msu.edu/hpcc Institute for Cyber-Enabled Research ]  Michigan State University)&lt;br /&gt;
* Shen Yuguo ([http://www.ihpc.a-star.edu.sg Institute of High Performance Computing])&lt;br /&gt;
* Silvio Levy (Mathematical Sciences Publishers)&lt;br /&gt;
* Simon Jester&lt;br /&gt;
* Simon Kuhn (EECS Department of Case Western Reserve University, Cleveland, OH, USA)&lt;br /&gt;
* Simone Sanna ([http://www.tinet.net/ TINet S.p.A.])&lt;br /&gt;
* [[SixApart]] ([sixapart.com www.sixapart.com])&lt;br /&gt;
* Stefano Antonelli ([[StefanoAntonelli]] CNAF Bologna, Italy)&lt;br /&gt;
* Steffen Lindner ([http://www.aeryon.com/ Aeryon Labs Inc.], Waterloo, Canada)&lt;br /&gt;
* [[Stennie]]&lt;br /&gt;
* Stephen Clayton&lt;br /&gt;
* Stephen Fung ([[[HKNet]] Company Limited])&lt;br /&gt;
* Stephen Hancock ([http://www.onerhino.com OneRhino])&lt;br /&gt;
* [http://wiki.bestpractical.com/view/Stennie Stephen Steneker] ([http://www.grox.com.au Grox Pty Ltd])&lt;br /&gt;
* Stephen Turner&lt;br /&gt;
* Steve Carol (Lincoln University, PA)&lt;br /&gt;
* Steve Gorman ([http://www.knightsdirect.com Knights Direct])&lt;br /&gt;
* Steve Grzywinski ([http://www.include-im.com #include &amp;amp;lt;&amp;amp;gt; information management, inc.])&lt;br /&gt;
* Steve Holmes (Purdue University/[[ITaP]]/TLT)&lt;br /&gt;
* Steve Ingersoll (Nevada State Health Division)&lt;br /&gt;
* Steve Rieger (Tbwa/Chiat/Day) [http://www.tbwa.com]&lt;br /&gt;
* [http://lokkur.dexter.mi.us Steve Simmons]&lt;br /&gt;
* Steven Teeter (Symyx Technologies)&lt;br /&gt;
* [[StewartTranter]] (Loughborough University)&lt;br /&gt;
* Stuart Mylrea (Spreadex Ltd)&lt;br /&gt;
* Superb Internet ([superb.net www.superb.net])&lt;br /&gt;
* Sujith Emmanuel&lt;br /&gt;
* [http://www.synetec.pl Synetec] ([http://www.synetec.pl])&lt;br /&gt;
* Ted Dargis Milwaukee Microbusiness, LLC [http://www.milwaukeemicro.com]&lt;br /&gt;
* [[ThomasMuehlstrasser]] ([http://www.science-computing.de science + computing ag], Germany)&lt;br /&gt;
* [mailto:Thomas.Jurewicz@ugov.gov Thomas.Jurewicz@ugov.gov] (Space Warfare Command)&lt;br /&gt;
* [[ThorenMcDole]] ([http://www.ee.washington.edu University of Washington Electrical Engineering])&lt;br /&gt;
* Thomas Braun ([https://www.flashnetworking.de], Germany)&lt;br /&gt;
* Tim Casada&lt;br /&gt;
* Tim Lapin (Concordia University, Montreal, QC, Canada)&lt;br /&gt;
* Tim OBrien @obrientimothya ([http://www.bse.vic.edu.au/ Bendigo South East College] )&lt;br /&gt;
* Tim Schaller&lt;br /&gt;
* [http://www.timelapse.com.au/ time lapse building]&lt;br /&gt;
* [[User:TimCutts|Tim Cutts]] ([http://www.sanger.ac.uk Wellcome Trust Sanger Institute] , Cambridge, UK)&lt;br /&gt;
* [[TimWilson]] ([http://bhmschools.org/ Buffalo-Hanover-Montrose School District], Buffalo, MN, USA)&lt;br /&gt;
* TJ [http://chss.uonbi.ac.ke Granger] (Innovative Emergency Management, Baton Rouge, LA, USA)&lt;br /&gt;
* Tobias Heinz (Vereinte Spezial Versicherungs AG, [http://www.allianz24.de] )&lt;br /&gt;
* Toby Darling ([http://www.ccdc.cam.ac.uk Cambridge Crystallographic Data Center])&lt;br /&gt;
* Tod Detre ([[CampusEAI]] [http://www.campuseai.org])&lt;br /&gt;
* Tom Davey (Council on Foreign Relations, NY NY USA)&lt;br /&gt;
* Tom Remmers (KDH Consulting)&lt;br /&gt;
* Tomas [[Borland]] Valenta (Trustica s.r.o., Czech republic)&lt;br /&gt;
* Tony Adams ([[VeriSign]], Inc.)&lt;br /&gt;
* Torin Jacobson ([http://www.phytec.com PHYTEC America, LLC])&lt;br /&gt;
* [[TorstenBrumm]] ([http://www.kuehne-nagel.com Kuehne + Nagel, Corporate IT])&lt;br /&gt;
* Tristan Koen ([http://www.digia.co.za Digia cc])&lt;br /&gt;
* Troy Spetz (Sapienza Consulting Ltd.)&lt;br /&gt;
* Troy Peterman&lt;br /&gt;
* Tyler Shen (Scouts Victoria, Australia)&lt;br /&gt;
* Vincent Mwamba (Africonnect Zambia Limited, Zambia)&lt;br /&gt;
* [http://warren.guy.net.au/ Warren Guy] ([http://www.calorieking.com CalorieKing])&lt;br /&gt;
* Warren Little (Meridias Capital)&lt;br /&gt;
* WDY Enterprises Consulting and Technical Services (wdyllc.com, Worthington, OH, USA)&lt;br /&gt;
* Werner Frisch ([http://www.hitmeister.de Hitmeister])&lt;br /&gt;
* William George&lt;br /&gt;
* Win Vahlkamp ([http://www.txgenco.com Texas Genco, LP])&lt;br /&gt;
* Wimac (Leeds, West Yorkshire, UK) [http://www.harvardeng.com]&lt;br /&gt;
* Wolfgang Tremmel ([http://www.de-cix.net DE-CIX])&lt;br /&gt;
* Walter Vargas Cooperativa Venezolana de Tecnologías Libres R.S. [http://www.covetel.com.ve/]&lt;br /&gt;
* Yardell Perkins ([http://www.mclinc.org MCLINC], Philadelphia, PA, USA)&lt;br /&gt;
* Yosi Attia (HP)&lt;br /&gt;
* Yossi Tissona ([http://www.colman.ac.il/english College of Management Academic Studies], Israel)&lt;br /&gt;
&lt;br /&gt;
In this section, you can list organizations that you know to be using RT (usually because you&#039;ve gotten an RT ticket reply from their mailgate when submitting a trouble ticket).&lt;br /&gt;
* [http://www.acronis.com Acronis, Inc] (a storage management solution provider)&lt;br /&gt;
* [http://adobe.com Adobe]&lt;br /&gt;
* [http://www.aeroplan.com Aeroplan]&lt;br /&gt;
* [http://www.aoc-uk.com Alpha Omega Computers Ltd]&lt;br /&gt;
* [http://www.apple.com Apple,] (You know)&lt;br /&gt;
* AT&amp;amp;amp;T&lt;br /&gt;
* Allianz 24 Internetversicherer (www.allianz24.de)&lt;br /&gt;
* [http://www.acma.gov.au/ Australian Communications and Media Authority] Anti-Spam Team (Australian Government authority responsible for enforcing the Spam Act)&lt;br /&gt;
* Bendigo South East College - Australia [http://www.bse.vic.edu.au]&lt;br /&gt;
* [http://www.bestunion.it Best Union Company S.p.A.]&lt;br /&gt;
* [http://www.bitnetix.com/ Bitnetix Incorporated]&lt;br /&gt;
* [http://www.broadinstitute.org Broad Institute of MIT and Harvard]&lt;br /&gt;
* [http://www.brandeis.edu Brandeis University] [http://www.cs.brandeis.edu/ Computer Science Department] [http://www.cs.brandeis.edu/~guru/ Systems Operations Office]&lt;br /&gt;
* [http://www.ceh.ac.uk Centre for Ecology and Hydrology]&lt;br /&gt;
* [http://www.campuseai.org CampusEAI]&lt;br /&gt;
* [http://www.etat.lu Centre Informatique de l&#039;Etat]&lt;br /&gt;
* [http://www.cineca.it Cineca,] (Interuniversity Consortium of Northeastern Italy for Automatic Computing)&lt;br /&gt;
* [http://www.claranet.co.uk Claranet] (Managed Service Provider, ISP, Hosting, Cloud)&lt;br /&gt;
* Cluster Resources Inc&lt;br /&gt;
* Cogent Communications&lt;br /&gt;
* [http://www.welnowiec.net ComNet (Internet Service Provider)]&lt;br /&gt;
* [http://www.connectalk.com ConnecTalk Consulting Services] (Consulting and Managed Services Provider)&lt;br /&gt;
* [http://www.colman.ac.il/english College of Management Academic Studies] (Israel)&lt;br /&gt;
* [http://www.creditcardfinder.com.au Credit Card Finder] (Australian credit card comparison)&lt;br /&gt;
* [http://www.cyberguard.com CyberGuard (AKA Snapgear)] (Excellent linux based firewall aplliances)&lt;br /&gt;
* [http://www.datainform.it Data Inform, Software Engineering]&lt;br /&gt;
* [http://ddn.com/ DataDirect Networks] (HPC/Video/SAN/NAS Storage Systems)&lt;br /&gt;
* [http://www.dataphone.at Dataphone GmbH] (Enterprise Mobility &amp;amp; Logistics Software)&lt;br /&gt;
* [http://www.de-cix.net DE-CIX] (the German Internet Exchange)&lt;br /&gt;
* [http://www.destar.co.uk Destar Limited] (A Mobile Services &amp;amp; Consultancy company)&lt;br /&gt;
* [http://www.dotregistrar/ dotregistrar] (an ISP)&lt;br /&gt;
* [http://dyndns.org dyndns.org] (DNS experts)&lt;br /&gt;
* [http://enithost.com EnitHost] (a Web Hosting company)&lt;br /&gt;
* [http://www.enta.net/ Enta] (ISP)&lt;br /&gt;
* [http://www.farplants.co.uk Farplants Sales Ltd ](Wholesale supplier of outdoor plants to Garden Centres and Garden Centre chains in the UK)&lt;br /&gt;
* Fezile Dyele ([http://www.omt.co.za OPENMIND Technologies], Consulting and Managed Services)&lt;br /&gt;
* [http://www.foxmarks.com Foxmarks]&lt;br /&gt;
* [http://www.foodditive.com Foodditive] (consumer information site for food additives)&lt;br /&gt;
* [http://www.free.fr/ Free] (a French ISP)&lt;br /&gt;
* [http://www.ges.com.pe Global Enterprise Solutions S.A.C.] (IT &amp;amp;amp; Telecom Service Company - Peru)&lt;br /&gt;
* [http://www.groupkae.com Group Kae Ltd] (Consulting and Managed Services Provider)&lt;br /&gt;
* [http://www.gnet.gr Gnet Gaming Network S.A]. (Internet Stations, Greece)&lt;br /&gt;
* [http://www.hostedsolutions.com Hosted Solutions] (Colocation and Managed Services Provider)&lt;br /&gt;
* [http://www.humanistforbundet.no/ Humanistforbundet] (a Norwegian human rights organisation)&lt;br /&gt;
* [http://www.iloxx.de/ ILOXX] (German EBAY Payment Service)&lt;br /&gt;
* [http://www.networks.imdea.org Institute IMDEA Networks](Madrid, Spain).&lt;br /&gt;
* [http://inode.at/ inode] (an Austrian ISP)&lt;br /&gt;
* [http://www.internat-deutschland.de Internat GbR]&lt;br /&gt;
* [http://www.internode.on.net/ Internode] (an Australian ISP)&lt;br /&gt;
* [http://www.internetx.de/ InterNetX] (a German ISP)&lt;br /&gt;
* [http://itverx.com.ve/ Itverx] (IT Services)&lt;br /&gt;
* [http://www.joost.com/ Joost] - licensed online videos (TV, movies, etc.)&lt;br /&gt;
* The [http://www.gnu.org/ GNU Project] / [http://www.fsf.org Free Software Foundation]&lt;br /&gt;
* [http://www.phillyshipyard.com Kvaerner Philadelphia Shipyard, Inc.]&lt;br /&gt;
* Leaseweb&lt;br /&gt;
* [http://www.lime-systems.com Lime Systems]&lt;br /&gt;
* [http://www.linpro.no/ Linpro AS] (Norwegian free software company)&lt;br /&gt;
* Lycos, [http://www.lycos-europe.com/]&lt;br /&gt;
* [http://www.make-tracks.com.au/ Make-Tracks Secure Hosting]&lt;br /&gt;
* McGill University, Canada ([http://www.mcgill.ca/aoc/about/development-and-alumni-relations Dev. and Alumni Relations])&lt;br /&gt;
* MITRE Corporation&lt;br /&gt;
* [http://www.moderati.com Moderati, Inc.]&lt;br /&gt;
* [https://www.mynetfone.com.au/ MyNetFone] (an Australian VOIP / telephony provider)&lt;br /&gt;
* [http://www.mytel.net.au/ Mytel] (an Australian VOIP / telephony provider)&lt;br /&gt;
* [http://www.netglobalis.cl Netglobalis S.A.] (a chilean ISP)&lt;br /&gt;
* [http://www.netprimates.com Net Primates Ltd] (UK, Business IT Support &amp;amp; Telecommunication Services)&lt;br /&gt;
* [http://www.netregistry.com.au/ Netregistry] (an Australian webhost and domain registrar)&lt;br /&gt;
* [http://www.o1.com o1 Communications] (telecom services provider)&lt;br /&gt;
* [http://laptop.org One Laptop per Child]&lt;br /&gt;
* OpenAFS&lt;br /&gt;
* [http://rt.openssl.org OpenSSL] (the [http://www.openssl.org OpenSSL] library)&lt;br /&gt;
* Powerspeed Zimbabwe (www.powerspeed.co.zw)&lt;br /&gt;
* [http://www.packetexchange.net/ Packet Exchange] (a networking provider)&lt;br /&gt;
* [http://www.parttimeonline.com.au/ Part Time Online] (an Australian job site)&lt;br /&gt;
* Pipeline [http://chss.uonbi. Wireless]&lt;br /&gt;
* [https://helpdesk.piratenpartei-nrw.de Piratenpartei Deutschland LV NRW] (a German party)&lt;br /&gt;
* [http://planeetta.net Planeetta.net] (a networking provider)&lt;br /&gt;
* [[PlanetLab]]&lt;br /&gt;
* [http://www.plus.ru/ PLUSINFO] (a Russian ISP)&lt;br /&gt;
* [http://portaone.com/ PortaOne, Inc.] (VoIP and MVSO solutions company, Canada/Ukraine)&lt;br /&gt;
* [http://www.rackforce.com/ RackForce] (Hosting company)&lt;br /&gt;
* [http://www.esc7.net Region 7 Education Service Center]&lt;br /&gt;
* [http://rt.cpan.org rt.cpan.org] (tracks bugs in every Perl module/distribution released through [http://search.cpan.org CPAN])&lt;br /&gt;
* [http://rt.perl.org rt.perl.org] (the Perl 5, [http://dev.perl.org/perl6/ Perl 6], and [http://www.parrot.org/ Parrot] development teams)&lt;br /&gt;
* [[RTT |RTT&amp;amp;nbsp;]](Logisitics Comany, South Africa, [http://www.rtt.co.za rtt.co.za])&lt;br /&gt;
* [http://www.sapienzaconsulting.com Sapienza Consulting Ltd.]&lt;br /&gt;
* [http://internet.sefaz.es.gov.br/index.php Sefaz_ES] (Brazil)&lt;br /&gt;
* Shyam Krishna Khadka(Nepal)&lt;br /&gt;
* [http://www.sitegratisgratis.com.br Site Grátis] (Brazil)&lt;br /&gt;
* [http://www.sorbs.net SORBS]&lt;br /&gt;
* [http://www.sosialhumanistene.no Sosialhumanistene]&lt;br /&gt;
* [http://www.speakeasy.net Speakeasy] (Broadband provider)&lt;br /&gt;
* [http://www.steinerstudios.com Steiner Studios] (Movie Studio)&lt;br /&gt;
* Stephan Gerard (Toshiba Tec Europe Imaging Systems [http://www.toshibatec-teis.com])&lt;br /&gt;
* [http://www.strongpointnetworks.com Strongpoint Networks] (Opensource Consulting, Network support)&lt;br /&gt;
* [http://www.swsoft.com SWsoft] (The makers of Plesk, virtual hosting software)&lt;br /&gt;
* [www.sysmicro.co.uk] Specialist independent service provider delivering a comprehensive range of integrated IT services and top level support.&lt;br /&gt;
* [http://physics.tamu.edu/ Texas A&amp;amp;M University Department of Physics &amp;amp; Astronomy]&lt;br /&gt;
* [http://genome.wustl.edu/ The Genome Institute]&lt;br /&gt;
* [http://www.tppwholesale.com.au TPP Wholesale] ((an Australian webhost and domain registrar))&lt;br /&gt;
* [http://www.trellian.com/ Trellian] (web software and services company)&lt;br /&gt;
* [http://www.tripwire.com Tripwire, Inc.] (a change auditing solution provider)&lt;br /&gt;
* [https://uberspace.de Uberspace - Hosting on Asteroids] (A remarkable provider of Linux-based VirtualHosts)&lt;br /&gt;
* [http://www.upp.cz Universal Production Partners] , Czech Republic&lt;br /&gt;
* [http://www.unican.es Universidad de Cantabria], Santander, Spain&lt;br /&gt;
* [http://www.unavarra.es Universidad Pública de Navarra]&lt;br /&gt;
* [http://www.bath.ac.uk University of Bath]&lt;br /&gt;
* University of Valencia, Valencia, [http://chss.uoni.ac.ke Spain]&lt;br /&gt;
* [http://www.zcu.cz University of West Bohemia], Czech Republic&lt;br /&gt;
* [http://www.engr.uky.edu/ecs University of Kentucky Engineering Computing Services]&lt;br /&gt;
* [http://www.unimelb.edu.au/ University of Melbourne, Australia]&lt;br /&gt;
* [http://www.ox.ac.uk University of Oxford]&lt;br /&gt;
* [http://www.sussexstudent.com University of Sussex Student Union]&lt;br /&gt;
* [http://www.uvic.ca University of Victoria]&lt;br /&gt;
* [http://www.washington.edu University of Washington]&lt;br /&gt;
* [http://www.uow.edu.au/ University of Wollongong]&lt;br /&gt;
* [http://www.utbox.net UTBox] (internet-based fax and SMS messaging)&lt;br /&gt;
* [http://www.VirtualCAD.com VirtualCAD Inc.]&lt;br /&gt;
* [http://www.vitamix.com Vita-Mix Corporation]&lt;br /&gt;
* [http://www.voonami.com Voonami] (Utah Data Center)&lt;br /&gt;
* [http://vonage.com/ Vonage] (a phone company)&lt;br /&gt;
* [http://webspacehosting.com Web hosting] (Domain name services)&lt;br /&gt;
* [http://www.watchour.com WatchOur.com] (website monitoring)&lt;br /&gt;
* [http://www.sanger.ac.uk/ Wellcome Trust Sanger Institute]&lt;br /&gt;
* Will Ridenour (University of Illinois Press, [http://www.press.uillinois.edu])&lt;br /&gt;
* Wolfram Research (makers of Mathematica software)&lt;br /&gt;
* [http://xmission.com Xmission] (a Utah ISP)&lt;br /&gt;
* Young Choi ([http://seattlelighthouse.org Seattle Lighthouse for the Blind])&lt;br /&gt;
* Zimbabwe Online ([[www.zol.co.zw]])&lt;br /&gt;
* [http://www.zscaler.com/ Zscaler] (Cloud Security)k&lt;br /&gt;
* Gorav Bhootra ([http://impactservices.in Impact Services and Solutions])&lt;br /&gt;
* [http://www.orestad-linux.se Örestad Linux] (IT Services, Sweden)&lt;br /&gt;
* [http://www.help4it.com help4IT] (IT Support and outsourcing, UK)&lt;br /&gt;
*Mrunal S (HighRadius Technologies Pvt. Ltd)&lt;br /&gt;
* [http//www.rangatel.com/ rangatel, Inc.] (VoIP and home phone solutions company, Canada/US)&lt;/div&gt;</summary>
		<author><name>Mdfinn</name></author>
	</entry>
	<entry>
		<id>https://rt-wiki.bestpractical.com/index.php?title=MichaelFinn&amp;diff=5351</id>
		<title>MichaelFinn</title>
		<link rel="alternate" type="text/html" href="https://rt-wiki.bestpractical.com/index.php?title=MichaelFinn&amp;diff=5351"/>
		<updated>2016-06-17T18:52:04Z</updated>

		<summary type="html">&lt;p&gt;Mdfinn: Redirected page to User:Mdfinn&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[User:mdfinn]]&lt;/div&gt;</summary>
		<author><name>Mdfinn</name></author>
	</entry>
	<entry>
		<id>https://rt-wiki.bestpractical.com/index.php?title=User:Mdfinn&amp;diff=5350</id>
		<title>User:Mdfinn</title>
		<link rel="alternate" type="text/html" href="https://rt-wiki.bestpractical.com/index.php?title=User:Mdfinn&amp;diff=5350"/>
		<updated>2016-06-17T18:50:50Z</updated>

		<summary type="html">&lt;p&gt;Mdfinn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;My company&#039;s RT info:&lt;br /&gt;
&lt;br /&gt;
*RT 4.2.0&lt;br /&gt;
*[[MySQL]] 5.1.38&lt;br /&gt;
*CentOS 6.7&lt;br /&gt;
*Apache/2.2.15&lt;br /&gt;
*mod_perl-2.0.4&lt;br /&gt;
&lt;br /&gt;
We have 11 IT users accessing daily to track/respond to requests. I&#039;ve set up an &amp;quot;IT Viewer&amp;quot; role/group, with read-only permissions, so upper management can look at high-level reports or drill-down into individual tickets and see how we work. I&#039;ve also set up (in addition to the 5 IT queues) 3 additional queues for other divisions. They have their own groups, permissions, users, etc., and RT does a &#039;&#039;splendid&#039;&#039; job of separation.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
2009 Feb: Upgraded to 3.8.2.&lt;br /&gt;
&lt;br /&gt;
2008-09-12: Just upgraded from RT 3.6.1 to 3.8.1... moved from an old piece of hardware to a VMware ESX server.&lt;br /&gt;
&lt;br /&gt;
RT is on a CentOS 5.1 VM. [[MySQL]] database lives in our [[MySQL]] replicated VM back-end. (2 replicating DB servers with 2 failover [[MySQL]] proxy front-ends)&lt;br /&gt;
&lt;br /&gt;
I&#039;m &#039;&#039;&#039;LOVING&#039;&#039;&#039; 3.8.1, but I&#039;m not sure which I love more -- the new look, new features, or the INCREDIBLY FAST performance on the new system. :D&lt;/div&gt;</summary>
		<author><name>Mdfinn</name></author>
	</entry>
	<entry>
		<id>https://rt-wiki.bestpractical.com/index.php?title=User:Mdfinn&amp;diff=5349</id>
		<title>User:Mdfinn</title>
		<link rel="alternate" type="text/html" href="https://rt-wiki.bestpractical.com/index.php?title=User:Mdfinn&amp;diff=5349"/>
		<updated>2016-06-17T18:50:29Z</updated>

		<summary type="html">&lt;p&gt;Mdfinn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;My company&#039;s RT info:&lt;br /&gt;
&lt;br /&gt;
*RT 4.2.0&lt;br /&gt;
*MySQL 5.1.38&lt;br /&gt;
*CentOS 6.7&lt;br /&gt;
*Apache/2.2.15&lt;br /&gt;
*mod_perl-2.0.4&lt;br /&gt;
&lt;br /&gt;
We have 11 IT users accessing daily to track/respond to requests. I&#039;ve set up an &amp;quot;IT Viewer&amp;quot; role/group, with read-only permissions, so upper management can look at high-level reports or drill-down into individual tickets and see how we work. I&#039;ve also set up (in addition to the 5 IT queues) 3 additional queues for other divisions. They have their own groups, permissions, users, etc., and RT does a &#039;&#039;splendid&#039;&#039; job of separation.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
2009 Feb: Upgraded to 3.8.2.&lt;br /&gt;
&lt;br /&gt;
2008-09-12: Just upgraded from RT 3.6.1 to 3.8.1... moved from an old piece of hardware to a VMware ESX server.&lt;br /&gt;
&lt;br /&gt;
RT is on a CentOS 5.1 VM. [[MySQL]] database lives in our [[MySQL]] replicated VM back-end. (2 replicating DB servers with 2 failover [[MySQL]] proxy front-ends)&lt;br /&gt;
&lt;br /&gt;
I&#039;m &#039;&#039;&#039;LOVING&#039;&#039;&#039; 3.8.1, but I&#039;m not sure which I love more -- the new look, new features, or the INCREDIBLY FAST performance on the new system. :D&lt;/div&gt;</summary>
		<author><name>Mdfinn</name></author>
	</entry>
	<entry>
		<id>https://rt-wiki.bestpractical.com/index.php?title=User:Mdfinn&amp;diff=5348</id>
		<title>User:Mdfinn</title>
		<link rel="alternate" type="text/html" href="https://rt-wiki.bestpractical.com/index.php?title=User:Mdfinn&amp;diff=5348"/>
		<updated>2016-06-17T18:47:35Z</updated>

		<summary type="html">&lt;p&gt;Mdfinn: Created page with &amp;quot;My company&amp;#039;s RT info:  *RT 4.2.0 *MySQL 5.1.38 *CentOS 6.7 *Apache/2.2.15 *mod_perl-2.0.4  We have 11 IT users accessing daily to track/respond to requests. I&amp;#039;ve set up an &amp;quot;IT...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;My company&#039;s RT info:&lt;br /&gt;
&lt;br /&gt;
*RT 4.2.0&lt;br /&gt;
*MySQL 5.1.38&lt;br /&gt;
*CentOS 6.7&lt;br /&gt;
*Apache/2.2.15&lt;br /&gt;
*mod_perl-2.0.4&lt;br /&gt;
&lt;br /&gt;
We have 11 IT users accessing daily to track/respond to requests. I&#039;ve set up an &amp;quot;IT Viewer&amp;quot; role/group, with read-only permissions, so upper management can look at high-level reports or drill-down into individual tickets and see how we work. I&#039;ve also set up (in addition to the 5 IT queues) 3 additional queues for other divisions. They have their own groups, permissions, users, etc., and RT does a spendid job of separation.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
2009 Feb: Upgraded to 3.8.2.&lt;br /&gt;
&lt;br /&gt;
2008-09-12: Just upgraded from RT 3.6.1 to 3.8.1... moved from an old piece of hardware to a VMware ESX server.&lt;br /&gt;
&lt;br /&gt;
RT is on a CentOS 5.1 VM. MySQL database lives in our MySQL replicated VM back-end. (2 replicating DB servers with 2 failover MySQL proxy front-ends)&lt;br /&gt;
&lt;br /&gt;
I&#039;m LOVING 3.8.1, but I&#039;m not sure which I love more -- the new look, new features, or the INCREDIBLY FAST performance on the new system. :D&lt;/div&gt;</summary>
		<author><name>Mdfinn</name></author>
	</entry>
</feed>