mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-03-26 08:32:44 +00:00
See ChangeLog
Monotone-Parent: 57cbcf45049bbaef379f632ffc126cbef957d953 Monotone-Revision: 834fb725cc2c056023365e8279ac4c8fd1d4a94c Monotone-Author: ludovic@Sophos.ca Monotone-Date: 2008-11-23T15:26:14 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -1,3 +1,11 @@
|
||||
2008-11-23 Ludovic Marcotte <lmarcotte@inverse.ca>
|
||||
|
||||
* UI/Scheduler/UIxComponentEditor.m - _loadAttendees
|
||||
We set the name to the rfc822 email address if the
|
||||
cn is not available. This avoid NOT showing attendees
|
||||
from the Web interface when only the email address
|
||||
was specified from the attendee list.
|
||||
|
||||
2008-11-23 Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
|
||||
* SoObjects/SOGo/SOGoUserFolder.m ([SOGoUserFolder
|
||||
|
||||
@@ -177,7 +177,11 @@ iRANGE(2);
|
||||
attendees = [[component attendees] objectEnumerator];
|
||||
while ((currentAttendee = [attendees nextObject]))
|
||||
{
|
||||
[names appendFormat: @"%@,", [currentAttendee cn]];
|
||||
if ([[currentAttendee cn] length])
|
||||
[names appendFormat: @"%@,", [currentAttendee cn]];
|
||||
else
|
||||
[names appendFormat: @"%@,", [currentAttendee rfc822Email]];
|
||||
|
||||
[emails appendFormat: @"%@,", [currentAttendee rfc822Email]];
|
||||
uid = [um getUIDForEmail: [currentAttendee rfc822Email]];
|
||||
if (uid != nil)
|
||||
|
||||
Reference in New Issue
Block a user