Merge pull request #338 from gregf/fix_roundcube_attachment_size

This sets the max attachment size in roundcube
master
kaiyou 7 years ago committed by GitHub
commit 36e2e35ea8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -21,6 +21,8 @@ RUN rm -rf /var/www/html/ \
&& rm -rf CHANGELOG INSTALL LICENSE README.md UPGRADING composer.json-dist installer \
&& 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 start.sh /start.sh

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