mirror of
https://github.com/YunoHost-Apps/gitea_ynh.git
synced 2024-09-03 20:36:22 +02:00
Use smtp with starttls (not smtps)
When we use smtps+starttls we have this error : gomail: could not send email 1: SMTP server does not support AUTH, but credentials provided
This commit is contained in:
parent
7e2809de42
commit
a315e28309
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,7 @@ LFS_JWT_SECRET = __LFS_JWT_SECRET__
|
||||||
ENABLED = true
|
ENABLED = true
|
||||||
SMTP_ADDR = __DOMAIN__
|
SMTP_ADDR = __DOMAIN__
|
||||||
SMTP_PORT = 587
|
SMTP_PORT = 587
|
||||||
PROTOCOL = smtps+starttls
|
PROTOCOL = smtp+starttls
|
||||||
FROM = "Gitea" <__APP__-noreply@__DOMAIN__>
|
FROM = "Gitea" <__APP__-noreply@__DOMAIN__>
|
||||||
USER = __APP__
|
USER = __APP__
|
||||||
PASSWD = __MAIL_PWD__
|
PASSWD = __MAIL_PWD__
|
||||||
|
|
Loading…
Add table
Reference in a new issue