These are some guides for various use.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

63 lines
1.4 KiB

  1. # Vdirsyncer
  2. `vdirsyncer` can sync calendars and contacts using the caldav and carddav
  3. protocol.
  4. ## Setup
  5. ### Arch-Linux
  6. - `pacman -S vdirsyncer` - Install needed packages
  7. ### Configuration
  8. - Edit the `~/.config/vdirsyncer/config`.
  9. - Insert the following lines:
  10. ```txt
  11. [general]
  12. status_path = "~/.cache/vdirsyncer/status"
  13. #calendar
  14. [pair private_calendar]
  15. a = "private_calendar_local"
  16. b = "private_calendar_remote"
  17. collections = ["from a", "from b"]
  18. metadata = ["color"]
  19. [storage private_calendar_local]
  20. type = "filesystem"
  21. path = "~/.local/share/pim/calendars/private_calendar"
  22. fileext = ".ics"
  23. [storage private_calendar_remote]
  24. type = "caldav"
  25. url = "https://<url>"
  26. auth = "basic"
  27. username = "<username>"
  28. password = "<password>"
  29. #contacts
  30. [pair private_contacts]
  31. a = "private_contacts_local"
  32. b = "private_contacts_remote"
  33. collections = ["from a", "from b"]
  34. [storage private_contacts_local]
  35. type = "filesystem"
  36. path = "~/.local/share/pim/contacts"
  37. fileext = ".vcf"
  38. [storage private_contacts_remote]
  39. type = "carddav"
  40. url = "https://<url>"
  41. username = "<username>"
  42. password = "<password>"
  43. auth = "basic"
  44. ```
  45. Replace specific lines with your information.
  46. You can set multiple contact and calendar syncs at once.
  47. - `vdirsyncer discover && vdirsyncer metasync` - Initialize vdirsyncer
  48. - `vdirsyncer sync` - Synchronize your data (put it in a crontab to run periodically)