feat(mail): ✨ Update mailer configuration and add credentials
Enhances the mailer setup by updating SMTP details to use secure connection and new credentials. Adds a reference to secret key for email password, improving security for email communication.
This commit is contained in:
parent
c87a920b74
commit
2e57ab463e
1 changed files with 10 additions and 4 deletions
|
@ -85,6 +85,11 @@ gitea:
|
||||||
secretKeyRef:
|
secretKeyRef:
|
||||||
name: elasticsearch-cloud-credentials
|
name: elasticsearch-cloud-credentials
|
||||||
key: connection-string
|
key: connection-string
|
||||||
|
- name: FORGEJO__mailer__PASSWD
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: email-user-credentials
|
||||||
|
key: password
|
||||||
|
|
||||||
admin:
|
admin:
|
||||||
existingSecret: gitea-credential
|
existingSecret: gitea-credential
|
||||||
|
@ -130,10 +135,11 @@ gitea:
|
||||||
|
|
||||||
mailer:
|
mailer:
|
||||||
ENABLED: true
|
ENABLED: true
|
||||||
FROM: forgejo@{{{ .Env.DOMAIN_GITEA }}}
|
USER: ipcei-cis-devfw@mms-support.de
|
||||||
PROTOCOL: smtp
|
PROTOCOL: smtps
|
||||||
SMTP_ADDR: mailhog.mailhog.svc.cluster.local
|
FROM: '"IPCEI CIS DevFW" <ipcei-cis-devfw@mms-support.de>'
|
||||||
SMTP_PORT: 1025
|
SMTP_ADDR: mail.mms-support.de
|
||||||
|
SMTP_PORT: 465
|
||||||
|
|
||||||
service:
|
service:
|
||||||
ssh:
|
ssh:
|
||||||
|
|
Loading…
Reference in a new issue