Have ldap working, but I broke the mail interface

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”?

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>

This seems to be more of an apache question, but I think you would just need
another Directory statement changing the permissioning for that part of the
web server.On Wed, 9 Jul 2003, Sean Perry wrote:

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”?

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>

rt-users mailing list
rt-users@lists.fsck.com
http://lists.fsck.com/mailman/listinfo/rt-users

Have you read the FAQ? The RT FAQ Manager lives at http://fsck.com/rtfm

I am new to RT and ran into the same problem (with external SMB
authentication). I found this tip in the archives.

Allow access to the rt3 directory from localhost. I think there are
some implications to doing it this way though.

Order deny,allow Deny from all Allow from 127.0.0.1 AuthType Basic AuthName "Request Tracker" AuthLDAPURL "ldap://my.url" AuthLDAPBindDN "cn=blah,cn=blarg" AuthLDAPBindPassword "the_pass" AuthLDAPAuthoritative off require valid-user Satisfy Any On Thu, Jul 10, 2003 at 11:07:06AM +0900, asterr wrote: > This seems to be more of an apache question, but I think you would just need > another Directory statement changing the permissioning for that part of the > web server. > > On Wed, 9 Jul 2003, Sean Perry wrote: > > > 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"? > > > > > > 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 > > > > > > AuthType Basic > > AuthName "Request Tracker" > > > > AuthLDAPURL "ldap://my.url" > > AuthLDAPBindDN "cn=blah,cn=blarg" > > AuthLDAPBindPassword "the_pass" > > AuthLDAPAuthoritative off > > require valid-user > > > > > > > > SetHandler perl-script > > PerlHandler RT::Mason > > > > > > SetHandler perl-script > > PerlHandler RT::Mason > > > > > > SetHandler perl-script > > PerlHandler RT::Mason > > > > > > > > > > _______________________________________________ > > rt-users mailing list > > rt-users@lists.fsck.com > > http://lists.fsck.com/mailman/listinfo/rt-users > > > > Have you read the FAQ? The RT FAQ Manager lives at http://fsck.com/rtfm > > > > > > > > _______________________________________________ > rt-users mailing list > rt-users@lists.fsck.com > http://lists.fsck.com/mailman/listinfo/rt-users > > Have you read the FAQ? The RT FAQ Manager lives at http://fsck.com/rtfm