Hi

We let Apache authenticate under SSL but had problems with rt-mailgate. 
Our work around was to configure httpd.conf as below so that rt-mailgate 
could operate under port 80. No doubt there are better ways, but this is 
working for us.

### Force SSL for RT except the NoAuth and REST directories

<Location "/rt4/NoAuth/">
   Order allow,deny
   Allow from all
   Satisfy Any
 </Location>
 <Location "/rt4/REST/1.0/NoAuth/">
   Order allow,deny
   Allow from all
   Satisfy Any
 </Location>

<LocationMatch "^/rt4/($|[^NR])">
  SSLRequireSSL
  AuthType [...]
   Require valid-user
</LocationMatch>

-- 
Jim Berry
--------
RT Training Sessions (http://bestpractical.com/services/training.html)
* Boston — March 5 & 6, 2012

Reply via email to