]> code.citadel.org Git - citadel.git/commitdiff
* Indicate to Citadel that we want Server Generated Invitations when
authorArt Cancro <ajc@citadel.org>
Tue, 17 Feb 2004 03:37:11 +0000 (03:37 +0000)
committerArt Cancro <ajc@citadel.org>
Tue, 17 Feb 2004 03:37:11 +0000 (03:37 +0000)
  calendar events are saved.  (No longer the default in Citadel server.)

webcit/ChangeLog
webcit/serv_func.c

index 3069fb6565df2686b8940a9b11acd2146b8b3ae6..921bb96839688cb5e89704a2d6f574a7a98b5276 100644 (file)
@@ -1,4 +1,8 @@
 $Log$
+Revision 504.4  2004/02/17 03:37:11  ajc
+* Indicate to Citadel that we want Server Generated Invitations when
+  calendar events are saved.  (No longer the default in Citadel server.)
+
 Revision 504.3  2004/02/09 04:49:32  ajc
 * Prepare for a way to avoid falling out of the main frameset
 
@@ -1646,4 +1650,3 @@ Sun Dec  6 19:50:55 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
 
 1998-12-03 Nathan Bryant <bryant@cs.usm.maine.edu>
        * webserver.c: warning fix
-
index 7a47eefd4ce7b3d3e33eb1fb59b703b7ad9e8ca8..5d9bf1107093e079927fbc52fa7d0ad519fda920 100644 (file)
@@ -52,6 +52,15 @@ void get_serv_info(char *browser_host, char *user_agent)
        serv_puts("MSGP text/html|text/plain");
        serv_gets(buf);
 
+#ifdef WEBCIT_WITH_CALENDAR_SERVICE
+       /* Tell the server that when we save a calendar event, we
+        * want invitations to be generated by the Citadel server
+        * instead of by the client.
+        */
+       serv_puts("ICAL sgi|1");
+       serv_gets(buf);
+#endif
+
        /* Now ask the server to tell us a little bit about itself... */
        serv_puts("INFO");
        serv_gets(buf);