Kumi
b5c816e748
Sets up a Django application for user registration with Synapse, including database models, forms, views, and templates. Introduces functionality for user registration approval and email verification. Configures Django project settings, URLs, and email handling. Includes a sample configuration file and .gitignore additions.
14 lines
No EOL
342 B
YAML
14 lines
No EOL
342 B
YAML
synapse:
|
|
admin_token: syt_your_admin_token
|
|
server: https://matrix.your.server
|
|
domain: your.server # i.e. the part after the : in your matrix ID
|
|
hosts:
|
|
- register.matrix.your.server
|
|
email:
|
|
host: mail.your.server
|
|
port: 587
|
|
username: registrations@your.server
|
|
password: your_password
|
|
tls: true
|
|
admin:
|
|
email: admin@your.server |