diff --git a/ChangeLog b/ChangeLog index b6102a026..6d4e4c3c8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2009-10-22 Ludovic Marcotte + + * SoObjects/SOGo/SOGoUserManager.m + Modified so that we throw a warning when there are + no authentication sources defined. + + * Updated all guides in preparation for the release. + 2009-10-21 Wolfgang Sourdeau * SoObjects/Appointments/SOGoAppointmentFolder.m diff --git a/Documentation/SOGo Installation Guide.odt b/Documentation/SOGo Installation Guide.odt index 2e589ebb9..6c949fd5f 100644 Binary files a/Documentation/SOGo Installation Guide.odt and b/Documentation/SOGo Installation Guide.odt differ diff --git a/Documentation/SOGo Mobile Devices Configuration.odt b/Documentation/SOGo Mobile Devices Configuration.odt index 29aba5272..8c6f8418d 100644 Binary files a/Documentation/SOGo Mobile Devices Configuration.odt and b/Documentation/SOGo Mobile Devices Configuration.odt differ diff --git a/Documentation/SOGo Mozilla Thunderbird Configuration.odt b/Documentation/SOGo Mozilla Thunderbird Configuration.odt index 7a6df3b60..4ba568f97 100644 Binary files a/Documentation/SOGo Mozilla Thunderbird Configuration.odt and b/Documentation/SOGo Mozilla Thunderbird Configuration.odt differ diff --git a/SoObjects/SOGo/SOGoUserManager.m b/SoObjects/SOGo/SOGoUserManager.m index 033178b56..7acc5a271 100644 --- a/SoObjects/SOGo/SOGoUserManager.m +++ b/SoObjects/SOGo/SOGoUserManager.m @@ -173,6 +173,10 @@ static NSLock *lock = nil; for (count = 0; count < max; count++) [self _registerSource: [sources objectAtIndex: count]]; } + else + { + [self errorWithFormat: @"No authentication sources defined - nobody will be able to login. Check your defaults."]; + } } - (id) init