Setting up squirrelmail
Hi,
I'm trying to get squirrelmail to work on MacOS X Server 10.2.2
I was told squirrelmail was installed by default and that I only had to uncomment the PHP tags in /etc/httpd/httpd.conf
Following the "Include /etc/http/httpd_squirrelmail.conf" directions given in https://www.afp548.com/Articles/web/squirrelmail.html makes Apache refuse to start.
What I did was add the Include statement as follows in httpd_macosxserver.conf
--
#<RAdmin 100>
NameVirtualHost 192.168.185.11:80
Listen 192.168.185.11:80
<VirtualHost 192.168.185.11:80>
ServerName server
Include /private/etc/http/httpd_squirrelmail.conf
#WebPerfCacheEnable On
#SiteAutomaticallyDisabled Off
ServerAdmin webmaster@server.com
DocumentRoot "/Library/WebServer/Documents"
DirectoryIndex index.html index.php
CustomLog "/private/var/log/httpd/access_log" "%{PC-Remote-Addr}i %l %u %t \"%r\" %>s
%b"
ErrorLog "/private/var/log/httpd/error_log"
[etc.]
--
After this modification WebService Status gives:
--
fopen: No such file or directory
httpd: could not open document config file /private/etc/http/httpd_squirrelmail.conf
/usr/sbin/apachectl start: httpd could not be started
--
This doesn't appear to be a privilige problem:
-rw-r--r-- 1 root wheel 442 Dec 18 14:21 httpd_squirrelmail.conf
Can anyone tell me what I'm missing?