diff --git a/NEWS b/NEWS index b25c3e6ec..31c1d2f62 100644 --- a/NEWS +++ b/NEWS @@ -39,6 +39,7 @@ Bug fixes - [web] fixed default priority of sent messages (#3542) - [web] removed double-quotes from Chinese (Taiwan) translations that were breaking templates - [web] fixed unseen count retrieval of nested IMAP folders + - [web] properly extract the mail column values from an SQL contacts source (#3544) - [eas] allow EAS attachments get on 2nd-level mailboxes (#3505) - [eas] fix EAS bday shift (#3518) diff --git a/SoObjects/Contacts/SOGoContactSourceFolder.m b/SoObjects/Contacts/SOGoContactSourceFolder.m index 857c5362c..96f3f37db 100644 --- a/SoObjects/Contacts/SOGoContactSourceFolder.m +++ b/SoObjects/Contacts/SOGoContactSourceFolder.m @@ -249,6 +249,8 @@ // mail => emails[] data = [oldRecord objectForKey: @"c_emails"]; + if (!data) + data = [oldRecord objectForKey: @"mail"]; if (data) { if ([data isKindOfClass: [NSArray class]])