Content
You are here:
Email configuration with Docker all-in-one
Added by adrw adrw over 4 years ago
Hello, i haven't been able to yet successfully configure (Office365) outgoing email with a Docker all-in-one installation.
I have tried creating a custom file at /etc/openproject/conf.d/smtp
export EMAIL_DELIVERY_METHOD="smtp"
export SMTP_ADDRESS="smtp.office365.com"
export SMTP_PORT="587"
export SMTP_DOMAIN="redacted"
export SMTP_AUTHENTICATION="login"
export SMTP_USER_NAME="redacted"
export SMTP_PASSWORD="redacted"
export SMTP_ENABLE_STARTTLS_AUTO="true"
Restarted docker, docker restart openproject
no luck.
I also tried adding the config to /opt/openproject/config/configuration.yml
production:
email_delivery_method: "smtp"
smtp_enable_starttls_auto: true
smtp_address: "smtp.office365.com"
smtp_port: 587
smtp_authentication: "login"
smtp_domain: "redacted"
smtp_user_name: "redacted"
smtp_password: "redacted"
Restarted docker, docker restart openproject
no luck.
There is nothing "helpful" in the default logs docker logs -f --tail 1000 openproject
What/where am i going wrong, what am i missing?