diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/sinksh.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/sinksh.md b/docs/sinksh.md index 9884169..b04eb0c 100644 --- a/docs/sinksh.md +++ b/docs/sinksh.md | |||
@@ -33,22 +33,22 @@ Provides the same contents as "list" but in a graphical tree view. This was real | |||
33 | # Setting up a new resource instance | 33 | # Setting up a new resource instance |
34 | sink_cmd is already the primary way how you create resource instances: | 34 | sink_cmd is already the primary way how you create resource instances: |
35 | 35 | ||
36 | `sinksh create resource org.kde.maildir path /home/developer/maildir1` | 36 | `sinksh create resource sink.maildir path /home/developer/maildir1` |
37 | 37 | ||
38 | This creates a resource of type "org.kde.maildir" and a configuration of "path" with the value "home/developer/maildir1". Resources are stored in configuration files, so all this does is write to some config files. | 38 | This creates a resource of type "sink.maildir" and a configuration of "path" with the value "home/developer/maildir1". Resources are stored in configuration files, so all this does is write to some config files. |
39 | 39 | ||
40 | `sinksh list resource` | 40 | `sinksh list resource` |
41 | 41 | ||
42 | By listing all available resources we can find the identifier of the resource that was automatically assigned. | 42 | By listing all available resources we can find the identifier of the resource that was automatically assigned. |
43 | 43 | ||
44 | `sinksh synchronize org.kde.maildir.instance1` | 44 | `sinksh synchronize sink.maildir.instance1` |
45 | 45 | ||
46 | This triggers the actual synchronization in the resource, and from there on the data is available. | 46 | This triggers the actual synchronization in the resource, and from there on the data is available. |
47 | 47 | ||
48 | `sinksh list folder org.kde.maildir.instance1` | 48 | `sinksh list folder sink.maildir.instance1` |
49 | 49 | ||
50 | This will get you all folders that are in the resource. | 50 | This will get you all folders that are in the resource. |
51 | 51 | ||
52 | `sinksh remove resource org.kde.maildir.instance1` | 52 | `sinksh remove resource sink.maildir.instance1` |
53 | 53 | ||
54 | And this will finally remove all traces of the resource instance. | 54 | And this will finally remove all traces of the resource instance. |