Auto saved by Logseq

This commit is contained in:
matze 2023-02-20 15:09:00 +01:00
parent f82c3a4577
commit 34067d94ef

View File

@ -182,4 +182,34 @@
query = SELECT 'smtp:127.0.0.1:20381' FROM custom_domain WHERE domain = '%s' AND verified=true
UNION SELECT 'smtp:127.0.0.1:20381' WHERE '%s' = 'mydomain.com' LIMIT 1;
```
- ``simplelogin.env``
- ``simplelogin.env``
```
# WebApp URL
URL=http://simplelogin.mexl.de
# domain used to create alias
EMAIL_DOMAIN=mexl.de
# transactional email is sent from this email address
SUPPORT_EMAIL=support@mexl.de
# custom domain needs to point to these MX servers
EMAIL_SERVERS_WITH_PRIORITY=[(10, "simplelogin.mexl.de")]
# By default, new aliases must end with ".{random_word}". This is to avoid a person taking all "nice" aliases.
# this option doesn't make sense in self-hosted. Set this variable to disable this option.
DISABLE_ALIAS_SUFFIX=1
# the DKIM private key used to compute DKIM-Signature
DKIM_PRIVATE_KEY_PATH=/dkim.key
# DB Connection
DB_URI=postgresql://:mypassword@sl-db:5432/simplelogin
FLASK_SECRET=put_something_secret_here
GNUPGHOME=/sl/pgp
LOCAL_FILE_UPLOAD=1
```