Skip to content

Commit

Permalink
add missing parameters (#263)
Browse files Browse the repository at this point in the history
  • Loading branch information
dklimpel committed Jan 30, 2020
1 parent 9059eb2 commit c3186e6
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions sydent/sydent.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,16 +97,20 @@
'clientapi.http.bind_address': '::',
'clientapi.http.port': '8090',
# internalapi.http.bind_address defaults to '::1'
'internalapi.http.bind_address': '::1',
'internalapi.http.port': '',
'replication.https.certfile': '',
'replication.https.cacert': '', # This should only be used for testing
'replication.https.bind_address': '::',
'replication.https.port': '4434',
'obey_x_forwarded_for': 'False',
'federation.verifycerts': 'True',
'verify_response_template': '',
'client_http_base': '',
},
'email': {
'email.template': 'res/email.template',
'email.invite_template': 'res/invite.template',
'email.from': 'Sydent Validation <noreply@{hostname}>',
'email.subject': 'Your Validation Token',
'email.invite.subject': '%(sender_display_name)s has invited you to chat',
Expand All @@ -119,6 +123,8 @@
},
'sms': {
'bodyTemplate': 'Your code is {token}',
'username': '',
'password': '',
},
'crypto': {
'ed25519.signingkey': '',
Expand Down

0 comments on commit c3186e6

Please sign in to comment.