Commit 25d61d7a4d3230c142c3bf9a4a392680b0f1b520

Authored by Sergio Oliveira
1 parent 39b167a4

Allowing XMPP auto registration

Showing 1 changed file with 3 additions and 1 deletions   Show diff stats
src/colab/custom_settings.py
@@ -98,7 +98,7 @@ LOGGING = { @@ -98,7 +98,7 @@ LOGGING = {
98 'handlers': ['sentry', 'console'], 98 'handlers': ['sentry', 'console'],
99 'level': 'DEBUG', 99 'level': 'DEBUG',
100 }, 100 },
101 - 'boshclient': { 101 + 'conversejs': {
102 'handlers': ['console'], 102 'handlers': ['console'],
103 'level': 'DEBUG', 103 'level': 'DEBUG',
104 }, 104 },
@@ -182,6 +182,8 @@ REVPROXY_ADD_REMOTE_USER = True @@ -182,6 +182,8 @@ REVPROXY_ADD_REMOTE_USER = True
182 # This URL must use SSL in order to keep chat sessions secure 182 # This URL must use SSL in order to keep chat sessions secure
183 CONVERSEJS_BOSH_SERVICE_URL = SITE_URL + '/http-bind' 183 CONVERSEJS_BOSH_SERVICE_URL = SITE_URL + '/http-bind'
184 184
  185 +CONVERSEJS_AUTO_REGISTER = 'mensageiro.interlegis.gov.br'
  186 +
185 try: 187 try:
186 from local_settings import * 188 from local_settings import *
187 except ImportError: 189 except ImportError: