feat(helmfile): Introduce additional variables for mailDomain and synapseDomain

This commit is contained in:
Dominik Kaminski
2024-04-24 21:27:51 +02:00
parent 7cb2c2261b
commit e6fe2a7c18
7 changed files with 25 additions and 10 deletions

View File

@@ -77,18 +77,27 @@ or via environment variable
export DOMAIN=my.open.desk
```
If the mail domain differs from the domain, the mail
domain has to be set either via `dev` environment
Additionally, you can announce/specify an alternative Domain for mail and chat.
As example, your domain is `acme.tld` and you want to send mails with this domain, then you can deploy openDesk to
`*.opendesk.acme.tld` and send mail as `default.user@acme.tld`.
Webmail will be accessed via `mail.opendesk.acme.tld` in this scenario.
The required routing have to be implemented by yourself.
Users
The alternative domains have to be set either via `dev` environment
```yaml
global:
mail_domain: "open.desk"
mailDomain: "open.desk"
synapseDomain: "open.desk"
```
or via environment variable
```shell
export MAIL_DOMAIN=open.desk
export SYNAPSE_DOMAIN=open.desk
```
### Apps