ush to version 1.6.0

This commit is contained in:
Sebastian Hugentobler 2022-09-10 18:18:22 +02:00
parent 53910bee43
commit eadb3c5aaa
Signed by: shu
GPG Key ID: BB32CF3CA052C2F0
2 changed files with 4 additions and 6 deletions

View File

@ -20,8 +20,8 @@ RUN echo "$COMPOSER_SHA256_SUM composer.phar" | sha256sum -c - || exit 1
RUN mv composer.phar /usr/bin/composer
RUN chmod +x /usr/bin/composer
ENV VERSION=1.5.3
ENV SHA256_SUM=4bcfac219f2e0005c912dac3227743cc1ed0ded69c822f74c81a70d041e5a3bd
ENV VERSION=1.6.0
ENV SHA256_SUM=2409ccdfe2e465f086cb9fc18c88dfe0aaf6ccc23924564975061209921694ba
RUN wget https://github.com/roundcube/roundcubemail/releases/download/$VERSION/roundcubemail-$VERSION-complete.tar.gz
RUN echo "$SHA256_SUM roundcubemail-$VERSION-complete.tar.gz" | sha256sum -c - || exit 1
RUN mkdir -p /var/lib/roundcube
@ -29,7 +29,6 @@ RUN tar xzf roundcubemail-$VERSION-complete.tar.gz -C /var/lib/roundcube --strip
FROM docker.io/thallian/php8-fpm:3.16
RUN apk add --no-cache \
openssl \
tar \

View File

@ -7,7 +7,7 @@ $config['log_driver'] = 'stdout';
$config['skin'] = 'elastic';
$config['default_host'] = '{{getenv "IMAP_HOST" "tls://%n"}}';
$config['imap_host'] = '{{getenv "IMAP_HOST" "tls://%n"}}';
$config['imap_conn_options'] = array(
'ssl' => array(
'verify_peer' => true,
@ -15,8 +15,7 @@ $config['imap_conn_options'] = array(
),
);
$config['smtp_server'] = '{{getenv "SMTP_HOST" "tls://%n"}}';
$config['smtp_port'] = {{getenv "SMTP_PORT" "587"}};
$config['smtp_host'] = '{{getenv "SMTP_HOST" "tls://%n"}}:{{getenv "SMTP_PORT" "587"}}';
$config['smtp_user'] = '%u';
$config['smtp_pass'] = '%p';
/*$config['smtp_conn_options'] = array(