blob: b088c243d39313d0f0c215ec633fe50eaeeeeaee (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
[general]
# A folder where vdirsyncer can store some metadata about each pair.
status_path = "~/.local/state/vdirsyncer/status/"
# CALDAV events
[pair gnzler_calendars]
a = "gnzler_calendar_local"
b = "gnzler_calendar_remote"
collections = null
metadata = ["displayname", "color"]
conflict_resolution = ["command", "nvim", "-d"]
[storage gnzler_calendar_local]
type = "filesystem"
path = "~/calendars/personal/"
fileext = ".ics"
[storage gnzler_calendar_remote]
type = "caldav"
item_types = ["VEVENT"]
url = "https://webmail.gandi.net/SOGo/dav/robert@gnzler.io/Calendar/personal/"
username = "robert@gnzler.io"
password.fetch = ["shell", "secretmenu -P 'gnzler.io mail' | head -n1"]
# CALDAV tasks
[pair gnzler_tasks]
a = "gnzler_tasks_local"
b = "gnzler_tasks_remote"
collections = null
metadata = ["displayname", "color"]
conflict_resolution = ["command", "nvim", "-d"]
[storage gnzler_tasks_local]
type = "filesystem"
path = "~/calendars/tasks/"
fileext = ".ics"
[storage gnzler_tasks_remote]
type = "caldav"
item_types = ["VTODO"]
url = "https://webmail.gandi.net/SOGo/dav/robert@gnzler.io/Calendar/7F5F-63225280-C7-DF8F570/"
username = "robert@gnzler.io"
password.fetch = ["shell", "secretmenu -P 'gnzler.io mail' | head -n1"]
# CARDDAV
[pair gnzler_contacts]
a = "gnzler_contacts_local"
b = "gnzler_contacts_remote"
collections = ["from a", "from b"]
# Synchronize the "display name" property into a local file (~/.contacts/displayname).
metadata = ["displayname"]
[storage gnzler_contacts_local]
type = "filesystem"
path = "~/contacts/"
fileext = ".vcf"
[storage gnzler_contacts_remote]
type = "carddav"
url = "https://webmail.gandi.net/SOGo/dav/robert@gnzler.io/Contacts/personal/"
username = "robert@gnzler.io"
password.fetch = ["shell", "secretmenu -P 'gnzler.io mail' | head -n1"]
|