mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-04-23 05:49:31 +00:00
Revert "Debugging output for subscription issue"
This reverts commit e33ec4e396.
This commit is contained in:
@@ -61,7 +61,6 @@
|
||||
#include "SOGoUserManager.h"
|
||||
#include "SOGoUser.h"
|
||||
|
||||
#import <NGExtensions/NSObject+Logs.h>
|
||||
#import <NGLdap/NGLdapEntry.h>
|
||||
|
||||
#define CHECK_CLASS(o) ({ \
|
||||
@@ -282,10 +281,6 @@
|
||||
[logins addObject: login];
|
||||
[_members addObject: user];
|
||||
}
|
||||
else
|
||||
{
|
||||
[self errorWithFormat: @"Invalid uniquemember %@ (%@) in group %@", dn, login, _identifier];
|
||||
}
|
||||
[pool release];
|
||||
}
|
||||
|
||||
@@ -295,15 +290,12 @@
|
||||
pool = [NSAutoreleasePool new];
|
||||
login = [uids objectAtIndex: i];
|
||||
user = [SOGoUser userWithLogin: login roles: nil];
|
||||
|
||||
if (user)
|
||||
{
|
||||
[logins addObject: [user loginInDomain]];
|
||||
[_members addObject: user];
|
||||
}
|
||||
else
|
||||
{
|
||||
[self errorWithFormat: @"Invalid memberuid %@ in group %@", login, _identifier];
|
||||
}
|
||||
[pool release];
|
||||
}
|
||||
|
||||
@@ -312,7 +304,6 @@
|
||||
// (ie., their UIDs) in memcached to speed up -hasMemberWithUID.
|
||||
[[SOGoCache sharedCache] setValue: [logins componentsJoinedByString: @","]
|
||||
forKey: [NSString stringWithFormat: @"%@+%@", _identifier, _domain]];
|
||||
[self logWithFormat: @"Cached %i members for group %@: %@", [logins count], _identifier, [logins componentsJoinedByString: @","]];
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -350,8 +341,7 @@
|
||||
currentUID = [[_members objectAtIndex: count] login];
|
||||
rc = [memberUID isEqualToString: currentUID];
|
||||
}
|
||||
if (!rc)
|
||||
[self logWithFormat: @"User %@ is not a member of group %@", memberUID, _identifier];
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -372,8 +362,6 @@
|
||||
|
||||
a = [value componentsSeparatedByString: @","];
|
||||
rc = [a containsObject: memberUID];
|
||||
if (!rc)
|
||||
[self logWithFormat: @"User %@ is not a member of group %@ (cached)", memberUID, _identifier];
|
||||
}
|
||||
|
||||
return rc;
|
||||
|
||||
Reference in New Issue
Block a user