fmartinou / whats-up-docker

What's up Docker ( aka WUD ) gets you notified when a new version of your Docker Container is available.
https://fmartinou.github.io/whats-up-docker
MIT License
939 stars 29 forks source link

Gmail SMTP not working... #338

Closed juanmanuelbc closed 6 months ago

juanmanuelbc commented 6 months ago

Anyone can help me finding the error in Gmail SMTP configuration?

imatge

This is the trigger configuration I have:

WUD_TRIGGER_SMTP_GMAIL_HOST=smtp.gmail.com
WUD_TRIGGER_SMTP_GMAIL_PORT=587
WUD_TRIGGER_SMTP_GMAIL_USER=xxx@gmail.com
WUD_TRIGGER_SMTP_GMAIL_PASS=y**************z
WUD_TRIGGER_SMTP_GMAIL_FROM=wud@xxx.es
WUD_TRIGGER_SMTP_GMAIL_TO=xxx@gmail.com
WUD_TRIGGER_SMTP_GMAIL_TLS_ENABLED=true
WUD_TRIGGER_SMTP_GMAIL_MODE=batch
WUD_TRIGGER_SMTP_GMAIL_SIMPLETITLE="New update found for container \${name}"
WUD_TRIGGER_SMTP_GMAIL_SIMPLEBODY="Container \${name} can be updated"

It was working for a long time, but several weeks ago it stopped working at all.

Updates available work great through API query.

No errors found in logs about Gmail SMTP.

Thanks...

juanmanuelbc commented 6 months ago

Tested with the following configuration and it's working again:

imatge

Trigger configuration:

WUD_TRIGGER_SMTP_GMAIL_HOST=smtp.gmail.com
WUD_TRIGGER_SMTP_GMAIL_PORT=465
WUD_TRIGGER_SMTP_GMAIL_USER=xxx@gmail.com
WUD_TRIGGER_SMTP_GMAIL_PASS=y**************z
WUD_TRIGGER_SMTP_GMAIL_FROM=wud@xxx.es
WUD_TRIGGER_SMTP_GMAIL_TO=xxx@gmail.com
WUD_TRIGGER_SMTP_GMAIL_TLS_ENABLED=true
WUD_TRIGGER_SMTP_GMAIL_SIMPLETITLE="New update found for container \${name}"
WUD_TRIGGER_SMTP_GMAIL_SIMPLEBODY="Container \${name} can be updated"

Thank you...