-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move configuration variables from docker-compose.yaml into a dedicate…
…d file.
- Loading branch information
Showing
4 changed files
with
45 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
mailman.cfg |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Please set these as explained in README.md | ||
SERVE_FROM_DOMAIN= | ||
MAILMAN_ADMIN_USER= | ||
MAILMAN_ADMIN_EMAIL= | ||
|
||
# only use URL safe characters for the secrets, else you will break at least the DATABASE_URL | ||
# i.e. do not use blanks ; / ? : @ = & < > # % { } | \ ^ ~ [ ] ` | ||
# you can use a commandline like `openssl rand -hex 24` to generate pseudo-random values for these secrets | ||
HYPERKITTY_API_KEY= | ||
POSTGRES_PASSWORD= | ||
DJANGO_SECRET_KEY= | ||
|
||
# you might want to change the timezone to your local one | ||
TZ=UTC | ||
|
||
# likely, you don't need to change these: | ||
DATABASE_URL_SCHEMA=postgresql | ||
DATABASE_TYPE=postgres | ||
DATABASE_CLASS=mailman.database.postgresql.PostgreSQLDatabase | ||
POSTGRES_DB=mailmandb | ||
POSTGRES_USER=mailman | ||
|