mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-03-03 06:06:24 +00:00
(fix) skip potentially bogus cards coming from LDAP
This commit is contained in:
@@ -2575,8 +2575,9 @@ void handle_eas_terminate(int signum)
|
||||
{
|
||||
contact = [allContacts objectAtIndex: j];
|
||||
|
||||
// We skip lists for now
|
||||
if ([[contact objectForKey: @"c_component"] isEqualToString: @"vlist"])
|
||||
// We skip lists for now and bogus entries
|
||||
if ([[contact objectForKey: @"c_component"] isEqualToString: @"vlist"] ||
|
||||
[[contact objectForKey: @"c_name"] length] == 0)
|
||||
continue;
|
||||
|
||||
// We get the LDIF entry of our record, for easier processing
|
||||
|
||||
Reference in New Issue
Block a user