See ChangeLog

Monotone-Parent: 4b96a79ded99473f7c6766140d0cd061fbf033cf
Monotone-Revision: c5aef827213cfa0dd83fa1d18267c116529ec0d7

Monotone-Author: ludovic@Sophos.ca
Monotone-Date: 2009-12-26T19:00:45
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Ludovic Marcotte 2009-12-26 19:00:45 +00:00
parent e2e53b5a53
commit 82f15efb6d
2 changed files with 12 additions and 1 deletions

View File

@ -7,6 +7,12 @@
a value of SOGoSMTPServer. This fixes
http://www.scalableogo.org/bugs/view.php?id=201
* SoObjects/Mailer/SOGoMailForward.m (init):
Now consider SOGoMailComposeMessageType instead
of ComposeMessagesType when checking if we are
using HTML mails composition mode. This fixes
http://www.scalableogo.org/bugs/view.php?id=280
2009-12-25 Ludovic Marcotte <lmarcotte@inverse.ca>
* Tools/SOGoToolBackup.m (-fetchUserIDs:):

View File

@ -38,7 +38,12 @@
{
SOGoUserDefaults *ud;
ud = [[context activeUser] userDefaults];
htmlComposition = [[ud objectForKey: @"ComposeMessagesType"] isEqualToString: @"html"];
// Backward comptability with <= 1.1.0 (ComposeMessagesType)
if ([ud objectForKey: @"ComposeMessagesType"])
htmlComposition = [[ud objectForKey: @"ComposeMessagesType"] isEqualToString: @"html"];
else
htmlComposition = [[ud objectForKey: @"SOGoMailComposeMessageType"] isEqualToString: @"html"];
sourceMail = nil;
currentValue = nil;