summaryrefslogtreecommitdiff
path: root/pim/cmd/caldavfs/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'pim/cmd/caldavfs/main.go')
-rw-r--r--pim/cmd/caldavfs/main.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/pim/cmd/caldavfs/main.go b/pim/cmd/caldavfs/main.go
index 7a0a4d3..de37566 100644
--- a/pim/cmd/caldavfs/main.go
+++ b/pim/cmd/caldavfs/main.go
@@ -67,7 +67,7 @@ func (b *backend) Name() string { return b.name }
func (b *backend) Sched() bool { return b.sched }
func (b *backend) Caps() string {
- c := "read rsvp"
+ c := "read write rsvp"
if b.sched {
// the server sends the iMIP for us; one PUT does both halves
c += " schedule"
@@ -90,6 +90,9 @@ func (b *backend) Status() (time.Time, string) {
func (b *backend) Describe() string {
s := fmt.Sprintf("collection %s\n", b.path)
s += fmt.Sprintf("autoschedule %v\n", b.sched)
+ if len(b.me) > 0 {
+ s += "me " + strings.Join(b.me, ",") + "\n"
+ }
return s
}