diff options
author | Jonas Smedegaard <dr@jones.dk> | 2023-09-17 15:32:06 +0200 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2023-09-17 15:32:06 +0200 |
commit | a74ab80136f5f8da713beb99cbf48acbcef10c48 (patch) | |
tree | b076889f1a257ab9a3386269480fd8ced8bdfcd3 |
add vdirsyncer config
-rw-r--r-- | .gitignore.d/event | 3 | ||||
-rw-r--r-- | .vdirsyncer/config | 42 |
2 files changed, 45 insertions, 0 deletions
diff --git a/.gitignore.d/event b/.gitignore.d/event new file mode 100644 index 0000000..9043a32 --- /dev/null +++ b/.gitignore.d/event @@ -0,0 +1,3 @@ +* +!.gitignore.d/vcsh +!.vdirsyncer/config diff --git a/.vdirsyncer/config b/.vdirsyncer/config new file mode 100644 index 0000000..4d48a45 --- /dev/null +++ b/.vdirsyncer/config @@ -0,0 +1,42 @@ +[general] +status_path = "~/.vdirsyncer/status/" + +[pair jonas_contacts] +a = "jonas_contacts_local" +b = "jonas_contacts_xayide" +# NB! Run "vdirsyncer discover" if new calendars/addressbooks are added +collections = ["from a", "from b"] +metadata = ["displayname"] +#conflict_resolution = null + +[storage jonas_contacts_local] +type = "filesystem" +path = "~/.contacts/" +fileext = ".vcf" + +[storage jonas_contacts_xayide] +type = "carddav" +url = "https://event.jones.dk/" +#verify_fingerprint = "34:7E:0B:CD:2D:5F:FB:71:24:6C:CF:81:1E:2A:E7:E8:87:7C:0E:38" +#verify = false +username = "jonas" +# See http://vdirsyncer.pimutils.org/en/stable/keyring.html +password.fetch = ["prompt", "Password for jones.dk CardDAV"] + +[pair jonas_calendar] +a = "jonas_calendar_local" +b = "jonas_calendar_xayide" +collections = ["from a", "from b"] +metadata = ["displayname", "color"] +#conflict_resolution = null + +[storage jonas_calendar_local] +type = "filesystem" +path = "~/.calendars/" +fileext = ".ics" + +[storage jonas_calendar_xayide] +type = "caldav" +url = "https://event.jones.dk/" +username = "jonas" +password.fetch = ["prompt", "Password for jones.dk CalDAV"] |