From 5182c740cea8d705601180f29b13ba80f25ff0f8 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Mon, 31 Mar 2008 21:43:41 +0000 Subject: [PATCH] ICAL 'putics' should NOT do server-generated invitations. --- webcit/groupdav_put.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/webcit/groupdav_put.c b/webcit/groupdav_put.c index c4300cee5..7ab6d4cb4 100644 --- a/webcit/groupdav_put.c +++ b/webcit/groupdav_put.c @@ -19,6 +19,13 @@ void groupdav_put_bigics(char *dav_content, int dav_content_length) { char buf[1024]; + /* + * Tell the server that when we save a calendar event, we + * do *not* want the server to generate invitations. + */ + serv_puts("ICAL sgi|0"); + serv_getln(buf, sizeof buf); + serv_puts("ICAL putics"); serv_getln(buf, sizeof buf); if (buf[0] != '4') { -- 2.39.2