]> code.delx.au - pymsnt/blob - config-example.xml
Google Talk fixes
[pymsnt] / config-example.xml
1 <pymsnt>
2 <!-- This file contains options to be configured by the server administrator. -->
3 <!-- Please read through all the options in this file -->
4
5 <!-- The JabberID of the transport -->
6 <jid>msn</jid>
7 <!-- The public IP or DNS name of the machine the transport is running on -->
8 <host>127.0.0.1</host>
9 <!-- The component JID of the transport. Unless you're doing clustering, leave this alone -->
10 <!-- <compjid>msn1</compjid> -->
11 <!-- The name of the transport in the service discovery list. -->
12 <!-- <discoName>MSN Transport</discoName> -->
13
14
15 <!-- The location of the spool directory.. if relative, relative to the PyMSNt dir.
16 Do not include the jid of the transport -->
17 <!-- <spooldir>/path/to/data</spooldir> -->
18 <!-- The location of the PID file, relative to the PyMSNt directory -->
19 <pid>PyMSNt.pid</pid>
20 <!-- If set, the transport will background itself when run -->
21 <background/>
22 <!-- The Twisted reactor to choose. Pick poll or epoll on Linux, kqueue on BSD. Or leave as default (select) -->
23 <!-- <reactor>poll</reactor> -->
24
25
26 <!-- The IP address of the main Jabber server to connect to -->
27 <mainServer>127.0.0.1</mainServer>
28 <!-- The TCP port to connect to the Jabber server on (this is the default for Jabberd2) -->
29 <port>5347</port>
30 <!-- The authentication token to use when connecting to the Jabber server -->
31 <secret>secret</secret>
32 <!-- Use Jabber.com's XCP component protocol extensions. -->
33 <!-- <useXCP/> -->
34
35
36 <!-- The default language to use -->
37 <lang>en</lang>
38 <!-- The website of the Jabber service -->
39 <website>http://host.com</website>
40
41
42 <!-- Comment out the following options to disable them, or uncomment them to enable them -->
43 <!-- Send email notification messages to users -->
44 <mailNotifications/>
45 <!-- Send greeting on login -->
46 <!-- <sessionGreeting>You have just started a session with PyMSNt</sessionGreeting> -->
47 <!-- Send message on successful registration -->
48 <!-- <registerMessage>You have successfully registered with PyMSNt</registerMessage> -->
49 <!-- Allow users to register with this transport -->
50 <allowRegister/>
51 <!-- Get all avatars. If this is set to true then avatars are grabbed for all your contacts immediately. If false then avatars are only grabbed when you're in a chat with a contact -->
52 <getAllAvatars/>
53 <!-- The amount of time a user has to join a groupchat they are invited to before the transport makes them leave the room. (MSN protocol requires autojoining of groupchats) -->
54 <!-- <groupchatTimeout>120</groupchatTimeout> -->
55
56
57 <!-- File transfer settings -->
58 <!-- The maximum size of a file transfer (in bytes). For unlimited, comment out, or set to 0 -->
59 <ftSizeLimit>524288</ftSizeLimit>
60 <!-- The maximum rate for file transfer (in bytes). For unlimited, comment out, or set to 0 -->
61 <ftRateLimit>2048</ftRateLimit>
62 <!-- Please give the port to listen for Jabber socks5 transfers on. -->
63 <ftJabberPort>8010</ftJabberPort>
64 <!-- Please give the port to listen for HTTP GETs here (Used in OOB file transfers). -->
65 <!--<ftOOBPort>8011</ftOOBPort>-->
66 <!-- Please give the root URL the transport should send to clients. (You can use an Apache reverse proxy to put this on your ordinary website) -->
67 <!--<ftOOBRoot>http://host.com/msn/files/</ftOOBRoot>-->
68
69 <!-- You can choose which users you wish to have as administrators. These users can perform some tasks with Ad-Hoc commands that others cannot -->
70 <!--<admins>
71 <jid>admin@host.com</jid>
72 </admins>-->
73
74
75 <!-- Log settings -->
76
77 <!-- The logging level
78 0 -> No logging
79 1 -> Log tracebacks
80 2 -> Log tracebacks, warnings and errors
81 3 -> Log everything -->
82 <!-- <debugLevel>0</debugLevel> -->
83
84 <!-- The file to log to. Leave this disabled for stdout -->
85 <!-- <debugFile>debug.log</debugFile> -->
86
87 </pymsnt>