generated from coop-cloud/example
feat: smtp port #5
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "smtp-port"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
my server is starttls so i needed 587
@ -4,3 +4,3 @@
export SYMFONY__ENV__SECRET=$(cat $SYMFONY__ENV__SECRET_FILE)
export SYMFONY__ENV__MAILER_DSN=smtp://${SYMFONY__ENV__MAILER_USER}:$(cat ${SYMFONY__ENV__MAILER_PASSWORD_FILE})@${SYMFONY__ENV__MAILER_HOST}:465
export SYMFONY__ENV__MAILER_DSN=smtp://${SYMFONY__ENV__MAILER_USER}:$(cat ${SYMFONY__ENV__MAILER_PASSWORD_FILE})@${SYMFONY__ENV__MAILER_HOST}:${SYMFONY__ENV__MAILER_PORT}
Could we maybe do
${SYMFONY__ENV__MAILER_PORT:-465}
for backwards compatibility?LGTM.
https://git.coopcloud.tech/coop-cloud/wallabag/pulls/5/files#issuecomment-23259 seems like a great idea too.
LGTM
Checkout
From your project repository, check out a new branch and test the changes.