ICAL 'putics' should NOT do server-generated invitations.
authorArt Cancro <ajc@citadel.org>
Mon, 31 Mar 2008 21:43:41 +0000 (21:43 +0000)
committerArt Cancro <ajc@citadel.org>
Mon, 31 Mar 2008 21:43:41 +0000 (21:43 +0000)
webcit/groupdav_put.c

index c4300cee56abd7f6cd3774450d0d655e45b9ef02..7ab6d4cb49ba3a0eaff949d8955c3740e06078e5 100644 (file)
@@ -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') {