feat: Add support to load username from file
This commit is contained in:
committed by
Juan Luis Baptiste
parent
543ac4aa8d
commit
8011cddf8a
3
run.sh
3
run.sh
@@ -13,8 +13,9 @@ function add_config_value() {
|
||||
postconf -e "${key} = ${value}"
|
||||
}
|
||||
|
||||
# Read password from file to avoid unsecure env variables
|
||||
# Read password and username from file to avoid unsecure env variables
|
||||
if [ -n "${SMTP_PASSWORD_FILE}" ]; then [ -f "${SMTP_PASSWORD_FILE}" ] && read SMTP_PASSWORD < ${SMTP_PASSWORD_FILE} || echo "SMTP_PASSWORD_FILE defined, but file not existing, skipping."; fi
|
||||
if [ -n "${SMTP_USERNAME_FILE}" ]; then [ -f "${SMTP_USERNAME_FILE}" ] && read SMTP_USERNAME < ${SMTP_USERNAME_FILE} || echo "SMTP_USERNAME_FILE defined, but file not existing, skipping."; fi
|
||||
|
||||
[ -z "${SMTP_SERVER}" ] && echo "SMTP_SERVER is not set" && exit 1
|
||||
[ -z "${SERVER_HOSTNAME}" ] && echo "SERVER_HOSTNAME is not set" && exit 1
|
||||
|
||||
Reference in New Issue
Block a user