[rt-users] have ldap working, but I broke the mail interface
Sean Perry
sean.perry at intransa.com
Wed Jul 9 12:47:31 EDT 2003
So I have ldap working via webexternalauth. No problems there. Life is
good.
However, now the mail-gateway is busted because the web server won't
load the page without authentication. Below is most of my apache
config, any idea how I can say "hey, the NoAuth section is ok no need to
authenticate there"?
<VirtualHost my.ip>
ServerName my.host.name
DocumentRoot /usr/local/rt3/share/html
AddDefaultCharset UTF-8
PerlModule Apache2 Apache::compat
PerlModule Apache::DBI
PerlRequire /usr/local/rt3/bin/webmux.pl
<Directory />
AuthType Basic
AuthName "Request Tracker"
AuthLDAPURL "ldap://my.url"
AuthLDAPBindDN "cn=blah,cn=blarg"
AuthLDAPBindPassword "the_pass"
AuthLDAPAuthoritative off
require valid-user
</Directory>
<FilesMatch "\.html$">
SetHandler perl-script
PerlHandler RT::Mason
</FilesMatch>
<LocationMatch "/Attachment/">
SetHandler perl-script
PerlHandler RT::Mason
</LocationMatch>
<LocationMatch "/REST/">
SetHandler perl-script
PerlHandler RT::Mason
</LocationMatch>
</VirtualHost>
More information about the rt-users
mailing list