From 9ee9a1695096fe14a8e8572fe737d478180bea04 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Tue, 24 Apr 2007 20:15:01 +0000 Subject: [PATCH] Don't automatically delete calendar invitations and RSVP's after handling them. This behavior does not make sense when handling multipart messages. --- citadel/serv_calendar.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/citadel/serv_calendar.c b/citadel/serv_calendar.c index 91570069c..8fb05e78b 100644 --- a/citadel/serv_calendar.c +++ b/citadel/serv_calendar.c @@ -425,9 +425,9 @@ void ical_respond(long msgnum, char *partnum, char *action) { } /* Now that we've processed this message, we don't need it - * anymore. So delete it. - */ + * anymore. So delete it. (NOTE we don't do this anymore.) CtdlDeleteMessages(CC->room.QRname, &msgnum, 1, ""); + */ /* Free the memory we allocated and return a response. */ icalcomponent_free(ird.cal); @@ -773,9 +773,9 @@ void ical_handle_rsvp(long msgnum, char *partnum, char *action) { } /* Now that we've processed this message, we don't need it - * anymore. So delete it. (Maybe make this optional?) - */ + * anymore. So delete it. (Don't do this anymore.) CtdlDeleteMessages(CC->room.QRname, &msgnum, 1, ""); + */ /* Free the memory we allocated and return a response. */ icalcomponent_free(ird.cal); -- 2.39.2