From 7409e053bde9012662979e86c7b3905753091fe9 Mon Sep 17 00:00:00 2001 From: Ludovic Marcotte Date: Sat, 30 May 2009 18:47:24 +0000 Subject: [PATCH] See ChangeLog Monotone-Parent: 42a3b4e08a22ce3456a4487fd4692b0670fde00f Monotone-Revision: 9c939912020f0e7e38a316d6867d7497c4540bd6 Monotone-Author: ludovic@Sophos.ca Monotone-Date: 2009-05-30T18:47:24 Monotone-Branch: ca.inverse.sogo --- ChangeLog | 6 ++++++ NEWS | 1 + SoObjects/Appointments/SOGoCalendarComponent.m | 2 ++ 3 files changed, 9 insertions(+) diff --git a/ChangeLog b/ChangeLog index cdc91d835..5658819a5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2009-05-30 Ludovic Marcotte + + * Modified SOGoCalendarComponent.m so that we + explicitely add the MIME-Version header when + sending out invitation messages. + 2009-05-23 Ludovic Marcotte * Added Russian tranlation - patch from diff --git a/NEWS b/NEWS index db649ff54..a332a5e54 100644 --- a/NEWS +++ b/NEWS @@ -11,6 +11,7 @@ - added groups support in attendees and in ACLs - added support for user-based IMAP hostname - added support for IMAP subscriptions in web interface +- now possible to use SSL (or TLS) for LDAP sources 1.0-20090407 (1.0.1) -------------------- diff --git a/SoObjects/Appointments/SOGoCalendarComponent.m b/SoObjects/Appointments/SOGoCalendarComponent.m index a4a73d3ad..5930260d1 100644 --- a/SoObjects/Appointments/SOGoCalendarComponent.m +++ b/SoObjects/Appointments/SOGoCalendarComponent.m @@ -673,6 +673,7 @@ static inline BOOL _occurenceHasID (iCalRepeatableEntityObject *occurence, NSStr * so we'll stick with multipart/mixed for the time being. */ [headerMap setObject: @"multipart/mixed" forKey: @"content-type"]; + [headerMap setObject: @"1.0" forKey: @"MIME-Version"]; [headerMap setObject: senderEmail forKey: @"from"]; [headerMap setObject: recipient forKey: @"to"]; mailDate = [[NSCalendarDate date] rfc822DateString]; @@ -764,6 +765,7 @@ static inline BOOL _occurenceHasID (iCalRepeatableEntityObject *occurence, NSStr * so we'll stick with multipart/mixed for the time being. */ [headerMap setObject: @"multipart/mixed" forKey: @"content-type"]; + [headerMap setObject: @"1.0" forKey: @"MIME-Version"]; [headerMap setObject: [attendee mailAddress] forKey: @"from"]; [headerMap setObject: [recipient mailAddress] forKey: @"to"]; mailDate = [[NSCalendarDate date] rfc822DateString];