diff options
author | Óscar Nájera <hi@oscarnajera.com> | 2021-08-25 08:02:15 +0200 |
---|---|---|
committer | Óscar Nájera <hi@oscarnajera.com> | 2021-08-25 08:02:15 +0200 |
commit | 17260a18beacd941352d0c46b8b3fcd467eb7c47 (patch) | |
tree | f6a72942b828b92b7f0201d2918cc7b31975b21c /config/vdirsyncer | |
parent | 82446b9c17ef384caca76de31437a430e12d8c2d (diff) | |
download | dotfiles-17260a18beacd941352d0c46b8b3fcd467eb7c47.tar.gz dotfiles-17260a18beacd941352d0c46b8b3fcd467eb7c47.tar.bz2 dotfiles-17260a18beacd941352d0c46b8b3fcd467eb7c47.zip |
contacts management
Diffstat (limited to 'config/vdirsyncer')
-rw-r--r-- | config/vdirsyncer/config | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/config/vdirsyncer/config b/config/vdirsyncer/config new file mode 100644 index 0000000..b721dd6 --- /dev/null +++ b/config/vdirsyncer/config @@ -0,0 +1,21 @@ +[general] +# A folder where vdirsyncer can store some metadata about each pair. +status_path = "~/.vdirsyncer/status/" + +[pair my_contacts] +a = "my_contacts_local" +b = "my_contacts_remote" +collections = ["from a", "from b"] + +[storage my_contacts_local] +type = "filesystem" +path = "~/.contacts/" +fileext = ".vcf" + +[storage my_contacts_remote] +type = "carddav" + +# We can simplify this URL here as well. In theory it shouldn't matter. +url = "https://cloud.oscarnajera.com/remote.php/dav/addressbooks/users/oscar/" +username = "oscar" +password.fetch = ["command", "pass", "CS_storage/cloud.oscarnajera.com"] |