From 65e258bc9b838694dfd17e4f231025569b60ac31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ensar=20Saraj=C4=8Di=C4=87?= Date: Wed, 20 Jul 2022 18:06:48 +0200 Subject: [PATCH] Add sample config for vdirsyncer --- symlinks/config/vdirsyncer/sampleconfig | 43 +++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 symlinks/config/vdirsyncer/sampleconfig diff --git a/symlinks/config/vdirsyncer/sampleconfig b/symlinks/config/vdirsyncer/sampleconfig new file mode 100644 index 0000000..4764b6d --- /dev/null +++ b/symlinks/config/vdirsyncer/sampleconfig @@ -0,0 +1,43 @@ +# An example configuration for vdirsyncer. + +[general] +# A folder where vdirsyncer can store some metadata about each pair. +status_path = "~/.local/share/vdirsyncer/status/" + +# CARDDAV +[pair contacts] +a = "contacts_local" +b = "contacts_remote" +collections = ["default"] +conflict_resolution = "a wins" + +[storage contacts_local] +type = "filesystem" +path = "~/.local/share/khard/contacts/" +fileext = ".vcf" + +[storage contacts_remote] +type = "carddav" +url = "" +auth = "basic" +username = "" +password = "" + +# CALDAV +[pair calendar] +a = "calendar_local" +b = "calendar_remote" +collections = ["default"] +conflict_resolution = "a wins" + +[storage calendar_local] +type = "filesystem" +path = "~/.local/share/khal/calendars/" +fileext = ".ics" + +[storage calendar_remote] +type = "caldav" +url = "" +auth = "basic" +username = "" +password = ""