| 1 |
Groupname: Mob |
|---|
| 2 |
Member 1: syncml-http-server |
|---|
| 3 |
Configuration : <?xml version="1.0"?> |
|---|
| 4 |
<config> |
|---|
| 5 |
<!-- username to use. Leave empty to not require a username --> |
|---|
| 6 |
<username>hadmut</username> |
|---|
| 7 |
|
|---|
| 8 |
<!-- the password for the username --> |
|---|
| 9 |
<password>aabbcc</password> |
|---|
| 10 |
|
|---|
| 11 |
<!-- The url that you want the server to listen on. This has to be set on the mobile as well. example: "/" --> |
|---|
| 12 |
<url>/a</url> |
|---|
| 13 |
|
|---|
| 14 |
<!-- The port where to listen. This has to be set on the mobile as well. --> |
|---|
| 15 |
<port>8001</port> |
|---|
| 16 |
|
|---|
| 17 |
<!-- If wbxml is enabled, defines wether the wbxml should use string tables --> |
|---|
| 18 |
<usestringtable>0</usestringtable> |
|---|
| 19 |
|
|---|
| 20 |
<!-- Never send ADD command, but send REPLACE (not needed normally) --> |
|---|
| 21 |
<onlyreplace>0</onlyreplace> |
|---|
| 22 |
|
|---|
| 23 |
<!-- Workaround around for mobile phones which only use local timestamps and _no_ UTC timestamps! --> |
|---|
| 24 |
<onlyLocaltime>0</onlyLocaltime> |
|---|
| 25 |
|
|---|
| 26 |
<!-- Sets the maximum allowed size in bytes of incoming messages (some device need this option set). Example: 10000 --> |
|---|
| 27 |
<recvLimit>0</recvLimit> |
|---|
| 28 |
|
|---|
| 29 |
<maxObjSize>0</maxObjSize> |
|---|
| 30 |
|
|---|
| 31 |
<!-- The name of the contacts db. Must be the same as the phones sends --> |
|---|
| 32 |
<contact_db>contacts</contact_db> |
|---|
| 33 |
|
|---|
| 34 |
<!-- The name of the calendar db. Must be the same as the phones sends --> |
|---|
| 35 |
<calendar_db>calendar</calendar_db> |
|---|
| 36 |
|
|---|
| 37 |
<!-- The name of the note db. Must be the same as the phones sends --> |
|---|
| 38 |
<note_db>notes</note_db> |
|---|
| 39 |
</config> |
|---|
| 40 |
|
|---|
| 41 |
Member 2: file-sync |
|---|
| 42 |
Configuration : <?xml version="1.0"?> |
|---|
| 43 |
<config> |
|---|
| 44 |
<!-- directory path for file-sync --> |
|---|
| 45 |
<path>/tmp/adressen</path> |
|---|
| 46 |
|
|---|
| 47 |
<!-- should care of subdirectories (TRUE or FALSE) --> |
|---|
| 48 |
<recursive>FALSE</recursive> |
|---|
| 49 |
</config> |
|---|