From: Art Cancro Date: Tue, 24 Apr 2007 20:15:01 +0000 (+0000) Subject: Don't automatically delete calendar invitations X-Git-Tag: v7.86~3417 X-Git-Url: https://code.citadel.org/?a=commitdiff_plain;h=9ee9a1695096fe14a8e8572fe737d478180bea04;p=citadel.git Don't automatically delete calendar invitations and RSVP's after handling them. This behavior does not make sense when handling multipart messages. --- 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);