~ubuntu-branches/ubuntu/hardy/squirrelmail/hardy-updates

« back to all changes in this revision

Viewing changes to config/apache.conf

  • Committer: Bazaar Package Importer
  • Author(s): Sam Johnston
  • Date: 2004-02-04 01:42:12 UTC
  • Revision ID: james.westby@ubuntu.com-20040204014212-1z2gcfkjk85q7phx
Tags: 1:1.5.0-1
* New upstream release. Closes #230921.
* RFC3501 compliance for mailbox naming (eg trailing spaces).
  Closes: #176590, #215183.
* Adds a squirrelmail symlink in /var/www/. Closes: #229282.
* Adds PHP safe_mode workaround to README.Debian. Closes: #222071.
* Adds daily cron job to clean attachments directory. Closes: #228400.
* Checks for config_default.php before copying in postinst.
  Closes: #229737.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Alias /squirrelmail /usr/share/squirrelmail
 
2
 
 
3
<Directory /usr/share/squirrelmail>
 
4
#  php_value register_globals On # refer to Debian bug #128226
 
5
  php_flag register_globals on
 
6
  Options Indexes FollowSymLinks
 
7
  <IfModule mod_dir.c>
 
8
    DirectoryIndex index.php
 
9
  </IfModule>
 
10
</Directory>
 
11
 
 
12
# users will prefer a simple URL like http://webmail.example.com
 
13
#<VirtualHost 1.2.3.4>
 
14
#  DocumentRoot /usr/share/squirrelmail
 
15
#  ServerName webmail.example.com
 
16
#</VirtualHost>
 
17
 
 
18
# redirect to https when available (thanks omen@descolada.dartmouth.edu)
 
19
#<IfModule mod_rewrite.c>
 
20
#  <IfModule mod_ssl.c>
 
21
#    <Location /squirrelmail>
 
22
#      RewriteEngine on
 
23
#      RewriteCond %{HTTPS} !=on
 
24
#      RewriteRule . https://%{HTTP_HOST}%{REQUEST_URI}  [L]
 
25
#    </Location>
 
26
#  </IfModule>
 
27
#</IfModule>
 
28