| 1 |
<?xml version="1.0"?> |
|---|
| 2 |
<config> |
|---|
| 3 |
<!-- username to use. Leave empty to not require a username --> |
|---|
| 4 |
<username>dirkl</username> |
|---|
| 5 |
|
|---|
| 6 |
<!-- the password for the username --> |
|---|
| 7 |
<password>gestern</password> |
|---|
| 8 |
|
|---|
| 9 |
<!-- The url that you want the server to listen on. This has to be set on the mobile as well. example: "/" --> |
|---|
| 10 |
<url>/</url> |
|---|
| 11 |
|
|---|
| 12 |
<!-- The port where to listen. This has to be set on the mobile as well. --> |
|---|
| 13 |
<port>8080</port> |
|---|
| 14 |
|
|---|
| 15 |
<!-- If wbxml is enabled, defines wether the wbxml should use string tables --> |
|---|
| 16 |
<usestringtable>0</usestringtable> |
|---|
| 17 |
|
|---|
| 18 |
<!-- Never send ADD command, but send REPLACE (not needed normally) --> |
|---|
| 19 |
<onlyreplace>0</onlyreplace> |
|---|
| 20 |
|
|---|
| 21 |
<!-- Workaround around for mobile phones which only use local timestamps and _no_ UTC timestamps! --> |
|---|
| 22 |
<onlyLocaltime>0</onlyLocaltime> |
|---|
| 23 |
|
|---|
| 24 |
<!-- Sets the maximum allowed size in bytes of incoming messages (some device need this option set). Example: 10000 --> |
|---|
| 25 |
<recvLimit>0</recvLimit> |
|---|
| 26 |
|
|---|
| 27 |
<maxObjSize>0</maxObjSize> |
|---|
| 28 |
|
|---|
| 29 |
<!-- Contact database --> |
|---|
| 30 |
<database> |
|---|
| 31 |
<name>Contacts</name> |
|---|
| 32 |
<objtype>contact</objtype> |
|---|
| 33 |
<objformat>vcard21</objformat> |
|---|
| 34 |
</database> |
|---|
| 35 |
|
|---|
| 36 |
<!-- Calendar database --> |
|---|
| 37 |
<database> |
|---|
| 38 |
<name>Calendar</name> |
|---|
| 39 |
<objtype>event</objtype> |
|---|
| 40 |
<objformat>vevent20</objformat> |
|---|
| 41 |
</database> |
|---|
| 42 |
|
|---|
| 43 |
<!-- Note database --> |
|---|
| 44 |
<database> |
|---|
| 45 |
<name>Notes</name> |
|---|
| 46 |
<objtype>note</objtype> |
|---|
| 47 |
<objformat>vnote11</objformat> |
|---|
| 48 |
</database> |
|---|
| 49 |
|
|---|
| 50 |
</config> |
|---|