diff --git a/ChangeLog b/ChangeLog index 9aa35dd55..006b62f20 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3,9 +3,8 @@ * SoObjects/Appointments/SOGoCalendarComponent.m (-sendEMailUsingTemplateNamed:forObject:previousObject:toAttendees:): added a few headers to the ical attachment that could help - work-around bugs occurring with Outlook: content-disposition = - inline, content-transfer-encoding = qp. Moreover a \r\n is added - to the iCalString. + work-around bugs occurring with Outlook: content-transfer-encoding + = qp. Moreover a \r\n is added to the iCalString. * SoObjects/SOGo/SOGoCache.m: worked around in bug in GCC occurring with libmemcached >= 0.37 by making the servers and diff --git a/SoObjects/Appointments/SOGoCalendarComponent.m b/SoObjects/Appointments/SOGoCalendarComponent.m index 96cfc7305..24df01a89 100644 --- a/SoObjects/Appointments/SOGoCalendarComponent.m +++ b/SoObjects/Appointments/SOGoCalendarComponent.m @@ -761,8 +761,6 @@ static inline BOOL _occurenceHasID (iCalRepeatableEntityObject *occurence, NSStr [(iCalCalendar *) [object parent] method]]; headerMap = [NGMutableHashMap hashMapWithCapacity: 1]; [headerMap setObject:header forKey: @"content-type"]; - [headerMap setObject: @"inline" - forKey: @"content-disposition"]; [headerMap setObject: @"quoted-printable" forKey: @"content-transfer-encoding"]; bodyPart = [NGMimeBodyPart bodyPartWithHeader: headerMap];