diff options
Diffstat (limited to '.vdirsyncer/config')
-rw-r--r-- | .vdirsyncer/config | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/.vdirsyncer/config b/.vdirsyncer/config new file mode 100644 index 0000000..e64e880 --- /dev/null +++ b/.vdirsyncer/config @@ -0,0 +1,75 @@ +[general] +status_path = "~/.vdirsyncer/status/" + +# carddav +[pair dave_contacts] +a = dave_contacts_local +b = dave_contacts_remote +collections = ["bands", "private", "services", "unixpool", "venues"] +conflict_resolution = "b wins" + +[storage dave_contacts_local] +type = filesystem +path = "~/.contacts/" +fileext = .vcf + +[storage dave_contacts_remote] +type = carddav +url = https://cloud.sleepmap.de/remote.php/carddav/ +verify = "~/.certs/sleepmap.crt" +username = dave +password.fetch = ["command", "~/bin/pass2vdirsyncer", "dave", "cloud.sleepmap.de"] + + +[pair akt_contacts] +a = akt_contacts_local +b = akt_contacts_remote +collections = ["exteam", "studio", "team"] +conflict_resolution = "b wins" + +[storage akt_contacts_local] +type = filesystem +path = "~/.contacts/" +fileext = .vcf + +[storage akt_contacts_remote] +type = carddav +url = https://www2.ak.tu-berlin.de/.cloudy/remote.php/carddav/ +username = drunge +password.fetch = ["command", "~/bin/pass2vdirsyncer", "drunge", "www2.ak.tu-berlin.de"] + + +# caldav +[pair dave_calendar] +a = dave_calendar_local +b = dave_calendar_remote +collections = ["akt", "concerts", "contact_birthdays", "courses", "flat", "live", "private", "unix-pool", "work"] + +[storage dave_calendar_local] +type = filesystem +path = "~/.calendars/" +fileext = .ics + +[storage dave_calendar_remote] +type = caldav +url = https://cloud.sleepmap.de/remote.php/caldav/ +verify = "~/.certs/sleepmap.crt" +username = dave +password.fetch = ["command", "~/bin/pass2vdirsyncer", "dave", "cloud.sleepmap.de"] + + +[pair akt_calendar] +a = akt_calendar_local +b = akt_calendar_remote +collections = ["ak_shared_by_mvoigt", "studiotermine_shared_by_mvoigt", "rechencluster_shared_by_mvoigt", "labs_shared_by_mvoigt", "akurlaub_shared_by_mvoigt", "grossesstudio_shared_by_mvoigt", "kleinesstudio_shared_by_mvoigt", "studioausleihe_shared_by_mvoigt", "studiotermine_shared_by_mvoigt"] + +[storage akt_calendar_local] +type = filesystem +path = "~/.calendars/" +fileext = .ics + +[storage akt_calendar_remote] +type = caldav +url = https://www2.ak.tu-berlin.de/.cloudy/remote.php/caldav/ +username = drunge +password.fetch = ["command", "~/bin/pass2vdirsyncer", "drunge", "www2.ak.tu-berlin.de"] |