#!/bin/bash # set -ex # PWD=`pwd` if [[ "$1" == apache2* ]] || [ "$1" == php-fpm ]; then # docroot is empty if ! [ -e index.php -a -e bin/installto.sh ]; then echo >&2 "roundcubemail not found in $PWD - copying now..." if [ "$(ls -A)" ]; then echo >&2 "WARNING: $PWD is not empty - press Ctrl+C now if this is an error!" ( set -x; ls -A; sleep 10 ) fi tar cf - --one-file-system -C /usr/src/roundcubemail . | tar xf - echo >&2 "Complete! ROUNDCUBEMAIL has been successfully copied to $PWD" # update Roundcube in docroot else INSTALLDIR=`pwd` echo >&2 "roundcubemail found in $INSTALLDIR - installing update..." (cd /usr/src/roundcubemail && bin/installto.sh -y $INSTALLDIR) composer.phar update --no-dev fi if [ -f /run/secrets/roundcube_db_user ]; then ROUNDCUBEMAIL_DB_USER=`cat /run/secrets/roundcube_db_user` fi if [ -f /run/secrets/roundcube_db_password ]; then ROUNDCUBEMAIL_DB_PASSWORD=`cat /run/secrets/roundcube_db_password` fi if [ ! -z "${!POSTGRES_ENV_POSTGRES_*}" ] || [ "$ROUNDCUBEMAIL_DB_TYPE" == "pgsql" ]; then : "${ROUNDCUBEMAIL_DB_TYPE:=pgsql}" : "${ROUNDCUBEMAIL_DB_HOST:=postgres}" : "${ROUNDCUBEMAIL_DB_PORT:=5432}" : "${ROUNDCUBEMAIL_DB_USER:=${POSTGRES_ENV_POSTGRES_USER}}" : "${ROUNDCUBEMAIL_DB_PASSWORD:=${POSTGRES_ENV_POSTGRES_PASSWORD}}" : "${ROUNDCUBEMAIL_DB_NAME:=${POSTGRES_ENV_POSTGRES_DB:-roundcubemail}}" : "${ROUNDCUBEMAIL_DSNW:=${ROUNDCUBEMAIL_DB_TYPE}://${ROUNDCUBEMAIL_DB_USER}:${ROUNDCUBEMAIL_DB_PASSWORD}@${ROUNDCUBEMAIL_DB_HOST}:${ROUNDCUBEMAIL_DB_PORT}/${ROUNDCUBEMAIL_DB_NAME}}" /wait-for-it.sh ${ROUNDCUBEMAIL_DB_HOST}:${ROUNDCUBEMAIL_DB_PORT} -t 30 elif [ ! -z "${!MYSQL_ENV_MYSQL_*}" ] || [ "$ROUNDCUBEMAIL_DB_TYPE" == "mysql" ]; then : "${ROUNDCUBEMAIL_DB_TYPE:=mysql}" : "${ROUNDCUBEMAIL_DB_HOST:=mysql}" : "${ROUNDCUBEMAIL_DB_PORT:=3306}" : "${ROUNDCUBEMAIL_DB_USER:=${MYSQL_ENV_MYSQL_USER:-root}}" if [ "$ROUNDCUBEMAIL_DB_USER" = 'root' ]; then : "${ROUNDCUBEMAIL_DB_PASSWORD:=${MYSQL_ENV_MYSQL_ROOT_PASSWORD}}" else : "${ROUNDCUBEMAIL_DB_PASSWORD:=${MYSQL_ENV_MYSQL_PASSWORD}}" fi : "${ROUNDCUBEMAIL_DB_NAME:=${MYSQL_ENV_MYSQL_DATABASE:-roundcubemail}}" : "${ROUNDCUBEMAIL_DSNW:=${ROUNDCUBEMAIL_DB_TYPE}://${ROUNDCUBEMAIL_DB_USER}:${ROUNDCUBEMAIL_DB_PASSWORD}@${ROUNDCUBEMAIL_DB_HOST}:${ROUNDCUBEMAIL_DB_PORT}/${ROUNDCUBEMAIL_DB_NAME}}" /wait-for-it.sh ${ROUNDCUBEMAIL_DB_HOST}:${ROUNDCUBEMAIL_DB_PORT} -t 30 else # use local SQLite DB in /var/roundcube/db : "${ROUNDCUBEMAIL_DB_TYPE:=sqlite}" : "${ROUNDCUBEMAIL_DB_DIR:=/var/roundcube/db}" : "${ROUNDCUBEMAIL_DB_NAME:=sqlite}" : "${ROUNDCUBEMAIL_DSNW:=${ROUNDCUBEMAIL_DB_TYPE}:///$ROUNDCUBEMAIL_DB_DIR/${ROUNDCUBEMAIL_DB_NAME}.db?mode=0646}" mkdir -p $ROUNDCUBEMAIL_DB_DIR chown www-data:www-data $ROUNDCUBEMAIL_DB_DIR fi : "${ROUNDCUBEMAIL_DEFAULT_HOST:=localhost}" : "${ROUNDCUBEMAIL_DEFAULT_PORT:=143}" : "${ROUNDCUBEMAIL_SMTP_SERVER:=localhost}" : "${ROUNDCUBEMAIL_SMTP_PORT:=587}" : "${ROUNDCUBEMAIL_PLUGINS:=archive,zipdownload}" : "${ROUNDCUBEMAIL_SKIN:=larry}" : "${ROUNDCUBEMAIL_TEMP_DIR:=/tmp/roundcube-temp}" : "${ROUNDCUBEMAIL_IMAP_CACHE_TTL:7d}" : "${ROUNDCUBEMAIL_MESSAGES_CACHE_TTL:3m}" : "${ROUNDCUBEMAIL_MESSAGES_CACHE_TRESHOLD:3mb}" if [ ! -e config/config.inc.php ]; then ROUNDCUBEMAIL_DES_KEY=`head /dev/urandom | base64 | head -c 24` touch config/config.inc.php echo "Write root config to $PWD/config/config.inc.php" echo " config/config.inc.php elif ! grep -q "config.docker.inc.php" config/config.inc.php; then echo "include(__DIR__ . '/config.docker.inc.php');" >> config/config.inc.php fi ROUNDCUBEMAIL_PLUGINS_PHP=`echo "${ROUNDCUBEMAIL_PLUGINS}" | sed -E "s/[, ]+/', '/g"` echo "Write Docker config to $PWD/config/config.docker.inc.php" echo " config/config.docker.inc.php if [ -e /run/secrets/roundcube_des_key ]; then ROUNDCUBEMAIL_DES_KEY=`cat /run/secrets/roundcube_des_key` echo "\$config['des_key'] = '${ROUNDCUBEMAIL_DES_KEY}';" >> config/config.docker.inc.php fi # include custom config files for fn in `ls /var/roundcube/config/*.php 2>/dev/null || true`; do echo "include('$fn');" >> config/config.docker.inc.php done # initialize or update DB bin/initdb.sh --dir=$PWD/SQL --create || bin/updatedb.sh --dir=$PWD/SQL --package=roundcube || echo "Failed to initialize database. Please run $PWD/bin/initdb.sh and $PWD/bin/updatedb.sh manually." if [ ! -z "${ROUNDCUBEMAIL_TEMP_DIR}" ]; then mkdir -p ${ROUNDCUBEMAIL_TEMP_DIR} && chown www-data ${ROUNDCUBEMAIL_TEMP_DIR} fi if [ ! -z "${ROUNDCUBEMAIL_UPLOAD_MAX_FILESIZE}" ]; then echo "upload_max_filesize=${ROUNDCUBEMAIL_UPLOAD_MAX_FILESIZE}" >> /usr/local/etc/php/conf.d/roundcube-override.ini echo "post_max_size=${ROUNDCUBEMAIL_UPLOAD_MAX_FILESIZE}" >> /usr/local/etc/php/conf.d/roundcube-override.ini fi : "${ROUNDCUBEMAIL_LOCALE:=en_US.UTF-8 UTF-8}" if [ -e /usr/sbin/locale-gen ] && [ ! -z "${ROUNDCUBEMAIL_LOCALE}" ]; then echo "${ROUNDCUBEMAIL_LOCALE}" > /etc/locale.gen /usr/sbin/locale-gen fi fi exec "$@"