blob: 8fed0188ccd1f58769aa3d9f235f4b87ec015e8c (
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
|
# A folder where vdirsyncer can store some metadata about each pair.
status_path "~/.local/state/pimsync/status/"
# PAIRS
pair calendars_robert {
storage_a calendars_robert_local
storage_b gzr_robert_calendar_remote
collections all
}
pair contacts_robert {
storage_a contacts_local
storage_b gzr_robert_contacts_remote
collections all
}
pair calendars_goro {
storage_a calendars_goro_local
storage_b gzr_goro_calendar_remote
# NOTE: only sync events
collection events
}
# STORAGE LOCAL
storage calendars_robert_local {
type vdir/icalendar
path ~/calendars/robert/
fileext ics
}
storage calendars_goro_local {
type vdir/icalendar
path ~/calendars/goro/
fileext ics
}
storage contacts_local {
type vdir/vcard
path ~/contacts/
fileext vcf
}
# STORAGE GZR
storage gzr_robert_calendar_remote {
type caldav
url https://cal.gzr.im/dav/
username robert
}
storage gzr_robert_contacts_remote {
type carddav
url https://cal.gzr.im/dav/
username robert
}
storage gzr_goro_calendar_remote {
type caldav
url https://cal.gzr.im/dav/
username goro
}
|