mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +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
|
#path to SSL cert: People will call you paranoid
|
||||||
#verify = True
|
#verify = True
|
||||||
|
|
||||||
# CALENDAR
|
# CALDAV
|
||||||
[pair bob_calendar]
|
[pair bob_calendar]
|
||||||
a = bob_calendar_local
|
a = bob_calendar_local
|
||||||
b = bob_calendar_remote
|
b = bob_calendar_remote
|
||||||
|
|
@ -45,10 +45,9 @@ collections = private,work
|
||||||
|
|
||||||
[storage bob_calendar_local]
|
[storage bob_calendar_local]
|
||||||
type = filesystem
|
type = filesystem
|
||||||
path = ~/.watdo/tasks/
|
path = ~/.config/vdir/calendars/
|
||||||
fileext = .ics
|
fileext = .ics
|
||||||
|
|
||||||
# for caldav...
|
|
||||||
[storage bob_calendar_remote]
|
[storage bob_calendar_remote]
|
||||||
type = caldav
|
type = caldav
|
||||||
url = https://owncloud.example.com/remote.php/caldav/calendars/bob/
|
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.
|
# Here, start_date is also in the namespace.
|
||||||
#end_date = datetime.now() + timedelta(days=365)
|
#end_date = datetime.now() + timedelta(days=365)
|
||||||
|
|
||||||
# for raw .ics files on the web...
|
# HTTP CALENDAR
|
||||||
[storage bob_calendar_remote]
|
[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
|
type = http
|
||||||
url = https://example.com/holidays.ics
|
url = https://mozorg.cdn.mozilla.net/media/caldata/QueenslandHolidays.ics
|
||||||
#auth = basic
|
#auth = basic
|
||||||
#username =
|
#username =
|
||||||
#password =
|
#password =
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue