mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-07-08 18:05:08 +00:00
See ChangeLog
Monotone-Parent: f4a48c355ec45a380e52409f4443bd4198ea038a Monotone-Revision: e61122c5a0ba3f7e5dfada968f88f155fc08bb40 Monotone-Author: ludovic@Sophos.ca Monotone-Date: 2008-08-21T21:40:48 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -1,3 +1,11 @@
|
||||
2008-08-21 Ludovic Marcotte <lmarcotte@inverse.ca>
|
||||
|
||||
* SoObjects/SOGo/LDAPUserManager.m
|
||||
Renamed the SOGOLDAPUserManagerCleanupInterval defaults to
|
||||
SOGoLDAPUserManagerCleanupInterval.
|
||||
We correctly add our timer to the runloop and fixed
|
||||
a typo in the selector name.
|
||||
|
||||
2008-08-21 Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
|
||||
* SoObjects/SOGo/NSString+Utilities.m ([NSString
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/* LDAPUserManager.m - this file is part of SOGo
|
||||
*
|
||||
* Copyright (C) 2007 Inverse groupe conseil
|
||||
* Copyright (C) 2007-2008 Inverse inc.
|
||||
*
|
||||
* Author: Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
*
|
||||
@@ -130,11 +130,11 @@ static BOOL forceImapLoginWithEmail = NO;
|
||||
sourcesMetadata = nil;
|
||||
users = [NSMutableDictionary new];
|
||||
cleanupInterval
|
||||
= [ud integerForKey: @"SOGOLDAPUserManagerCleanupInterval"];
|
||||
= [ud integerForKey: @"SOGoLDAPUserManagerCleanupInterval"];
|
||||
if (cleanupInterval)
|
||||
cleanupTimer = [NSTimer timerWithTimeInterval: cleanupInterval
|
||||
cleanupTimer = [NSTimer scheduledTimerWithTimeInterval: cleanupInterval
|
||||
target: self
|
||||
selector: @selector (cleanupUsers)
|
||||
selector: @selector(cleanupSources)
|
||||
userInfo: nil
|
||||
repeats: YES];
|
||||
[self _prepareLDAPSourcesWithDefaults: ud];
|
||||
|
||||
Reference in New Issue
Block a user