mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-04-26 23:39:33 +00:00
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
This commit is contained in:
@@ -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:):
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user