Talk:CentOS 4.4 QmailToaster Install
From Qmailtoaster
Procedure works great, but I had 2 big issues - the squirrelmail.conf file has a defect and so does the toaster.conf file. The squirrelmail.conf original is:
<IfModule mod_alias.c>
Alias /webmail /usr/share/squirrelmail
</IfModule>
<Directory /usr/share/squirrelmail>
Options None Order allow,deny allow from all
</Directory>
it should be:
<IfModule mod_alias.c>
Alias /webmail /usr/share/squirrelmail
</IfModule>
<Directory /usr/share/squirrelmail>
DirectoryIndex index.php Options Indexes Order allow,deny allow from all
</Directory>
Here's the patch for toaster.conf:
diff toaster.conf.orig toaster.conf
28a29,30
> Options Indexes
> DirectoryIndex index.php
37a40,41
> Options Indexes
> DirectoryIndex index.php
46a51,52
> Options Indexes
> DirectoryIndex index.html
Also, I recommend placing the two extra conf files (squirrelmail.conf and toaster.conf in /etc/httpd/conf.d and leaving /etc/httpd/conf/httpd.conf alone - it will automatically pick up the two new files from the Include conf.d/*.conf directive.
George Toft