Fix Forgejo IONOS SMTP: STARTTLS on smtp.ionos.de
Use PROTOCOL=smtp+starttls with the EU relay (smtp.ionos.de). Port 587 with implicit TLS on smtp.ionos.com failed TLS handshake; .com auth also fails for EU mailboxes. Document OpenBao PASSWD field mapping in operator docs.
This commit is contained in:
parent
d61173d66e
commit
3e211a1cb4
2 changed files with 8 additions and 7 deletions
|
|
@ -98,9 +98,9 @@ gitea:
|
||||||
mailer:
|
mailer:
|
||||||
ENABLED: true
|
ENABLED: true
|
||||||
FROM: forgejo@coulomb.social
|
FROM: forgejo@coulomb.social
|
||||||
MAILER_TYPE: smtp
|
PROTOCOL: smtp+starttls
|
||||||
HOST: smtp.ionos.com:587 # or smtp.ionos.de:587 for EU accounts
|
SMTP_ADDR: smtp.ionos.de # EU IONOS mailboxes; use smtp.ionos.com for US
|
||||||
IS_TLS_ENABLED: true
|
SMTP_PORT: 587
|
||||||
USER: forgejo@coulomb.social
|
USER: forgejo@coulomb.social
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
@ -109,7 +109,7 @@ Mailbox password is stored in **OpenBao** and delivered by External Secrets:
|
||||||
| Item | Value |
|
| Item | Value |
|
||||||
| --- | --- |
|
| --- | --- |
|
||||||
| OpenBao path | `platform/workloads/forgejo/forgejo-mailer` |
|
| OpenBao path | `platform/workloads/forgejo/forgejo-mailer` |
|
||||||
| Field | `MAILER_PASSWD` |
|
| Field | `PASSWD` (synced to Secret key `MAILER_PASSWD`) |
|
||||||
| ExternalSecret | `manifests/forgejo-mailer-externalsecret.yaml` |
|
| ExternalSecret | `manifests/forgejo-mailer-externalsecret.yaml` |
|
||||||
| Helm consumption | `gitea.additionalConfigFromEnvs` → `GITEA__mailer__PASSWD` |
|
| Helm consumption | `gitea.additionalConfigFromEnvs` → `GITEA__mailer__PASSWD` |
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -59,9 +59,10 @@ gitea:
|
||||||
mailer:
|
mailer:
|
||||||
ENABLED: true
|
ENABLED: true
|
||||||
FROM: forgejo@coulomb.social
|
FROM: forgejo@coulomb.social
|
||||||
MAILER_TYPE: smtp
|
# IONOS submission port 587 uses STARTTLS, not implicit TLS (smtps).
|
||||||
HOST: smtp.ionos.com:587
|
PROTOCOL: smtp+starttls
|
||||||
IS_TLS_ENABLED: true
|
SMTP_ADDR: smtp.ionos.de
|
||||||
|
SMTP_PORT: 587
|
||||||
USER: forgejo@coulomb.social
|
USER: forgejo@coulomb.social
|
||||||
actions:
|
actions:
|
||||||
ENABLED: true
|
ENABLED: true
|
||||||
Loading…
Add table
Add a link
Reference in a new issue