diff --git a/towncrier/newsfragments/2634.misc b/towncrier/newsfragments/2634.misc new file mode 100644 index 00000000..e018497a --- /dev/null +++ b/towncrier/newsfragments/2634.misc @@ -0,0 +1 @@ +Upgrade webmails: snappymail to 2.25.0, roundcube to 1.6.1 and carddav to 5.0.1 diff --git a/webmails/Dockerfile b/webmails/Dockerfile index 9dc3514a..b6408d86 100644 --- a/webmails/Dockerfile +++ b/webmails/Dockerfile @@ -26,8 +26,8 @@ RUN set -euxo pipefail \ ; mkdir -p /run/nginx /conf # roundcube -ENV ROUNDCUBE_URL https://github.com/roundcube/roundcubemail/releases/download/1.5.3/roundcubemail-1.5.3-complete.tar.gz -ENV CARDDAV_URL https://github.com/mstilkerich/rcmcarddav/releases/download/v4.4.3/carddav-v4.4.3.tar.gz +ENV ROUNDCUBE_URL https://github.com/roundcube/roundcubemail/releases/download/1.6.1/roundcubemail-1.6.1-complete.tar.gz +ENV CARDDAV_URL https://github.com/mstilkerich/rcmcarddav/releases/download/v5.0.1/carddav-v5.0.1.tar.gz RUN set -euxo pipefail \ ; cd /var/www \ @@ -52,7 +52,7 @@ COPY roundcube/config/config.inc.carddav.php /var/www/roundcube/plugins/carddav/ # snappymail -ENV SNAPPYMAIL_URL https://github.com/the-djmaze/snappymail/releases/download/v2.21.3/snappymail-2.21.3.tar.gz +ENV SNAPPYMAIL_URL https://github.com/the-djmaze/snappymail/releases/download/v2.25.0/snappymail-2.25.0.tar.gz RUN set -euxo pipefail \ ; mkdir /var/www/snappymail \ diff --git a/webmails/roundcube/config/config.inc.php b/webmails/roundcube/config/config.inc.php index f271eebc..72db545c 100644 --- a/webmails/roundcube/config/config.inc.php +++ b/webmails/roundcube/config/config.inc.php @@ -14,6 +14,7 @@ $config['zipdownload_selection'] = true; $config['enable_spellcheck'] = true; $config['spellcheck_engine'] = 'pspell'; $config['session_lifetime'] = {{ SESSION_TIMEOUT_MINUTES | int }}; +$config['request_path'] = '{{ WEB_WEBMAIL or "none" }}'; // Mail servers $config['imap_host'] = '{{ FRONT_ADDRESS or "front" }}:10143'; @@ -21,28 +22,9 @@ $config['smtp_host'] = '{{ FRONT_ADDRESS or "front" }}:10025'; $config['smtp_user'] = '%u'; $config['smtp_pass'] = '%p'; -#old deprecated settings will be replaced from roundcube 1.6. -$config['smtp_server'] = '{{ FRONT_ADDRESS or "front" }}'; -$config['smtp_port'] = '10025'; -$config['default_host'] = '{{ FRONT_ADDRESS or "front" }}'; -$config['default_port'] = '10143'; - // Sieve script management $config['managesieve_host'] = '{{ FRONT_ADDRESS or "front" }}:14190'; -// We access the IMAP and SMTP servers locally with internal names, SSL -// will obviously fail but this sounds better than allowing insecure login -// from the outter world -$ssl_no_check = array( - 'ssl' => array( - 'verify_peer' => false, - 'verify_peer_name' => false, - ), -); -$config['imap_conn_options'] = $ssl_no_check; -$config['smtp_conn_options'] = $ssl_no_check; -$config['managesieve_conn_options'] = $ssl_no_check; - // roundcube customization $config['product_name'] = 'Mailu Webmail'; {%- if ADMIN and WEB_ADMIN %}