From 9d7d2575d3231af8b96b00a706b78f67904c7076 Mon Sep 17 00:00:00 2001 From: Ludovic Marcotte Date: Thu, 12 Jan 2017 15:23:09 -0500 Subject: [PATCH] (ix) remove alarms in IMIP responses (fixes #3925) --- SoObjects/Appointments/SOGoCalendarComponent.m | 3 +++ 1 file changed, 3 insertions(+) diff --git a/SoObjects/Appointments/SOGoCalendarComponent.m b/SoObjects/Appointments/SOGoCalendarComponent.m index 8acacda799..d37438292a 100644 --- a/SoObjects/Appointments/SOGoCalendarComponent.m +++ b/SoObjects/Appointments/SOGoCalendarComponent.m @@ -933,6 +933,9 @@ - (void) _sendIMIPReplyForEvent: (iCalRepeatableEntityObject *) event /* get WOApplication instance */ app = [WOApplication application]; + /* remove all alarms to avoid bug #3925 */ + [event removeAllAlarms]; + /* construct message content */ p = [app pageWithName: @"SOGoAptMailICalReply" inContext: context]; [p setApt: (iCalEvent *) event];