I just got around to using the config below on my server, and it works great
-- from the Apache end. However, I've run into an odd Sqwebmail problem.
Basically, I'd had the binary for Sqwebmail living in
/usr/local/apache/cgi-bin. I didn't want to set directory options on that
directory, out of a worry that they'd do odd things to my other Virtual
Hosts. Thus, I copied my binary to a whole different location. Strangely
enough, this caused all of my images to quit working. This seems odd, since
I thought the paths for the images were done absolutely.
I guess my question is, can I a) set those directory options without hurting
my other Virtual Hosts, or b) do something to the sqwebmail binary to get it
to see the images again?
Thanks,
Alex Le Fevre
<VirtualHost webmail.my.dom>
ServerName webmail.my.dom
ServerAlias *webmail.my.dom
DocumentRoot /wherever/sqwebmail/lives
<Directory /wherever/sqwebmail/lives
Options ExecCGI
Allow from All
AllowOverride None
DirectoryIndex /sqwebmail
<Files sqwebmail>
ForceType cgi-script
</Files>
</Directory>
</VirtualHost>
Roland