# the base URL of the SyncML server which is to be used for SyncML; # some examples: # - http://my.funambol.com/sync # - http://sync.scheduleworld.com/funambol/ds # - http://www.synthesis.ch/sync syncURL = http://sync.scheduleworld.com/funambol/ds # user name used for authorization with the SyncML server username = [yourusername] # password used for authorization with the SyncML server; # in addition to specifying it directly as plain text, it can # also be read from the standard input or from an environment # variable of your choice: # plain text: password = # ask: password = - # env variable: password = ${} password = [yourpassword] # full path to directory where automatic backups and logs # are stored for all synchronizations; if empty, the temporary # directory "$TMPDIR/SyncEvolution--" will # be used to keep the data of just the latest synchronization run; # if "none", then no backups of the databases are made and any # output is printed directly to the screen # logdir = # level of detail for log messages: # - 0 (or unset) = INFO messages without log file, DEBUG with log file # - 1 = only ERROR messages # - 2 = also INFO messages # - 3 = also DEBUG messages # loglevel = 0 # Unless this option is set, SyncEvolution will never delete # anything in the "logdir". If set, the oldest directories and # all their content will be removed after a successful sync # to prevent the number of log directories from growing beyond # the given limit. # maxlogdirs = 0 # set to T to enable an HTTP proxy useProxy = 0 # proxy URL (http://:) # proxyHost = # authentication for proxy: username # proxyUsername = # proxy password, can be specified in different ways, # see SyncML server password for details # proxyPassword = # - empty or "md5" for secure method (recommended) # - "basic" for insecure method # clientAuthType = syncml:auth-md5 # The SyncML server gets this string and will use it to keep track of # changes that still need to be synchronized with this particular # client; it must be set to something unique (like the pseudo-random # string created automatically for new configurations) among all clients # accessing the same server. # myFUNAMBOL also requires that the string starts with sc-pim- deviceId = sc-n900 # Support for large objects and limiting the message size was added in # SyncEvolution 0.5, but still disabled in the example configurations # of that version. Some servers had problems with that configuration, # so now both features are enabled by default and it is recommended # to update existing configurations. # # The maximum size of each message can be set (maxMsgSize) and the # server can be told to never sent items larger than a certain # threshold (maxObjSize). Presumably the server has to truncate or # skip larger items. Finally the client and server may be given the # permission to transmit large items in multiple messages (loSupport = # large object support). maxMsgSize = 0 # maxObjSize = 500000 # loSupport = 1 # enable compression of network traffic (not currently supported) # enableCompression = 0 # A string specifying the location of the certificates # used to authenticate the server. When empty, the # system's default location will be searched. # SSLServerCertificates = # The client refuses to establish the connection unless # the server presents a valid certificate. Disabling this # option considerably reduces the security of SSL # (man-in-the-middle attacks become possible) and is not # recommended. # SSLVerifyServer = 1 # The client refuses to establish the connection unless the # server's certificate matches its host name. In cases where # the certificate still seems to be valid it might make sense # to disable this option and allow such connections. # SSLVerifyHost = 1