Running the unstable debian RT package on apache 1.3.34 modperl 1.29.
Only changes I have made are to RT_SiteConfig.pm , and installing
User_Local.pm as I aspire to having active directory ldap derived user
creation. <br><br>
The problems:<br>1. Getting absolutely nothing logged in /var/log/request-tracker3.4<br><br>Dropping @LogToSyslogConf = ( socket => 'inet' ) unless (@LogToSyslogConf); into RT_SiteConfig.pm did not make any difference
<br>
<br>2. LDAP auth does not appear to be attempted - <br><br>[Wed Feb 22 16:16:35 2006] [error]: FAILED LOGIN for eeee from <a href="http://192.168.234.123/" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">
192.168.234.123</a> (/usr/share/request-tracker3.4/html/autohandler:191)
<br><br>Which appears to be a failed local logon attempt, not an ldap attempt. <br>I am not seeing anything on my AD server that would indicate any requests hitting it. <br><br>Any ideas? Do I need to include the User_Local.pm somehow? I have it installed in both
<br><br>/usr/local/share/request-tracker3.4/lib/RT<br>/usr/share/request-tracker3.4/lib/RT<br><br>Toggling the debug flag in it did not increase any logging output anywhere in /var/log<br><br><br># RT_SiteConfig.pm<br>#<br>

# These are the bits you absolutely *must* edit.<br>#<br># To find out how, please read<br>#   /usr/share/doc/request-tracker3.4/INSTALL.Debian<br># THE BASICS:<br>Set($rtname, 'rt.f.q.d.n');<br>Set($Organization, '<a href="http://domain.com/" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">

domain.com</a>');<br>Set($CorrespondAddress , '<a href="mailto:rt@domain.com" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">rt@domain.com</a>');<br>Set($CommentAddress , '<a href="mailto:rt-comment@domain.com" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">
rt-comment@domain.com</a>');<br>Set($Timezone , 'America/New_York'); # obviously choose what suits you
<br># THE DATABASE:<br>Set($DatabaseType, 'mysql'); # e.g. Pg or mysql<br># These are the settings we used above when creating the RT database,<br># you MUST set these to what you chose in the section above.<br>Set($DatabaseUser , 'rt');
<br>Set($DatabasePassword , 'rtpassword');<br>Set($DatabaseName , 'rtdbname');<br># try to get logging working<br>@LogToSyslogConf = ( socket => 'inet' ) unless (@LogToSyslogConf);<br># THE WEBSERVER:<br>Set($WebPath , "/rt");
<br>Set($WebBaseURL , "<a href="http://rt.domain.com/" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">http://rt.domain.com</a>");<br><br># Ldap Attempts<br>Set($LDAPExternalAuth, 1);<br>
Set($LdapServer, "ad.dc.goes.here");<br>Set($LdapUser, "rt");
<br>Set($LdapPass, "password");<br>Set($LdapBase, "dc=domain,dc=com");<br>Set($LdapUidAttr, "uid");<br>Set($LdapFilter, "(objectclass=*)");<br>Set($LDapTLS, 0);<br>1;