From f4258c5872a99969257af46fcc01ea8ea98a9afc Mon Sep 17 00:00:00 2001 From: Wolfgang Sourdeau Date: Fri, 1 Jun 2007 05:06:29 +0000 Subject: [PATCH] Monotone-Parent: 53e4ace27cad155187cf6db8fff22b9536080141 Monotone-Revision: f8d8d7341ccf044e9a25eb470cc329184daf2c24 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2007-06-01T05:06:29 Monotone-Branch: ca.inverse.sogo --- ChangeLog | 3 +++ SoObjects/Mailer/SOGoMailObject.m | 5 +++++ 2 files changed, 8 insertions(+) diff --git a/ChangeLog b/ChangeLog index ca1983d1c..7ab9aab3b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2007-06-01 Wolfgang Sourdeau + * SoObjects/Mailer/SOGoMailObject.m ([SOGoMailObject + -davContentType]): declare "message/rfc822" as content type. + * SoObjects/Appointments/SOGoAppointmentFolder.m ([SOGoAppointmentFolder -_privacySqlString]): "owner" is now an ivar in SOGoObject. diff --git a/SoObjects/Mailer/SOGoMailObject.m b/SoObjects/Mailer/SOGoMailObject.m index 68ec6326a..5c66db385 100644 --- a/SoObjects/Mailer/SOGoMailObject.m +++ b/SoObjects/Mailer/SOGoMailObject.m @@ -407,6 +407,11 @@ static BOOL debugSoParts = NO; return [[content copy] autorelease]; } +- (NSString *) davContentType +{ + return @"message/rfc822"; +} + - (NSString *)contentAsString { NSString *s; NSData *content;