> Before I tried to set up a virtual host for my Squirrelmail 
> installation, it worked fine. Then, I set up the virtual host in httpd.conf:
> 
> <VirtualHost webmail>
>     DocumentRoot "C:/Programme/Apache Group/Apache/htdocs/squirrelmail"
> </VirtualHost>
> 
> Any idea?

Well, having a correctly defined virtual-host would be a good start.
Given, you are apparantly working in windoze and that is unfortunate,
but nonetheless, try something more like this:

##### Webmail #####
<VirtualHost 192.168.3.3:80>
    ServerName webmail.foo.com
    ServerAlias webmail.foo.net
    DocumentRoot /usr/local/apache2/htdocs/mail/html
    php_value include_path ".:/usr/local/apache2/htdocs/mail/html"
<Directory "/usr/local/apache2/htdocs/mail/html">
    Options Indexes Includes FollowSymLinks
    AllowOverride AuthConfig Limit
    Order allow,deny
    Allow from all
</Directory>
</VirtualHost>

Notice the IP in the virtual host directive tag...this is not necissary,
if you use NameVirtualHost, but it is how I have multiple https virtual
hosts. Also, ServerAlias can accept wildcards, which is how you would
want to do http://webmail.

GoodLuck.

-- 
-------------------------------------------
| Caleb Phillips                          |
| The Studio Resource                     |
| IT Specialist                           |
|                                         |
| Handcrafted for you in Ximian Evolution |
-------------------------------------------



-------------------------------------------------------
This SF.net email is sponsored by: Get the new Palm Tungsten T 
handheld. Power & Color in a compact size! 
http://ads.sourceforge.net/cgi-bin/redirect.pl?palm0002en
--
squirrelmail-users mailing list
List Address: [EMAIL PROTECTED]
List Archives:  http://sourceforge.net/mailarchive/forum.php?forum_id=2995
List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users

Reply via email to