[rt-users] postfix: 405 Method Not Allowed
Ray Thompson
rthompson at interpublic.com
Tue Apr 8 17:03:52 EDT 2003
>
> Hi, This problem has been handled before. I had the same
> problem when moving from rt2 to rt3.
>
> It's the Apache config which probably still contains a
> "Filematch" directive from the RT2 install.
>
> Read the README or the 3.0 draftmanual where you will see in
> the install section that the Apache config has
> changed slightly.
>
> Hope this help
>
Read both the README and the draftmanual.
The closest thing I found in the archives is http://lists.fsck.com/pipermail/rt-devel/2003-March/003504.html but that ended up being an SSL thing.
I search for Filematch in httpd.conf but didn't find any reference.
Blurb from httpd.conf:
<VirtualHost 144.210.2.242>
ServerName omart.omaha.bozell.com
DocumentRoot /opt/rt3/share/html
AddDefaultCharset UTF-8
PerlModule Apache::DBI
PerlRequire /opt/rt3/bin/webmux.pl
ErrorLog logs/error_log_rt3
CustomLog logs/access_log_rt3 combined
PerlFreshRestart On
<Location />
SetHandler perl-script
PerlHandler RT::Mason
AuthName "RT Web Users"
AuthType Basic
AuthLDAPURL ldap://chidir1.truenorth.com/o=True North?uid?sub
require valid-user
</Location>
</VirtualHost>
[root at omart etc]# diff RT_Config.pm RT_SiteConfig.pm
27c27
< Set($rtname , "example.com");
---
> Set($rtname , "IPG Shared Services");
33c33
< Set($Organization , "example.com");
---
> Set($Organization , "interpublic.com");
41c41
< Set($Timezone , 'US/Eastern');
---
> Set($Timezone , 'US/Central');
57,58c57,60
< Set($DatabaseHost , 'localhost');
< Set($DatabaseRTHost , 'localhost');
---
> #Set($DatabaseHost , 'localhost');
> #Set($DatabaseRTHost , 'localhost');
> Set($DatabaseHost , '');
> Set($DatabaseRTHost , '');
68c70
< Set($DatabasePassword , 'rt_pass');
---
> Set($DatabasePassword , 'foo-bar');
153c155
< Set($SenderMustExistInExternalDatabase , undef);
---
> Set($SenderMustExistInExternalDatabase , 'true');
167c169
< Set($CorrespondAddress , 'RT::CorrespondAddress.not.set');
---
> Set($CorrespondAddress , 'RT::hrsupport.omart.omaha.bozell.com');
169c171
< Set($CommentAddress , 'RT::CommentAddress.not.set');
---
> Set($CommentAddress , 'RT::hrsupport-comment.omart.omaha.bozell.com');
252c254
< Set($WebBaseURL , "http://RT::WebBaseURL.not.configured:80");
---
> Set($WebBaseURL , "http://omart.omaha.bozell.com");
275c277
< Set($WebExternalAuth , undef);
---
> Set($WebExternalAuth , 'true');
280c282
< Set($WebFallbackToInternalAuth , undef);
---
> Set($WebFallbackToInternalAuth , 'false');
290c292
< Set($WebExternalAuto , undef);
---
> Set($WebExternalAuto , "true");
[root at omart etc]#
More information about the rt-users
mailing list