From 126026a6e63e1e8db13f65cfd1f468d884cdf9b2 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Tue, 17 Feb 2004 03:37:11 +0000 Subject: [PATCH] * Indicate to Citadel that we want Server Generated Invitations when calendar events are saved. (No longer the default in Citadel server.) --- webcit/ChangeLog | 5 ++++- webcit/serv_func.c | 9 +++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/webcit/ChangeLog b/webcit/ChangeLog index 3069fb656..921bb9683 100644 --- a/webcit/ChangeLog +++ b/webcit/ChangeLog @@ -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 1998-12-03 Nathan Bryant * webserver.c: warning fix - diff --git a/webcit/serv_func.c b/webcit/serv_func.c index 7a47eefd4..5d9bf1107 100644 --- a/webcit/serv_func.c +++ b/webcit/serv_func.c @@ -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); -- 2.39.2