mirror of
https://gitlab.opencode.de/bmi/opendesk/deployment/opendesk.git
synced 2025-12-06 07:21:36 +01:00
24 lines
636 B
Go Template
24 lines
636 B
Go Template
# SPDX-FileCopyrightText: 2023 Bundesministerium des Innern und für Heimat, PG ZenDiS "Projektgruppe für Aufbau ZenDiS"
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
---
|
|
smtp:
|
|
host: ""
|
|
port: 587
|
|
username: ""
|
|
password: {{ env "SMTP_PASSWORD" | quote }}
|
|
localpartNoReply: "no-reply"
|
|
|
|
# For the following settings to have effect `apps.dkimpy.enabled` must be `true`.
|
|
dkim:
|
|
key:
|
|
# DKIM private key as plaintext value.
|
|
value: ""
|
|
|
|
# DKIM private key from existing secret. As a higher precedence than the plain `value`.
|
|
secret:
|
|
name: ""
|
|
key: ""
|
|
selector: "rsa"
|
|
useED25519: false
|
|
...
|