From 39bff56f9b32ea626b74b3462352786cae59c72a Mon Sep 17 00:00:00 2001 From: "Suren A. Chilingaryan" Date: Wed, 25 Sep 2019 05:27:06 +0200 Subject: Update and small modification for OpenShift --- content/etc/davmail/davmail.properties.template | 2 +- content/opt/davmail/entrypoint.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'content') diff --git a/content/etc/davmail/davmail.properties.template b/content/etc/davmail/davmail.properties.template index 4c36fd6..1b8ad39 100644 --- a/content/etc/davmail/davmail.properties.template +++ b/content/etc/davmail/davmail.properties.template @@ -103,7 +103,7 @@ davmail.smtpSaveInSent=true # log file path, leave empty for default path #davmail.logFilePath=/var/log/davmail.log -davmail.logFilePath=/dev/null +davmail.logFilePath=/dev/stdout # maximum log file size, use Log4J syntax, set to 0 to use an external rotation mechanism, e.g. logrotate #davmail.logFileSize=1MB davmail.logFileSize=0 diff --git a/content/opt/davmail/entrypoint.sh b/content/opt/davmail/entrypoint.sh index 150cb49..518bb1d 100755 --- a/content/opt/davmail/entrypoint.sh +++ b/content/opt/davmail/entrypoint.sh @@ -4,10 +4,10 @@ CONFIG=${1:-/etc/davmail/davmail.properties} if [ -n "$DAVMAIL_CONFIG_URL" ]; then - CONFIG=$HOME/davmail.properties + CONFIG=/tmp/davmail.properties wget -qO $CONFIG "$DAVMAIL_CONFIG_URL" elif [ -n "$DAVMAIL_URL" ]; then - CONFIG=$HOME/davmail.properties + CONFIG=/tmp/davmail.properties while read line; do eval echo "$line" done < /etc/davmail/davmail.properties.template > $CONFIG -- cgit v1.2.1