Hi Routinet,
Sorry for the late reply. I got cought up in multiple emergencies that needs to be taken care of.
Can you tell me if I mistakenly included any confidential info? I've looked at it ans so far I can tell it looked ok. Anyhow, here is the content of /etc/apache2/conf.d/squirr
Alias /squirrelmail /usr/share/squirrelmail
<Directory /usr/share/squirrelmail>
Options Indexes FollowSymLinks
<IfModule mod_php4.c>
php_flag register_globals off
</IfModule>
<IfModule mod_php5.c>
php_flag register_globals off
</IfModule>
<IfModule mod_dir.c>
DirectoryIndex index.php
</IfModule>
# access to configtest is limited by default to prevent information leak
<Files configtest.php>
order deny,allow
deny from all
allow from 127.0.0.1
</Files>
</Directory>
# users will prefer a simple URL like http://webmail.example.com
#<VirtualHost 1.2.3.4>
# DocumentRoot /usr/share/squirrelmail
# ServerName webmail.example.com
#</VirtualHost>
# redirect to https when available (thanks omen@descolada.dartmouth.e
#
# Note: There are multiple ways to do this, and which one is suitable for
# your site's configuration depends. Consult the apache documentation if
# you're unsure, as this example might not work everywhere.
#
#<IfModule mod_rewrite.c>
# <IfModule mod_ssl.c>
# <Location /squirrelmail>
# RewriteEngine on
# RewriteCond %{HTTPS} !^on$ [NC]
# RewriteRule . https://%{HTTP_HOST}%{REQU
# </Location>
# </IfModule>
#</IfModule>
Main Topics
Browse All Topics





by: routinetPosted on 2009-11-07 at 14:35:35ID: 25768397
I have not worked with Ubuntu 8.04 in awhile, so I'm not sure what files you have. Still, the resolution here is strictly within the Apache configuration. Your SM site must have a definition in order for Apache to serve it. Chances are, it is in the squirrelmail.conf file you mentioned earlier. Provided you already have an SSL certificate, it should be a simple matter to alter this file to provide an SSL host instead of a normal HTTP host.
Post the contents of that file here. Remember to strip out any proprietary or confidential information.