Dan
Moderator
Hey everyone I have something that I have been able to get working but I am curious as to how it SHOULD be done as from what I am seeing the way I achieved it is not a very good way to go.
Ok, so I want a global install of Squirrelmail that will be available for use with all domains.
How I did this is I installed Squirrelmail into /usr/local/apache/htdocs/sqmail (I realize any place will work really).
And then added an alias which is:
I also had to set things up for user preferences and a folder for uploads with permissions but nothing too special about this.
I then (and this is the really iffy part) for some reason things would not work unless I added users to the Wheel group. I have phpsuexec running so scripts and everything run AS the user which is part of the problem I am sure but I really do not want to give that up.
So while that DOES give me http://domain.com/sqmail for all domains is there a better way I should be doing this?
Thanks!
Ok, so I want a global install of Squirrelmail that will be available for use with all domains.
How I did this is I installed Squirrelmail into /usr/local/apache/htdocs/sqmail (I realize any place will work really).
And then added an alias which is:
Code:
Alias /sqmail /usr/local/apache/htdocs/sqmail
<Directory "/usr/local/apache/htdocs/sqmail">
Options Indexes FollowSymlinks MultiViews ExecCGI
AllowOverride None
Order allow,deny
Allow from all
</Directory>
I also had to set things up for user preferences and a folder for uploads with permissions but nothing too special about this.
I then (and this is the really iffy part) for some reason things would not work unless I added users to the Wheel group. I have phpsuexec running so scripts and everything run AS the user which is part of the problem I am sure but I really do not want to give that up.
So while that DOES give me http://domain.com/sqmail for all domains is there a better way I should be doing this?
Thanks!