diff options
author | Florian Pritz <bluewind@xinu.at> | 2018-08-29 13:51:01 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2018-08-29 13:51:01 +0200 |
commit | 54e336be2cfa5c0298182d675b8ba785da850b52 (patch) | |
tree | 8c676dbf5d6fc029a068f2a6b7124e53b80dea55 /docker/filebin_starter.sh | |
parent | 20e317609d7c10923bbd257ef694963a473fce3d (diff) | |
parent | ece8a5d7e499f99c2171edbcf5e4dde455541912 (diff) |
Merge branch 'sebastianrakel-issue-8_docker_sendmail' into dev
Diffstat (limited to 'docker/filebin_starter.sh')
-rwxr-xr-x | docker/filebin_starter.sh | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/docker/filebin_starter.sh b/docker/filebin_starter.sh index 7f0b70d85..66f9a8b03 100755 --- a/docker/filebin_starter.sh +++ b/docker/filebin_starter.sh @@ -2,12 +2,29 @@ #set -euo pipefail +function set_mail_config() { +cat <<EOF > ${FILEBIN_HOME_DIR}/msmtprc +account filebinmail +tls on +tls_certcheck off +auth on +host ${FB_SMTP_HOST} +port ${FB_SMTP_PORT} +user ${FB_SMTP_USER} +from ${FB_SMTP_USER} +password ${FB_SMTP_PASSWORD} +EOF + +chmod 600 ${FILEBIN_HOME_DIR}/msmtprc +} + function set_config() { FB_ENCRYPTION_KEY=`< /dev/urandom tr -dc _A-Z-a-z-0-9 | head -c32` cat <<EOF >${FILEBIN_DIR}/application/config/config-local.php <?php \$config['base_url'] = 'http://127.0.0.1:8080/'; \$config['encryption_key'] = '${FB_ENCRYPTION_KEY}'; +\$config['email_from'] = '${FB_SMTP_USER}'; EOF } @@ -53,6 +70,7 @@ if [[ ! -e $FILEBIN_DIR/application/config/config-local.php ]]; then set_config set_database_config + set_mail_config CONTACT_INFO_FILE=${FILEBIN_DIR}/data/local/contact-info.php cp $FILEBIN_DIR/data/local/examples/contact-info.php ${CONTACT_INFO_FILE} |