Add new config options imap_host and smtp_host for git master changes
authorThomas Bruederli <redacted>
Sun, 16 Jan 2022 21:24:56 +0000 (22:24 +0100)
committerThomas Bruederli <redacted>
Sun, 16 Jan 2022 21:24:56 +0000 (22:24 +0100)
fixes #165 #166

nightly/docker-entrypoint.sh

index 89fa670012d478f5053c22681f4814c21b3ec663..75009693b1294e9893b2fc4b81081e3f430d5ff8 100755 (executable)
@@ -95,8 +95,10 @@ if [[ "$1" == apache2* ]] || [ "$1" == php-fpm ]; then
   \$config['db_dsnr'] = '${ROUNDCUBEMAIL_DSNR}';
   \$config['default_host'] = '${ROUNDCUBEMAIL_DEFAULT_HOST}';
   \$config['default_port'] = '${ROUNDCUBEMAIL_DEFAULT_PORT}';
+  \$config['imap_host'] = '${ROUNDCUBEMAIL_DEFAULT_HOST}:${ROUNDCUBEMAIL_DEFAULT_PORT}';
   \$config['smtp_server'] = '${ROUNDCUBEMAIL_SMTP_SERVER}';
   \$config['smtp_port'] = '${ROUNDCUBEMAIL_SMTP_PORT}';
+  \$config['smtp_host'] = '${ROUNDCUBEMAIL_SMTP_SERVER}:${ROUNDCUBEMAIL_SMTP_PORT}';
   \$config['temp_dir'] = '${ROUNDCUBEMAIL_TEMP_DIR}';
   \$config['skin'] = '${ROUNDCUBEMAIL_SKIN}';
   \$config['plugins'] = array_filter(array_unique(array_merge(\$config['plugins'], ['${ROUNDCUBEMAIL_PLUGINS_PHP}'])));
git clone https://git.99rst.org/PROJECT