mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-25 08:55:50 +00:00
Fix #1 This currently breaks the tests, but i think it's radicale being a bitch. We should test this against other servers.
54 lines
1.6 KiB
Text
54 lines
1.6 KiB
Text
[general]
|
|
status_path=~/.vdirsyncer/status/
|
|
#verbose = False
|
|
|
|
# CONTACTS
|
|
[pair bob_contacts]
|
|
# This syncronizes only a single calendar/addressbook
|
|
a = bob_contacts_local
|
|
b = bob_contacts_remote
|
|
# conflict_resolution = None # abort when collisions occur
|
|
# conflict_resolution = a wins # assume a's items to be more up-to-date
|
|
# conflict_resolution = b wins # assume b's items to be more up-to-date
|
|
|
|
[storage bob_contacts_local]
|
|
# This represents only a single calendar/addressbook
|
|
type = filesystem
|
|
path = ~/.watdo/tasks/somecalendar/
|
|
fileext = .vcf
|
|
|
|
[storage bob_contacts_remote]
|
|
# This represents only a single calendar/addressbook
|
|
type = carddav
|
|
url = https://owncloud.example.com/remote.php/carddav/addressbooks/bob/default/
|
|
username = # blabla
|
|
password = # blabla
|
|
|
|
# CALENDAR
|
|
[pair bob_calendar]
|
|
a = bob_calendar_local
|
|
b = bob_calendar_remote
|
|
|
|
[storage bob_calendar_local]
|
|
type = filesystem
|
|
path = ~/.watdo/tasks/somecalendar/
|
|
fileext = .ics
|
|
|
|
[storage bob_calendar_remote]
|
|
type = caldav
|
|
url = https://owncloud.example.com/remote.php/caldav/calendars/bob/somecalendar/
|
|
username = # blabla
|
|
password = # blabla
|
|
|
|
# Specify a time range which should be syncronized. Either both start_date and
|
|
# end_date or neither have to be set. The default is to syncronize everything.
|
|
# The following example syncronizes from one year in the past to one year in
|
|
# the future.
|
|
|
|
# All Python expressions are allowed here. The global namespace contains
|
|
# everything from the datetime module. The expression has to evaluate to a
|
|
# datetime.
|
|
#start_date = datetime.now() - timedelta(days=365)
|
|
|
|
# Here, start_date is also in the namespace.
|
|
#end_date = datetime.now() + timedelta(days=365)
|