Ticket #666: syncml-obex-client.conf

File syncml-obex-client.conf, 2.0 kB (added by marcusb, 10 months ago)

syncml-obex-client.conf

Line 
1 <?xml version="1.0"?>
2 <config>
3   <!-- (Only for bluetooth) The bluetooth address if the bluetooth mode is selected -->
4   <bluetooth_address>00:12:EE:99:90:12</bluetooth_address>
5  
6   <!-- (Only for bluetooth) The bluetooth channel to use. `sdptool browse $MAC` to search for the correct channel -->
7   <bluetooth_channel>8</bluetooth_channel>
8  
9   <!-- (Only for USB) The usb interface number of the SYNCML-SYNC target. use syncml-obex-client -u (you will need access to the USB raw device) to find it. -->
10   <interface>0</interface>
11  
12   <!-- The string that the plugin will use to identify itself. Some devices need a special string here. -->
13   <identifier>Sony Ericss</identifier>
14  
15   <!-- The syncml version to use: 0 for 1.0, 1 for 1.1 and 2 for 1.2 -->
16   <version>1</version>
17  
18   <!-- if the plugin should use wbxml -->
19   <wbxml>1</wbxml>
20  
21   <!-- The username to use. Leave empty to not require a username -->
22   <username></username>
23  
24   <!-- the password for the username -->
25   <password></password>
26  
27   <!-- sets the connection type to use. 5 means obex over usb, 2 means obex over bluetooth -->
28   <type>2</type>
29  
30   <!-- If wbxml is enabled, defines wether the wbxml should use string tables -->
31   <usestringtable>0</usestringtable>
32  
33   <!-- Never send ADD command, but send REPLACE (not needed normally) -->
34   <onlyreplace>0</onlyreplace>
35
36   <!-- Workaround around for mobile phones which only use local timestamps and _no_ UTC timestamps! -->
37   <onlyLocaltime>0</onlyLocaltime>
38  
39   <!-- Sets the maximum allowed size in bytes of incoming messages (some device need this option set). Example: 10000 -->
40   <recvLimit>0</recvLimit>
41  
42   <maxObjSize>0</maxObjSize>
43  
44   <!-- XXX: Currently you need to write this by your own.
45        Later it's planned to create such entries on the fly during
46        the discovery() call. Example database field:
47   -->
48
49   <database>
50      <name>Contacts</name>
51      <objtype>contact</objtype>
52      <objformat>vcard30</objformat>
53   </database>
54  
55 </config>