mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-25 08:55:50 +00:00
Lessons learned from #29
This commit is contained in:
parent
c18359466f
commit
246ed9715d
1 changed files with 14 additions and 6 deletions
20
example.cfg
20
example.cfg
|
|
@ -37,7 +37,7 @@ url = https://owncloud.example.com/remote.php/carddav/addressbooks/bob/default/
|
|||
#path to SSL cert: People will call you paranoid
|
||||
#verify = True
|
||||
|
||||
# CALENDAR
|
||||
# CALDAV
|
||||
[pair bob_calendar]
|
||||
a = bob_calendar_local
|
||||
b = bob_calendar_remote
|
||||
|
|
@ -45,10 +45,9 @@ collections = private,work
|
|||
|
||||
[storage bob_calendar_local]
|
||||
type = filesystem
|
||||
path = ~/.watdo/tasks/
|
||||
path = ~/.config/vdir/calendars/
|
||||
fileext = .ics
|
||||
|
||||
# for caldav...
|
||||
[storage bob_calendar_remote]
|
||||
type = caldav
|
||||
url = https://owncloud.example.com/remote.php/caldav/calendars/bob/
|
||||
|
|
@ -70,10 +69,19 @@ url = https://owncloud.example.com/remote.php/caldav/calendars/bob/
|
|||
# Here, start_date is also in the namespace.
|
||||
#end_date = datetime.now() + timedelta(days=365)
|
||||
|
||||
# for raw .ics files on the web...
|
||||
[storage bob_calendar_remote]
|
||||
# HTTP CALENDAR
|
||||
[pair holidays]
|
||||
a = holidays_local
|
||||
b = holidays_remote
|
||||
|
||||
[storage holidays_local]
|
||||
type = filesystem
|
||||
path = ~/.config/vdir/calendars/holidays/
|
||||
fileext = .ics
|
||||
|
||||
[storage holidays_remote]
|
||||
type = http
|
||||
url = https://example.com/holidays.ics
|
||||
url = https://mozorg.cdn.mozilla.net/media/caldata/QueenslandHolidays.ics
|
||||
#auth = basic
|
||||
#username =
|
||||
#password =
|
||||
|
|
|
|||
Loading…
Reference in a new issue