X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=citadel%2Fserv_calendar.c;h=ec8be83443260ce8454f3da847cb3cb73de7bf14;hb=c60ee2e375c3b381e36ffebb525f21f7aaf608fd;hp=fbc5ec510279dcf2ef599ed0516831c7b0fcaa8f;hpb=4a7ad144766ca9c7845627fbf8b4956a0e8ed6e6;p=citadel.git diff --git a/citadel/serv_calendar.c b/citadel/serv_calendar.c index fbc5ec510..ec8be8344 100644 --- a/citadel/serv_calendar.c +++ b/citadel/serv_calendar.c @@ -323,7 +323,7 @@ void ical_send_a_reply(icalcomponent *request, char *action) { if (msg != NULL) { valid = validate_recipients(organizer_string); - CtdlSubmitMsg(msg, valid, ""); + CtdlSubmitMsg(msg, valid, NULL, NULL, ""); CtdlFreeMessage(msg); } } @@ -698,7 +698,7 @@ int ical_update_my_calendar_with_reply(icalcomponent *cal) { if (msg != NULL) { CIT_ICAL->avoid_sending_invitations = 1; - CtdlSubmitMsg(msg, NULL, roomname); + CtdlSubmitMsg(msg, NULL, NULL, NULL, roomname); CtdlFreeMessage(msg); CIT_ICAL->avoid_sending_invitations = 0; } @@ -1589,7 +1589,7 @@ void ical_send_out_invitations(icalcomponent *cal) { if (msg != NULL) { valid = validate_recipients(attendees_string); - CtdlSubmitMsg(msg, valid, ""); + CtdlSubmitMsg(msg, valid, NULL, NULL, ""); CtdlFreeMessage(msg); } }