Merge pull request #338 from gregf/fix_roundcube_attachment_size

This sets the max attachment size in roundcube
This commit is contained in:
kaiyou
2017-12-05 19:10:44 +01:00
committed by GitHub
2 changed files with 5 additions and 0 deletions

View File

@@ -21,6 +21,8 @@ RUN rm -rf /var/www/html/ \
&& rm -rf CHANGELOG INSTALL LICENSE README.md UPGRADING composer.json-dist installer \ && rm -rf CHANGELOG INSTALL LICENSE README.md UPGRADING composer.json-dist installer \
&& chown -R www-data: logs && chown -R www-data: logs
COPY php.ini /usr/local/etc/php/conf.d/roundcube.ini
COPY config.inc.php /var/www/html/config/ COPY config.inc.php /var/www/html/config/
COPY start.sh /start.sh COPY start.sh /start.sh

View File

@@ -0,0 +1,3 @@
date.timezone=UTC
upload_max_filesize = 25M
post_max_size = 25M