See ChangeLog

Monotone-Parent: dbb4d0d0fcdbbccb83eb0faf29ecfd26bb48dbc0
Monotone-Revision: 4e44cee96e74269b692d100a0c98730015a49d07

Monotone-Author: ludovic@Sophos.ca
Monotone-Date: 2012-05-09T10:52:36
maint-2.0.2
Ludovic Marcotte 2012-05-09 10:52:36 +00:00
parent 60555b9568
commit 93dd01d271
2 changed files with 5 additions and 5 deletions

View File

@ -1,3 +1,8 @@
2012-05-09 Ludovic Marcotte <lmarcotte@inverse.ca>
* SoObjects/Mailer/SOGoDraftObject.m - don't encode message/rfc822
parts in base64 - it's not allowed.
2012-05-08 Francis Lachapelle <flachapelle@inverse.ca>
* UI/Contacts/UIxContactView.m (-primaryEmail): in the mailto

View File

@ -1181,11 +1181,6 @@ static NSString *userAgent = nil;
content = [[NSData alloc] initWithContentsOfMappedFile:p];
[content autorelease];
content = [content dataByEncodingBase64];
[map setObject: @"base64" forKey: @"content-transfer-encoding"];
[map setObject:[NSNumber numberWithInt:[content length]]
forKey: @"content-length"];
/* Note: the -init method will create a temporary file! */
body = [[NGMimeFileData alloc] initWithBytes:[content bytes]
length:[content length]];