]> err.no Git - scalable-opengroupware.org/commitdiff
emailForUser -> [activeUser email]
authorznek <znek@d1b88da0-ebda-0310-925b-ed51d893ca5b>
Mon, 18 Jul 2005 09:00:23 +0000 (09:00 +0000)
committerznek <znek@d1b88da0-ebda-0310-925b-ed51d893ca5b>
Mon, 18 Jul 2005 09:00:23 +0000 (09:00 +0000)
git-svn-id: http://svn.opengroupware.org/SOGo/trunk@782 d1b88da0-ebda-0310-925b-ed51d893ca5b

SOGo/UI/MailerUI/ChangeLog
SOGo/UI/MailerUI/UIxMailEditor.m
SOGo/UI/MailerUI/Version

index f533e8521122338b96a206abec8b47ffec0c8698..6b97920e457763dd4b166fb0c48fb0c3c16ad974 100644 (file)
@@ -1,3 +1,8 @@
+2005-07-18  Marcus Mueller  <znek@mulle-kybernetik.com>
+
+        * UIxMailEditor.m: removed -emailForUser usage and replaced with
+          'official' activeUser API (v0.9.142)
+
 2005-07-15  Helge Hess  <helge.hess@opengroupware.org>
 
        * product.plist: only enable folder add/remove buttons when the user
index 449744cb9102770385de2655ede973d01681d78e..332722229b6595c7e69ed88d28fca612fad0ba43 100644 (file)
 #include <SoObjects/Mailer/SOGoMailFolder.h>
 #include <SoObjects/Mailer/SOGoMailAccount.h>
 #include <SoObjects/SOGo/WOContext+Agenor.h>
+#include <SoObjects/SOGo/SOGoUser.h>
 #include <NGMail/NGMimeMessage.h>
 #include <NGMail/NGMimeMessageGenerator.h>
 #include "common.h"
 
-@interface UIxComponent (Scheduler_Privates)
-- (NSString *)emailForUser;
-@end
-
 @implementation UIxMailEditor
 
 static BOOL         keepMailTmpFile    = NO;
@@ -123,7 +120,7 @@ static NSArray      *infoKeys = nil;
 }
 - (NSString *)from {
   if (![self->from isNotNull])
-    return [self emailForUser];
+    return [[[self context] activeUser] email];
   return self->from;
 }
 
@@ -186,7 +183,7 @@ static NSArray      *infoKeys = nil;
     return self->fromEMails;
   
   uid     = [[self user] login];
-  primary = [self emailForUser];
+  primary = [[[self context] activeUser] email];
   if (![[self context] isAccessFromIntranet]) {
     self->fromEMails = [[NSArray alloc] initWithObjects:&primary count:1];
     return self->fromEMails;
index ccd9c65e0fb9d7137e9359bf59f57e9396011156..af05addd20e9b05128334e50e3203ba21fb6c04d 100644 (file)
@@ -1,6 +1,6 @@
 # version file
 
-SUBMINOR_VERSION:=141
+SUBMINOR_VERSION:=142
 
 # v0.9.140 requires SoObjects/Mailer v0.9.100
 # v0.9.134 requires libSOGo          v0.9.41