mirror of
https://gitlab.opencode.de/bmi/opendesk/deployment/opendesk.git
synced 2025-12-06 15:31:38 +01:00
35 lines
979 B
Go Template
35 lines
979 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
|
|
|
|
security:
|
|
# Postfix defaults
|
|
# Ref.: https://www.postfix.org/postconf.5.html#smtpd_sasl_security_options
|
|
smtpdSASLSecurityOptions:
|
|
- "noanonymous"
|
|
# Postfix defaults
|
|
# Ref.: https://www.postfix.org/postconf.5.html#smtp_sasl_security_options
|
|
smtpSASLSecurityOptions:
|
|
- "noanonymous"
|
|
- "noplaintext"
|
|
...
|