From 15e4f94dc9a502cfb47026c3702985335495628e Mon Sep 17 00:00:00 2001 From: Wolfgang Sourdeau Date: Thu, 15 Apr 2010 18:26:33 +0000 Subject: [PATCH] Monotone-Parent: a19be68625a5093cfe153b4b51816f9388875b23 Monotone-Revision: 5be6c87443be578d119d408f0aa2b86f5a6bbc31 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2010-04-15T18:26:33 Monotone-Branch: ca.inverse.sogo --- ChangeLog | 26 ++++++++++++++++++++++++++ Tools/SOGoSockDOperation.m | 3 ++- 2 files changed, 28 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index d6659d6e5..6915ae3a5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,31 @@ +2010-04-15 Wolfgang Sourdeau + + * Tools/SOGoSockDOperation.m (_appendEntry:toResult:): include + "telephonenumber" in the entry information. + 2010-04-14 Wolfgang Sourdeau + * UI/WebServerResources/MailerUI.js (onMenuArchiveFolder): new + menu callback method that invokes "exportFolder" on the target + mailbox. + (saveAs): we use "window.location.href" instead of "window.open" + when exporting messages, as it avoids the flickering of opening an + ephemeral window. + + * UI/MailerUI/UIxMailFolderActions.m (-exportFolderAction): new + action that triggers the archiving of the selected folder. + + * SoObjects/Mailer/SOGoMailFolder.m + (-archiveUIDs:inArchiveNamed:inContext:): new version of + "-archiveUIDs:inContext:" taking an optional archive name as + argument, to be used as the filename of the attachment in the mime + headers of the response. Fixed a bug naming the messages following + their identifier's address rather than their identifier. We now + encode the provided filename as a qp utf-8 string when needed. + (-archiveAllMessagesInContext:): new method that uses the above + method for archiving all the messages in an archive named after + the folder's IMAP name. + * UI/WebServerResources/SchedulerUI.js (onDocumentKeydown): new callback method for handling keypresses. Initial code handles event/task deletion. diff --git a/Tools/SOGoSockDOperation.m b/Tools/SOGoSockDOperation.m index 2fdc27c12..b1bc9d930 100644 --- a/Tools/SOGoSockDOperation.m +++ b/Tools/SOGoSockDOperation.m @@ -95,7 +95,8 @@ if (!ldifFields) { ldifFields = [NSArray arrayWithObjects: @"c_cn", @"c_givenname", - @"c_mail", @"c_o", @"c_screenname", @"c_sn", nil]; + @"c_mail", @"c_o", @"c_screenname", @"c_sn", + @"c_telephonenumber", nil]; [ldifFields retain]; }