Skip to content

Commit

Permalink
Remove the conf JID, and have everything under the main one.
Browse files Browse the repository at this point in the history
  • Loading branch information
ZeWaren committed Mar 6, 2016
1 parent a8be28f commit 8d1845d
Show file tree
Hide file tree
Showing 5 changed files with 218 additions and 249 deletions.
2 changes: 0 additions & 2 deletions README.md
Expand Up @@ -92,8 +92,6 @@ Please look at the comments in the provided example config file for information
hosts:
"hangups.example.net":
password: "secret"
"conf.hangups.example.net":
password: "secret"
</pre>

### Startup
Expand Down
2 changes: 1 addition & 1 deletion __main__.py
Expand Up @@ -104,7 +104,7 @@ def sig_handler(signum, frame):
connection = xmpp.client.Component(config.jid,
config.port,
debug=[],
domains=[config.jid, config.confjid],
domains=[config.jid],
sasl=sasl,
bind=config.useComponentBinding,
route=config.useRouteWrap)
Expand Down
1 change: 0 additions & 1 deletion config.py
Expand Up @@ -4,7 +4,6 @@
pidFile = ""

jid = "hangups.example.net"
confjid = "conf.hangups.example.net"
discoName = "Hangouts Transport"

mainServer = "127.0.0.1"
Expand Down
3 changes: 0 additions & 3 deletions config.xml
Expand Up @@ -6,9 +6,6 @@
<!-- The JabberID of the transport -->
<jid>hangups.example.net</jid>

<!-- The conference JabberID of the transport -->
<confjid>conf.hangups.example.net</confjid>

<!-- The name of the transport in the service discovery list. -->
<discoName>Google Hangouts Transport</discoName>

Expand Down

0 comments on commit 8d1845d

Please sign in to comment.