]> git.evergreen-ils.org Git - Evergreen.git/blob - OpenSRF/src/gateway/gateway.xml.example
added the setting for unixpath
[Evergreen.git] / OpenSRF / src / gateway / gateway.xml.example
1 <!-- Bootstrap config file for the C opensrf_stack library -->
2 <config>
3         <bootstrap>
4                 <!-- log level (WARN, INFO, DEBUG) -->
5                 <debug>INFO</debug>
6
7                 <!-- best to leave this untouched if possible -->
8                 <router_name>router</router_name>
9
10                 <!-- jabber domains to connect to (domain1, domain2, ...) -->
11                 <domains>
12                         <domain1>host.example.com</domain1>
13                 </domains>
14
15                 <!-- jabber connection information. Note that unix socket connectes are
16                                 not yet implemented with any of the C libraries so port will 
17                                 have to be a port number -->
18                 <username>my_jabber_login</username>
19                 <passwd>my_jabber_password</passwd>
20                 <port>5222</port>
21                 <unixpath>/path/to/unix_sock_file</unixpath>
22
23         </bootstrap>
24
25         <!-- log file location -->
26         <logs>
27                 <client>/path/to/log/gateway.log</client>
28         </logs>
29
30 </config>