]> err.no Git - scalable-opengroupware.org/blobdiff - ChangeLog
git-svn-id: http://svn.opengroupware.org/SOGo/inverse/trunk@1265 d1b88da0-ebda-0310...
[scalable-opengroupware.org] / ChangeLog
index e91bb16d2f029eaf15d08a8e751c2bbf8e241b6d..1f711462f46b8fef09cd80085b55945303c9a4b5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,607 @@
+2007-11-18  Wolfgang Sourdeau  <wsourdeau@inverse.ca>
+
+       * UI/Scheduler/UIxTaskEditor.m ([UIxTaskEditor -saveAction]):
+       invoke saveComponent:.
+
+       * UI/Scheduler/UIxComponentEditor.m ([UIxComponentEditor -hasOrganizer])
+       ([UIxComponentEditor -organizerName]): new template accessor
+       related to displaying the event's organizer.
+       ([-containsConflict:_component]): removed method.
+       ([UIxComponentEditor -takeValuesFromRequest:_rqinContext:_ctx]):
+       set RSVP to "TRUE" on each attendee.
+
+       * UI/Scheduler/UIxAppointmentEditor.m ([UIxAppointmentEditor
+       -saveAction]): invoke saveComponent:.
+
+       * UI/MailPartViewers/UIxMailPartICalViewer.m
+       ([UIxMailPartICalViewer -isLoggedInUserTheOrganizer]): make use of
+       the -userIsOrganizer: category method.
+       ([-isLoggedInUserAnAttendee]): make use of -userIsParticipant:.
+       ([UIxMailPartICalViewer -hasSenderStatusChanged]): new template
+       accessor that determines whether the "Update" button should be
+       displayed.
+
+       * UI/MailPartViewers/UIxMailPartICalActions.m
+       ([UIxMailPartICalActions -deleteFromCalendarAction]): implemented
+       action.
+       ([UIxMailPartICalActions -updateUserStatusAction]): implemented
+       action.
+
+       * UI/Common/UIxPageFrame.m ([UIxPageFrame
+       -setCssFiles:newCSSFiles]): new accessor that enables the
+       sub-templates to specify extra CSS files to load.
+
+       * SoObjects/SOGo/SOGoUser.m ([SOGoUser
+       -homeFolderInContext:context]): cache the home folder of the user
+       object instead of the current user.
+
+       * SoObjects/SOGo/SOGoGCSFolder.m ([SOGoGCSFolder
+       -deleteEntriesWithIds:ids]): invokes the "prepareDelete" optional
+       method if the child object implements it.
+
+       * SoObjects/SOGo/SOGoContentObject.m ([-setContentString:])
+       removed method.
+
+       * SoObjects/SOGo/LDAPSource.m ([LDAPSource
+       -setBaseDN:newBaseDNIDField:newIDFieldCNField:newCNFieldUIDField:newUIDFieldmailFields:newMailFieldsandBindFields:newBindFields]):
+       take a new "mailFields" parameter defining an array of fields
+       where to look at when searching the user's emails. It defaults to
+       the standard "mail" LDAP field.
+
+       * SoObjects/Appointments/SOGoAptMailICalReply.[hm]: new
+       SoComponent implementing a template for ITIP replies.
+
+       * SoObjects/Appointments/iCalPerson+SOGo.m ([iCalPerson
+       -mailAddress]): new method that returns a properly formatted email
+       address for the specified person entry.
+       ([iCalPerson -uid]): new method that tests whether the user is
+       known to the system and if so, returns its user id.
+
+       * SoObjects/Appointments/iCalPerson+SOGo.[hm]: new category module.
+
+       * SoObjects/Appointments/iCalEventChanges+SOGo.m
+       ([iCalEventChanges -sequenceShouldBeIncreased]): determine whether
+       the changes involved need a sequence inscrease, based on the
+       RFC2446 (ITIP).
+
+       * SoObjects/Appointments/iCalEventChanges+SOGo.[hm]: new category
+       module.
+
+       * SoObjects/Appointments/iCalEvent+SOGo.m ([iCalEvent
+       -isStillRelevant]): new overriden method determining the relevance
+       of the current event based on its end date.
+
+       * SoObjects/Appointments/iCalEvent+SOGo.[hm]: new category module.
+
+       * SoObjects/Appointments/iCalEntityObject+SOGo.m
+       ([iCalEntityObject -attendeeUIDs]): new category methods that
+       returns an array containing the uids of the system-know attendees.
+       ([iCalEntityObject -isStillRelevant]): new template method.
+       ([iCalEntityObject -itipEntryWithMethod:method]): clone the
+       current entry calendar with the specified ITIP method.
+       ([iCalEntityObject -attendeesWithoutUser:user]): returns an array
+       of attendees while making sure the specified user is not listed.
+
+       * SoObjects/Appointments/SOGoCalendarComponent.m
+       ([SOGoCalendarComponent -calendar:create:secure]): new name for
+       -calendar:. Added a "secure" parameter that specifies whether a
+       stripped calendar instance is needed or not. Also, we no longer
+       cache the content to simplify handling of new data.
+       ([SOGoCalendarComponent -component:create:secure]): same as above.
+       ([SOGoCalendarComponent
+       -sendEMailUsingTemplateNamed:_pageNameforOldObject:_oldObjectandNewObject:_newObjecttoAttendees:_attendees]):
+       test whether the component is "still relevant" before sending an
+       email...
+       ([SOGoCalendarComponent -sendResponseToOrganizer]): new method for
+       sending ITIP replies.
+       ([SOGoCalendarComponent -getUIDsForICalPerson:iCalPerson]):
+       removed method. Replaced with -[iCalPerson uid] category method.
+
+       * SoObjects/Appointments/SOGoAppointmentObject.[hm]: rewrote
+       class. No longer override saveContentString:,
+       saveContentString:baseSequence:, .... Implemented the
+       saveComponent: and the prepareDelete methods instead. Those
+       methods are called only from the web methods. This avoids the
+       risks related to email sending and changes propagation.
+
+       * UI/Common/UIxTabItem.m: removed useless class module.
+
+       * UI/Common/UIxTabView.[hm]: removed useless class module.
+
+       * UI/Common/UIxPrintPageFrame.m: removed useless class module.
+
+       * UI/Common/UIxAppNavView.m: removed useless class module.
+
+2007-11-16  Ludovic Marcotte <ludovic@inverse.ca>
+
+        * SoObjects/Mailer/SOGoMailBaseObject.m
+       Fixed typo.
+
+       * SoObjects/Mailer/SOGoMailBodyPart.m
+       We also grok image/jpeg and return the SOGoMailBodyPart
+       for attachments fetching.
+
+       * SoObjects/Mailer/SOGoMailObject+Draft.m
+       Prevent a crash in case body decoding failed during
+       a reply.
+
+       * SoObjects/Mailer/SOGoMailObject.m
+       Improved body decoding during a reply to also try
+       latin1 as an encoding.
+
+       * UI/MailPartViewers/UIxMailRenderingContext.m
+       Greatly improved the display mechanisms for emails.
+       Also properly consider the content disposition for
+       most content types.
+
+       * UI/MailerUI/UIxMailToSelection.m
+       Removed worthless code.
+
+       * UI/WebServerResources/MailerUI.css
+       CSS fix for table views.
+
+2007-11-15  Ludovic Marcotte <ludovic@inverse.ca>
+
+        * UI/WebServerResources/MailerUI.js
+        We now check for empty selection and warn the
+        user about it when deleting messages
+        * SoObjects/Mailer/SOGoDraftObject.m
+        Correctly check for the presence of a subject
+        before attempting to forward a message from
+        the Drafts folder.
+
+        * SoObjects/Mailer/SOGoMailObject+Draft.m
+        We no longer use "[Fwd: ]" but simply "Fwd:"
+        when forwarding email messages.
+        * SoObjects/SOGo/SOGoUser.m
+        Modified the default forwarding format to be
+        inline instead of "attachment".
+        * SoObjects/Mailer/SOGoDraftObject.m
+        We now create and use a NGMimeContentDispositionHeaderField
+        in order to avoid encoding the whole Content-Disposition
+        header in case a non-ASCII char is present!
+
+2007-11-13  Wolfgang Sourdeau  <wsourdeau@inverse.ca>
+
+       * SoObjects/SOGo/iCalEntityObject+Utilities.m ([iCalEntityObject
+       -findParticipant:user]): new method based on the one removed from
+       SOGoCalendarComponent below.
+
+       * SoObjects/SOGo/iCalEntityObject+Utilities.[hm]: new category
+       module for iCalEntityObject.
+
+       * SoObjects/Appointments/SOGoCalendarComponent.m
+       ([-findParticipant:user]): removed method.
+
+       * SoObjects/SOGo/SOGoContentObject.m ([SOGoContentObject
+       -setContentString:newContent]): new accessor method.
+       ([SOGoContentObject
+       -saveContentString:newContentbaseVersion:newBaseVersion]): invoke
+       -[self setContentString:].
+
+       * UI/MailPartViewers/UIxMailPartICalViewer.m
+       ([UIxMailPartICalViewer -authorativeEvent]): returns the most
+       up-to-date event.
+       ([-isLoggedInUserTheOrganizer]): make use of -[SOGoUser
+       hasEmail:].
+
+       * UI/MailPartViewers/UIxMailPartTextViewer.m ([NSString
+       -stringByConvertingCRLNToHTML]): fixed crashes due to overflows in
+       temporary buffer we are handing.
+
+       * UI/Scheduler/UIxComponentEditor.m ([UIxComponentEditor
+       -setComponent:newComponent]): check that newComponent is non-nil
+       before replacing the default values.
+       ([UIxComponentEditor -calendarList]): privacy is already an ivar.
+       We don't need to refetch it.
+
+2007-11-12  Wolfgang Sourdeau  <wsourdeau@inverse.ca>
+
+       * SoObjects/Mailer/SOGoDraftObject.m ([SOGoDraftObject
+       -fetchMailForReplying:sourceMailtoAll:toAll]): remove the current
+       user from the list of recipients and make sure no other address is
+       counted twice.
+
+       * UI/MailPartViewers/UIxMailPartTextViewer.m ([NSString
+       -stringByConvertingCRLNToHTML]): build the returned NSString
+       without the ending \0.
+
+2007-11-09  Wolfgang Sourdeau  <wsourdeau@inverse.ca>
+
+       * UI/MailPartViewers/UIxMailPartICalViewer.m
+       ([UIxMailPartICalViewer -acceptLink])
+       ([UIxMailPartICalViewer -declineLink])
+       ([UIxMailPartICalViewer -tentativeLink]): removed useless methods.
+
+       * UI/MailPartViewers/UIxMailPartICalAction.m
+       ([UIxMailPartICalAction -addToCalendarAction])
+       ([UIxMailPartICalAction -deleteFromCalendarAction]): new stub
+       methods.
+
+       * SoObjects/Mailer/SOGoMailObject.m ([SOGoMailObject
+       -lookupImap4BodyPartKey:]): make use of the new method below.
+
+       * SoObjects/Mailer/SOGoMailBodyPart.m ([SOGoMailBodyPart
+       +bodyPartClassForMimeType:mimeTypeinContext:_ctx]): new method
+       that returns an appropriate Class depending on a given mime type.
+
+       * UI/SOGoUI/UIxComponent.m ([UIxComponent -canCreateOrModify]):
+       new boolean accessor that determines whether someone can create
+       (i.e. modify a new entry) or modify an existing entry.
+
+       * SoObjects/SOGo/SOGoObject.m ([SOGoObject
+       -lookupName:lookupNameinContext:localContextacquire:acquire]):
+       overriden method to bind looked up keys to So methods but by
+       avoiding a call to toOneRelationshipKeys. This will be the top
+       method of the chain, meant to override SoObject's behaviour.
+
+       * SoObjects/Contacts/SOGoContactLDAPFolder.m
+       ([SOGoContactLDAPFolder
+       -lookupName:objectNameinContext:lookupContextacquire:acquire]):
+       removed hack to prevent [super lookupName...] to read the entire
+       LDAP directory when looking up a record.
+
+2007-11-08  Wolfgang Sourdeau  <wsourdeau@inverse.ca>
+
+       * SoObjects/SOGo/SOGoGCSFolder.m ([SOGoGCSFolder
+       +folderWithSubscriptionReference:referenceinContainer:aContainer]):
+       fixed a leak.
+
+       * UI/MailPartViewers/UIxMailPartHTMLViewer.m
+       ([UIxMailPartHTMLViewer -_attachmentIds]): the reference was one
+       character too short, which cause the images not to be displayed
+       sometimes and crashes to happen whenever the references on a
+       message were wrong (due to bugs in SOPE).
+
+       * UI/MailerUI/UIxMailListView.m ([UIxMailListView
+       -hasMessageAttachment]): consider an attachment any content that
+       has a non-nil disposition.
+
+       * SoObjects/SOGo/SOGoParentFolder.m ([SOGoParentFolder
+       -newFolderWithName:nameandNameInContainer:newNameInContainer]):
+       fixed method to make use of the parameters instead of the useless
+       remains that weren't even initialized.
+
+       * SoObjects/Appointments/SOGoAppointmentObject.m
+       ([SOGoAppointmentObject -saveContentString:_iCalbaseSequence:_v]):
+       don't propagate the event among the attendees if this is not an
+       "so" request.
+       ([SOGoAppointmentObject -deleteWithBaseSequence:]): same as above.
+
+       * Main/SOGo.m ([SOGo -authenticatorInContext:context]): make use
+       of the new category method below.
+
+       * SoObjects/SOGo/WORequest+SOGo.m ([WORequest
+       -handledByDefaultHandler]): new method that returns whether this
+       is an "so" or alike request.
+
+       * SoObjects/SOGo/WORequest+SOGo.[hm]: new category module.
+
+       * SoObjects/SOGo/SOGoParentFolder.m ([SOGoParentFolder
+       -newFolderWithName:nameandNameInContainer:newNameInContainer]):
+       write the new folder's name in the folder cache.
+
+       * UI/Scheduler/UIxCalendarSelector.m ([UIxCalendarSelector
+       -calendars]): same as below.
+
+       * UI/Contacts/UIxContactsListViewContainer.m
+       ([UIxContactsListViewContainer -currentContactFolderName]):
+       translate the display name if its the default one.
+
+       * SoObjects/Appointments/SOGoAppointmentFolder.m
+       ([SOGoAppointmentFolder -create]): overriden method that invokes
+       its ancestor and then activate itself within the user settings.
+
+       * SoObjects/SOGo/SOGoParentFolder.m ([SOGoParentFolder
+       -appendPersonalSources]): when the user is the owner of the
+       current folder, we create the "personal" folder if it doesn't
+       exist by invoking "create".
+
+       * SoObjects/SOGo/AgenorUserDefaults.m ([AgenorUserDefaults
+       -primaryFetchProfile]): when no row is returned, we initialize
+       "values" to a new dictionary. This solves a bug where the defaults
+       would not be initialized properly.
+
+2007-11-07  Wolfgang Sourdeau  <wsourdeau@inverse.ca>
+
+       * SoObjects/SOGo/SOGoGCSFolder.m ([-compare:otherFolder]): method
+       moved into the SOGoFolder class.
+
+       * SoObjects/Appointments/SOGoAppointmentObject.m
+       ([SOGoAppointmentObject -saveContentString:_iCalinUIDs:_uids]):
+       simplified method by directly building a similar appointment
+       object with the current folder as container.
+
+       * SoObjects/Contacts/SOGoContactLDAPFolder.m
+       ([SOGoContactLDAPFolder
+       -appendObject:objectwithBaseURL:baseURLtoREPORTResponse:r]):
+       take the content of an object returned by
+       lookupName:inContext:acquire: instead of the dictionary passed as
+       parameter since it represents a flattened entry return by
+       lookupContactsWithFilter...
+
+       * SoObjects/Contacts/SOGoFolder+CardDAV.m: NSObject+CardDAV
+       category renamed to SOGoFolder+CardDAV.
+
+       * SoObjects/SOGo/SOGoParentFolder.m: no longer a subclass of
+       SOGoObject, but of SOGoFolder instead.
+
+       * SoObjects/SOGo/SOGoUserFolder.m: no longer a subclass of
+       SOGoGCSFolder, but of SOGoFolder instead.
+
+       * SoObjects/Appointments/SOGoAppointmentFolder.m
+       ([SOGoAppointmentFolder -lookupCalendarFolderForUID:uid]): fixed
+       to take the new SOGoParentFolder class into account. Also, create
+       the personal folder if it doesn't exist.
+
+       * SoObjects/SOGo/SOGoFolder.[hm]: new class module implementing
+       the parent of all SOGo containers.
+
+       * SoObjects/SOGo/SOGoGCSFolder.[hm]: SOGoFolder class renamed to
+       SOGoGCSFolder.
+
+2007-11-06  Wolfgang Sourdeau  <wsourdeau@inverse.ca>
+
+       * UI/MailerUI/UIxMailToSelection.m ([UIxMailToSelection
+       -getAddressesFromFormValues:_dict]): take NSString and NSArray
+       values. Ignore addresses with a length of 0.
+
+       * SoObjects/SOGo/SOGoUser.m ([SOGoUser -mailAccounts]): we now
+       fetch the accounts from the user defaults and create default
+       values if missing.
+
+2007-11-05  Wolfgang Sourdeau  <wsourdeau@inverse.ca>
+
+       * UI/MailPartViewers/UIxMailPartTextViewer.m
+       ([UIxMailPartTextViewer -flatContentAsString]): re-added
+       conversion of line-break to sequences of HTML "BR", with a fast
+       algorithm in C.
+
+       * UI/MailPartViewers/UIxMailPartViewer.m ([UIxMailPartViewer
+       -flatContentAsString]): simplified method now that we know
+       -[NSString stringWithData:usingEncodingNamed:] has a more robust
+       implementation.
+
+       * UI/MailerUI/UIxMailListView.m ([UIxMailListView
+       -showToAddress]): the answer is cached.
+
+       * UI/Common/UIxObjectActions.m ([UIxObjectActions +initialize]):
+       read "SOGoACLsSendEMailNotifications" from the user defaults to
+       determiner whether to send an email when a user is added or
+       removed from an object's acl.
+
+       * SoObjects/Mailer/SOGoMailObject+Draft.m ([SOGoMailObject
+       -contentForEditing]): make sure the htmlContent flag is set to NO
+       when we select the textual part. Also we select only the relevant
+       keys for fetching.
+
+       * UI/MailerUI/WOContext+UIxMailer.m ([-mailSubjectFormatter]):
+       removed method.
+
+       * UI/MailerUI/UIxMailView.m ([UIxMailView -messageSubject]): new
+       method replacing -objectTitle, written like the ones below.
+
+       * UI/MailerUI/UIxMailListView.m ([UIxMailListView
+       -messageSubject]): rewrote method to act the one below.
+
+       * UI/MailPartViewers/UIxMailPartMessageViewer.m
+       ([UIxMailPartMessageViewer -messageSubject]): new method that
+       returns the decoded mail subject or "Untitled" if the subject is
+       empty.
+
+       * SoObjects/Mailer/SOGoMailObject.m ([SOGoMailObject
+       -decodedSubject]): new method that invoke -decodedSubject from the
+       NSString and NSData class, depending on the identity of the
+       subject obtained from the envelope.
+
+       * SoObjects/Mailer/SOGoMailObject+Draft.m ([SOGoMailObject
+       -subjectForReply]): take the value of -[SOGoMail decodedSubject]
+       instead of the subject of the envelope.
+       ([SOGoMailObject -filenameForForward]): same as above.
+       ([SOGoMailObject -subjectForForward]): same as above.
+
+       * SoObjects/Mailer/NSString+Mail.m ([NSString -decodedSubject]):
+       same as below for NSString.
+
+       * SoObjects/Mailer/NSData+Mail.m ([NSData -decodedSubject]): new
+       method that decodes the subject of a mail taken as an NSData
+       instance. Handling the exceptions and the badly formatted headers.
+
+       * UI/MailerUI/UIxSubjectFormatter.[hm]: dropped class module.
+
+2007-11-04  Wolfgang Sourdeau  <wsourdeau@inverse.ca>
+
+       * SoObjects/SOGo/SOGoFolder.m ([SOGoFolder
+       -deleteEntriesWithIds:ids]): make sure the objects returned by
+       lookupName:... are not instances of NSException.
+
+2007-11-03  Ludovic Marcotte  <ludovic@inverse.ca>
+
+       * UI/Scheduler/UIxAppointmentEditor.m
+       Fixed monthly recurrences support. 
+
+2007-11-01  Wolfgang Sourdeau  <wsourdeau@inverse.ca>
+
+       * SoObjects/Appointments/SOGoAppointmentObject.m
+       ([SOGoAppointmentObject -deleteWithBaseSequence:]): an email was
+       sent when modifying an event, when the event was considered
+       relevant. The same thing is now implemented for event deletion.
+
+       * SoObjects/SOGo/AgenorUserDefaults.m ([AgenorUserDefaults
+       -primaryFetchProfile]): make sure that the deserialized "values"
+       is an instance of NSMutableDictionary, otherwise we override it
+       with one.
+
+       * SoObjects/Mailer/SOGoMailObject+Draft.m ([SOGoMailObject
+       -contentForReply]): make use of the SOGoMailReply WO page.
+
+       * SoObjects/Mailer/SOGoMailReply.[hm]: new class module copied
+       from SOGoMailForward to handle mail replies instead. Only three
+       methods remaining: date, from and messageBody. The latter is
+       quoted properly.
+
+       * SoObjects/Mailer/SOGoDraftObject.m ([SOGoDraftObject
+       -fetchMailForForwarding:sourceMail]): fetch attachments for
+       forwarded messages.
+
+       * UI/MailerUI/UIxMailListView.m ([UIxMailListView
+       -hasMessageAttachment]): initialize hasAttachment with "NO" to
+       avoid false positives.
+
+       * OGoContentStore/OCSiCalFieldExtractor.m ([OCSiCalFieldExtractor -extractQuickFieldsFromEvent:_event])
+       ([OCSiCalFieldExtractor -extractQuickFieldsFromTodo:_task]):
+       set title to an empty string where the event/task summary is null.
+
+       * SoObjects/Mailer/SOGoDraftObject.m ([SOGoDraftObject
+       -setHeaders:newHeaders]): make sure there is a message id in the
+       headers dictionary, if not, generate one.
+       ([SOGoDraftObject -fetchMailForEditing:sourceMail]): retrieve the
+       message id from the existing draft.
+       ([SOGoDraftObject -mimeHeaderMapWithHeaders:_headers]): store the
+       message id in the header map.
+
+       * UI/MailerUI/UIxMailFolderActions.m ([UIxMailFolderActions
+       -deleteFolderAction]): no longer prefix the target folder with
+       "folder".
+
+       * UI/MailerUI/UIxMailAccountActions.m ([UIxMailAccountActions
+       -listMailboxesAction]): base the folder type on the folder
+       traversal path.
+
+       * SoObjects/Mailer/SOGoMailFolder.m ([SOGoMailFolder
+       -lookupName:_keyinContext:acquire:_acquire]): compare the full
+       traversal to the potential looked up folder with the special
+       folder names and return an object with the appropriate
+       SOGoMailFolder subclass.
+
+       * SoObjects/Mailer/SOGoMailBaseObject.m ([SOGoMailBaseObject
+       -traversalFromMailAccount]): don't prepend the whole string with
+       "/".
+
+       * SoObjects/Mailer/SOGoMailAccount.m
+       ([-lookupSentFolder:_keyinContext:_ctx])
+       ([-lookupDraftsFolder:_keyinContext:_ctx])
+       ([-lookupTrashFolder:_keyinContext:_ctx])
+       ([-lookupFiltersFolder:_key:_ctx]): removed methods.
+       ([SOGoMailAccount -inboxFolderNameInContext:])
+       ([SOGoMailAccount -draftsFolderNameInContext:_ctx])
+       ([SOGoMailAccount -sentFolderNameInContext:])
+       ([SOGoMailAccount -trashFolderNameInContext:]): no longer prefixes
+       the resulting name with "prefix" since we might return a nested
+       foldername.
+       ([SOGoMailAccount -allFolderPaths]): prefixes all special folder
+       names with "/". Sorts the resulting folder list with
+       localizedCaseInsensitiveCompare: instead of
+       caseInsensitiveCompare:. No longer use the -[lookupXXX] methods
+       that were removed, instead, we choose the appropriate class
+       depending on the folder name. And since we are in SOGoMailAccount,
+       we don't have to compute a traversal path to match the key with
+       the foldernames.
+       ([SOGoMailAccount
+       -folderWithTraversal:traversalandClassName:className]): new method
+       that returns an instance of the specified SOGoMailFolder subclass,
+       based on the traversal path passed as parameter.
+       ([SOGoMailAccount -inboxFolderInContext:_ctx])
+       ([SOGoMailAccount -draftsFolderInContext:_ctx])
+       ([-sentFolderInContext:_ctx])
+       ([SOGoMailAccount -trashFolderInContext:_ctx]): invoke the new
+       -folderWithTraversal:andClassName: method described above.
+
+       * SoObjects/SOGo/AgenorUserDefaults.m ([AgenorUserDefaults
+       -primaryFetchProfile]): make use of -[NSPropertyListSerialization
+       propertyListFromData:mutabilityOption:format:errorDescription:] to
+       deserialize the plist. Removed variant for libFoundation since it
+       should support the above.
+       ([AgenorUserDefaults -generateSQLForInsert])
+       ([AgenorUserDefaults -generateSQLForUpdate]): make use of
+       -[NSPropertyListSerialization
+       dataFromPropertyList:format:errorDescription:] to serialize the
+       plist. Removed variant for libFoundation since it should support
+       the above. Escape the backslashes from the resulting string.
+
+2007-10-31  Wolfgang Sourdeau  <wsourdeau@inverse.ca>
+
+       * SoObjects/Mailer/SOGoMailFolder.[hm]: added a new subclass of
+       SOGoMailFolder: SOGoMailSpecialFolder.
+
+       * SoObjects/Mailer/SOGoMailAccount.m ([SOGoMailAccount
+       -traversalFromMailAccount]): overridden method that returns the
+       initialized mutable string.
+       ([SOGoMailAccount -allFolderPaths]): take the special folder paths
+       with -traversalFromMailAccount and reposition them at the
+       beginning of the list. By creating the special folders during that
+       request, we also make sure that the folder exists thanks to the
+       new initialisation method of the new "SOGoSpecialMailFolder"
+       class.
+       ([SOGoMailAccount -lookupSentFolder:_keyinContext:_ctx]): new
+       method.
+       ([SOGoMailAccount -lookupTrashFolder:_keyinContext:_ctx]): new
+       method.
+       ([SOGoMailAccount -lookupName:_keyinContext:acquire:_flag]): no
+       longer use lookupImap4Folder.
+       ([SOGoMailAccount -lookupImap4Folder:_keyinContext:_ctx]): removed
+       method.
+
+       * SoObjects/Mailer/SOGoMailBaseObject.m ([SOGoMailBaseObject
+       -traversalFromMailAccount]): new method that returns the full
+       IMAP4 path to the object.
+
+       * SoObjects/SOGo/SOGoUser.m ([SOGoUser +initialize]): retain
+       "superUsernames" after fetching it from the ud.
+
+2007-10-30  Wolfgang Sourdeau  <wsourdeau@inverse.ca>
+
+       * UI/Scheduler/UIxCalListingActions.m ([UIxCalListingActions
+       -eventsListAction]): substitude the start and end date with their
+       UTC counterpart, taking into account the offset from UTC related
+       to those dates instead of the current one. This renders
+       -[UIxCalMainView -userUTCOffset] obsolete because the computings
+       that occured in javascript are now done server-side.
+
+       * UI/Scheduler/UIxCalMainView.m ([UIxCalMainView -userUTCOffset]):
+       removed obsolete method.
+
+       * SoObjects/Mailer/NSString+Mail.m ([NSString -htmlToText]): new
+       method converting html content to plain text.
+
+       * SoObjects/Mailer/NSString+Mail.[hm]: new category module
+       enhancing NSString with utility methods pertaining to mail handling.
+
+       * SoObjects/Mailer/SOGoMailObject.m
+       ([-shouldFetchPartOfType:_typesubtype:_subtype]): removed obsolete method.
+       ([SOGoMailObject
+       -addRequiredKeysOfStructure:infopath:ptoArray:keysacceptedTypes:types]):
+       modified method to be always recursive and to take an array of the
+       accepted mime-types as parameter. The returned array now contains
+       the mime-type as well as the part keys.
+
+       * SoObjects/Mailer/SOGoMailObject+Draft.m ([SOGoMailObject
+       -contentForEditingOnParts:_prtskeys:_k]): removed obsolete method.
+       ([SOGoMailObject -contentForEditing]): rewrote method to take into
+       account the first text/plain part or the first text/html part
+       converted to text/plain with our new -[NSString htmlToText]
+       category method.
+
+       * UI/MailerUI/UIxMailActions.m ([-replyToAllAction]): invoke
+       "replyToAll:" with YES as parameter instead of NO.
+
+2007-10-29  Wolfgang Sourdeau  <wsourdeau@inverse.ca>
+
+       * SoObjects/Mailer/SOGoMailBodyPart.m ([SOGoMailBodyPart
+       -davContentType]): ignore any possible parameter taken from the
+       mime-info of the body part.
+
+       * UI/MailerUI/UIxMailListView.m ([UIxMailListView
+       -lastFirstMessageNumber]): new accessor that returns the first
+       message number of the last series of messages.
+       ([UIxMailListView -fetchKeys]): request the bodystructure for each
+       listed message.
+       ([UIxMailListView -hasMessageAttachment]): extract the attachment
+       information from the message bodystructure.
+
 2007-10-26  Wolfgang Sourdeau  <wsourdeau@inverse.ca>
 
        * SoObjects/Mailer/SOGoMailBodyPart.m ([SOGoMailBodyPart