mirror of
https://github.com/Kozea/Radicale.git
synced 2025-08-28 19:40:54 +00:00
add new page
parent
df141aef9f
commit
32708a3045
1 changed files with 62 additions and 0 deletions
62
Client-pimsync.md
Normal file
62
Client-pimsync.md
Normal file
|
@ -0,0 +1,62 @@
|
|||
# pimsync
|
||||
|
||||
_pimsync_ is a command line tool for syncing collections (icalendar, vcard, webcal)
|
||||
|
||||
Source: https://pimsync.whynothugo.nl/
|
||||
|
||||
## Configuration
|
||||
|
||||
Example for configuration file `pimsync.conf`
|
||||
|
||||
```
|
||||
status_path /home/test/pimsync
|
||||
|
||||
storage radicale-vcard {
|
||||
type carddav
|
||||
url http://localhost:5232/
|
||||
username test
|
||||
password test
|
||||
}
|
||||
|
||||
storage radicale-icalendar {
|
||||
type caldav
|
||||
url http://localhost:5232/
|
||||
username testmd5
|
||||
password testmd5
|
||||
}
|
||||
|
||||
storage local-vcard {
|
||||
type vdir/vcard
|
||||
path /home/test/pimsync/vdir-vcard
|
||||
fileext vcf
|
||||
}
|
||||
|
||||
storage local-icalendar {
|
||||
type vdir/icalendar
|
||||
path /home/test/pimsync/vdir-icalendar
|
||||
fileext ics
|
||||
}
|
||||
|
||||
pair radicale-local-vcard {
|
||||
storage_a radicale-vcard
|
||||
storage_b local-vcard
|
||||
collections from a
|
||||
}
|
||||
|
||||
pair radicale-local-icalendar {
|
||||
storage_a radicale-icalendar
|
||||
storage_b local-icalendar
|
||||
collections from a
|
||||
}
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
```bash
|
||||
## discover
|
||||
pimsync -v debug -c pimsync.conf discover
|
||||
## check
|
||||
pimsync -v debug -c pimsync.conf check
|
||||
## sync
|
||||
pimsync -v debug -c pimsync.conf sync
|
||||
```
|
Loading…
Add table
Add a link
Reference in a new issue