230
|
1 #!/usr/bin/python |
|
2 #-*- coding: utf-8 -*- |
|
3 # Copyright (c) 2003-2008 Ralph Meijer |
|
4 # See LICENSE for details. |
|
5 |
|
6 """ |
|
7 Example TAC for SàT Pubsub. |
|
8 """ |
|
9 |
|
10 from twisted.application import service |
|
11 from twisted.words.protocols.jabber.jid import JID |
|
12 |
|
13 from idavoll import tap |
|
14 |
|
15 application = service.Application("sat_pubsub") |
|
16 |
|
17 config = { |
|
18 'jid': JID('sat-pubsub.necton3.int'), |
|
19 'secret': 'pass', |
|
20 'rhost': '127.0.0.1', |
|
21 'rport': 5347, |
|
22 'backend': 'pgsql', |
|
23 'dbuser': 'goffi', |
|
24 'dbpass': 'toto', |
|
25 'dbname': "pubsub", |
|
26 'dbhost': "localhost", |
|
27 'dbport': None, |
|
28 'verbose': True, |
|
29 'hide-nodes': False, |
|
30 } |
|
31 |
|
32 idavollService = tap.makeService(config) |
|
33 idavollService.setServiceParent(application) |
|
34 |
|
35 # Set the maximum delay until trying to reconnect. |
|
36 componentService = idavollService.getServiceNamed('component') |
|
37 componentService.factory.maxdelay = 300 |