b539000eea
pkgsrc changes: - Use the 'dep' version to install roundcube with no included dependencies and instead manage it all through pkgsrc - suggestion from schmonz@ - Move the config files to ${PREFIX}/share/roundcube/config as it was becomming difficult to manage them under ${PKG_SYSCONFDIR} - Add the GUI installer scripts to the install so users can use it for the initial setup and generation of the configuration files. - Add a note to the roundcube.conf file about protection of the installer directory once initially used. - Don't assume apache is the only supported web server (because it's not) we don't support any additional ones now but this will make integration down the track easier if we do. - Increased PKG_SUGGESTED_OPTIONS based on documentation in the INSTALL file. - Add more required PHP options to roundcube.conf Thanks to Dan Engholm for feedback on the package. From the ChangeLog: * Clear selection when selecting single item (1484942) * Remove hard-coded image size in skin templates (1484893) * Database schema improvements (dropped unnecessary indexes) * Fixed creating a new folder with a comma in its name (1484681) * Fixed sorting of messages when default mailbox is empty (1484317) * Improve message previewpane - less loading (1484316) * Fixed login form autocompletion (1484839) * Fixed virtuser_query option for mdb2 backend (1484874) * Fixed attachment resoting from Drafts when message body was empty (1484506) * Fixed usage of ob_gzhandler (1484851) * Fixed message part window in IE6 (1484610) * Fixed decoding of mime-encoded strings (1484191) * Fixed some iconv/mb_string problems (1484598) * Correctly quote mailbox name when using in URL (1484313) * Fixed "headers already sent" errors (1484860)
35 lines
969 B
Text
35 lines
969 B
Text
# $NetBSD: roundcube.conf,v 1.3 2008/05/04 16:34:03 adrianp Exp $
|
|
#
|
|
# RoundCube configuration file fragment for Apache
|
|
|
|
<IfModule mod_alias.c>
|
|
Alias /roundcube "@RCDIR@/"
|
|
</IfModule>
|
|
|
|
<Directory "@RCDIR@">
|
|
AllowOverride All
|
|
DirectoryIndex index.php
|
|
<IfModule mod_php4.c>
|
|
php_flag file_uploads On
|
|
php_value session.auto_start Off
|
|
php_value upload_max_filesize 2M
|
|
</IfModule>
|
|
<IfModule mod_php5.c>
|
|
php_flag file_uploads On
|
|
php_value session.auto_start Off
|
|
php_value upload_max_filesize 2M
|
|
</IfModule>
|
|
</Directory>
|
|
|
|
#
|
|
# For security, don't serve pages from the roundcube installer directory.
|
|
#
|
|
# If you are using the installer to setup roundcube you will need access to
|
|
# the installer/ directory for the initial setup. It is recommended that
|
|
# after installation you uncomment the following block in order to restrict
|
|
# access to that directory.
|
|
#
|
|
#<Directory "@RCDIR@/installer">
|
|
# Order deny,allow
|
|
# Deny from all
|
|
#</Directory>
|