mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +00:00
Improve config example
[ci skip]
This commit is contained in:
parent
65e6397806
commit
71015fc31b
1 changed files with 12 additions and 4 deletions
16
example.cfg
16
example.cfg
|
|
@ -47,13 +47,13 @@ type = filesystem
|
||||||
path = ~/.watdo/tasks/
|
path = ~/.watdo/tasks/
|
||||||
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/
|
||||||
#username = # blabla
|
#username =
|
||||||
#password = # blabla
|
#password =
|
||||||
|
#verify = True
|
||||||
# similar parameters as carddav...
|
|
||||||
|
|
||||||
# Optional: Specify a time range which should be synchronized. Either both
|
# Optional: Specify a time range which should be synchronized. Either both
|
||||||
# start_date and end_date or neither have to be set. The default is to
|
# start_date and end_date or neither have to be set. The default is to
|
||||||
|
|
@ -67,3 +67,11 @@ 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...
|
||||||
|
[storage bob_calendar_remote]
|
||||||
|
type = http
|
||||||
|
url = https://example.com/holidays.ics
|
||||||
|
#username =
|
||||||
|
#password =
|
||||||
|
#verify = True
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue