See ChangeLog

Monotone-Parent: 183260943cb216331ca59da428a9213660f50a3e
Monotone-Revision: 0cccccd5ca93030867a48d630f989c1cb73e1831

Monotone-Author: ludovic@Sophos.ca
Monotone-Date: 2009-01-19T19:08:01
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Ludovic Marcotte 2009-01-19 19:08:01 +00:00
parent 6c32ea07fc
commit 7388e38723
2 changed files with 12 additions and 3 deletions

View File

@ -1,3 +1,9 @@
2009-01-19 Ludovic Marcotte <lmarcotte@inverse.ca>
* Main/SOGo.m
We check if we have an empty configuration upon startup
and warn the user about this.
2009-01-16 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/SOGo/NSString+Utilities.m ([NSString
@ -25,7 +31,7 @@
([SOGoGCSFolder -sendFolderAdvisoryTemplate:template]): now a
public method.
2008-01-07 Ludovic Marcotte <lmarcotte@inverse.ca>
2009-01-07 Ludovic Marcotte <lmarcotte@inverse.ca>
* Added Documentation/SOGo Mobile Devices Configuration.odt
* Fixed typos in the Intallation & Configuration guide
@ -54,7 +60,7 @@
algorithm used in jsonRepresentation, the latter is now calling
this new method.
2008-01-06 Ludovic Marcotte <lmarcotte@inverse.ca>
2009-01-06 Ludovic Marcotte <lmarcotte@inverse.ca>
* SoObjects/Appointments/SOGoCalendarComponent.m
([SOGoCalendarComponent -_filterComponent:]):

View File

@ -76,8 +76,11 @@ static BOOL debugObjectAllocation = NO;
NSArray *basicRoles;
id tmp;
NSLog (@"starting SOGo (build %@)", SOGoBuildDate);
NSLog(@"starting SOGo (build %@)", SOGoBuildDate);
if ([[ud persistentDomainForName: @"sogod-0.9"] count] == 0)
NSLog(@"WARNING: No configuration found. SOGo will not work properly.");
doCrashOnSessionCreate = [ud boolForKey:@"SOGoCrashOnSessionCreate"];
#ifdef GNUSTEP_BASE_LIBRARY
debugObjectAllocation = [ud boolForKey: @"SOGoDebugObjectAllocation"];