Hello everyone,
I try to make greenlight send mails to users via an existing mail account.
I know my account information are correct (I send mails via python script with the credentials in another use case), but i cannot figure out the correct smtp entries for my mail provider in .env file:
ALLOW_MAIL_NOTIFICATIONS=true
SMTP_SENDER=mai...@gibt.de (should not really matter I guess)
SMTP_SERVER=alfa3216.alfahosting-server.de (works in Python script)
SMTP_PORT=465 (works in Python script)
SMTP_DOMAIN=gibt.de (not really sure but tried everything here)
SMTP_USERNAME=myloginname (works in Python script)
SMTP_PASSWORD=mypassword (works in Python script)
SMTP_AUTH=plain (works in Python script)
SMTP_STARTTLS_AUTO=false (tried both, false and true)
Everything I have tried results in the following:
docker run --rm --env-file .env bigbluebutton/greenlight:v2 bundle exec rake conf:check
Checking environment: Passed
Checking Connection: Passed
Checking Secret: Passed
Checking SMTP connection: Failed
Error connecting to SMTP - Net::ReadTimeout
Currently I am at a point where (I think) I have tried every possible combination and need to dig deeper.
Can anyone point me in the right direction on how I can get more verbose output?
I am new to ruby but can handle docker.