mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-26 14:47:44 +00:00
Merge pull request #44 from nachtschattengewaechs/master
Don't suggest that `name = value # A comment` is a valid definition.
This commit is contained in:
commit
b832d7423f
1 changed files with 18 additions and 10 deletions
28
example.cfg
28
example.cfg
|
|
@ -38,9 +38,11 @@ b = bob_contacts_remote
|
||||||
# collection each.
|
# collection each.
|
||||||
collections = default,work
|
collections = default,work
|
||||||
|
|
||||||
# conflict_resolution = None # abort when collisions occur (default)
|
# To resolve a conflict the following values are possible:
|
||||||
# conflict_resolution = a wins # assume a's items to be more up-to-date
|
# `None` - abort when collisions occur (default)
|
||||||
# conflict_resolution = b wins # assume b's items to be more up-to-date
|
# `a wins` - assume a's items to be more up-to-date
|
||||||
|
# `b wins` - assume b's items to be more up-to-date
|
||||||
|
#conflict_resolution = None
|
||||||
|
|
||||||
[storage bob_contacts_local]
|
[storage bob_contacts_local]
|
||||||
# A storage references actual data on a remote server or on the local disk.
|
# A storage references actual data on a remote server or on the local disk.
|
||||||
|
|
@ -48,19 +50,25 @@ collections = default,work
|
||||||
type = filesystem
|
type = filesystem
|
||||||
path = ~/.contacts/
|
path = ~/.contacts/
|
||||||
fileext = .vcf
|
fileext = .vcf
|
||||||
#create = True # create directory if it doesn't exist
|
# Create the directory if it doesn't exist: `True` or `False`
|
||||||
|
#create = True
|
||||||
#encoding = utf-8
|
#encoding = utf-8
|
||||||
|
|
||||||
[storage bob_contacts_remote]
|
[storage bob_contacts_remote]
|
||||||
type = carddav
|
type = carddav
|
||||||
url = https://owncloud.example.com/remote.php/carddav/addressbooks/bob/
|
url = https://owncloud.example.com/remote.php/carddav/addressbooks/bob/
|
||||||
#auth = basic # basic|digest
|
# There are two different authentication types: `basic` or `digest`
|
||||||
#username = # for http auth, if empty, no auth will be used
|
#auth = basic
|
||||||
#password = # can also be fetched from the system password storage or netrc
|
# For http auth, if empty, no auth will be used
|
||||||
|
#username =
|
||||||
|
# The password can also be fetched from the system password storage or netrc
|
||||||
|
#password =
|
||||||
|
|
||||||
#true: The NSA can spy on you with some effort
|
# SSL settings:
|
||||||
#false: Everybody can spy on you with no effort
|
# `True` - The NSA can spy on you with some effort (use SSL)
|
||||||
#path to SSL cert: People will call you paranoid
|
# `False` - Everybody can spy on you with no effort (don't use SSL)
|
||||||
|
# `path/to/SSL/cert` - People will call you paranoid (if you use a self-
|
||||||
|
# signed certificate you need to copy it to this machine)
|
||||||
#verify = True
|
#verify = True
|
||||||
|
|
||||||
# CALDAV
|
# CALDAV
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue