]> err.no Git - scalable-opengroupware.org/commitdiff
added httpd.conf, added an ivar/access
authorhelge <helge@d1b88da0-ebda-0310-925b-ed51d893ca5b>
Sun, 3 Oct 2004 14:40:53 +0000 (14:40 +0000)
committerhelge <helge@d1b88da0-ebda-0310-925b-ed51d893ca5b>
Sun, 3 Oct 2004 14:40:53 +0000 (14:40 +0000)
git-svn-id: http://svn.opengroupware.org/SOGo/trunk@348 d1b88da0-ebda-0310-925b-ed51d893ca5b

SOGo/SOGo.conf [new file with mode: 0644]
SOGo/UI/Mailer/README
SOGo/UI/Mailer/UIxMailView.m

diff --git a/SOGo/SOGo.conf b/SOGo/SOGo.conf
new file mode 100644 (file)
index 0000000..3c63ad1
--- /dev/null
@@ -0,0 +1,26 @@
+# SOGo config
+
+AliasMatch /SOGo/so/ControlPanel/Products/(.*)/Resources/(.*) \
+       /Users/helge/GNUstep/Library/SOGo/$1.SOGo/Contents/Resources/$2
+
+<LocationMatch "^/SOGo*">
+SetHandler ngobjweb-adaptor
+SetAppPort 25000
+</LocationMatch>
+
+<LocationMatch "^/SOGo/so/ControlPanel/Products/.*UI/Resources/.*png">
+SetHandler default-handler
+</LocationMatch>
+
+<LocationMatch "^/SOGo/so/ControlPanel/Products/.*UI/Resources/.*gif">
+SetHandler default-handler
+</LocationMatch>
+
+<LocationMatch "^/SOGo/so/ControlPanel/Products/.*UI/Resources/.*css">
+SetHandler default-handler
+</LocationMatch>
+
+<LocationMatch "^/SOGo/so/ControlPanel/Products/.*UI/Resources/.*js">
+SetHandler default-handler
+</LocationMatch>
+
index 6fdb05230e0eebdefb870fd435e6d359e24e90ce..fe93331626ff6295ba79e198d97caaec6fe8514a 100644 (file)
@@ -17,3 +17,70 @@ UIxMailListView.wox
 UIxMailMainFrame.wox
 UIxMailTree.wox
 UIxMailView.wox
+
+
+Notes
+=====
+
+Bodystructures
+==============
+
+Multiparts: multipart/MIXED, multipart/SIGNED
+
+Sample Bodystructure (GPG):
+---snip---
+  {
+    parts = (
+        {
+            bodyId = ""; 
+            description = ""; 
+            encoding = "QUOTED-PRINTABLE"; 
+            lines = 22; 
+            parameterList = {}; 
+            size = 731; 
+            subtype = PLAIN; 
+            type = text; 
+        }, 
+        {
+            bodyId = ""; 
+            description = "Esta parte del mensaje"; 
+            encoding = 7BIT; 
+            parameterList = {name = "signature.asc"; }; 
+            size = 196; 
+            subtype = "PGP-SIGNATURE"; 
+            type = application; 
+        }
+    ); 
+    subtype = SIGNED; 
+    type = multipart; 
+  }
+---snap---
+
+Sample Body Structure (Image):
+---snip---
+  {
+    parts = (
+        {
+            bodyId = ""; 
+            description = ""; 
+            encoding = BASE64; 
+            parameterList = {name = "PoseChau.jpg"; "x-unix-mode" = 0644; }; 
+            size = 58370; 
+            subtype = JPEG; 
+            type = image; 
+        }, 
+        {
+            bodyId = ""; 
+            description = ""; 
+            encoding = 7BIT; 
+            lines = 2; 
+            parameterList = {charset = "US-ASCII"; format = flowed; }; 
+            size = 57; 
+            subtype = PLAIN; 
+            type = text; 
+        }
+    ); 
+    subtype = MIXED; 
+    type = multipart; 
+  }
+---snap---
index 7276bbf6bd4b83a788e0f338a67b7656c1fdcd5a..49cd19be93ce59f2f7708ca74b903e721b012fe8 100644 (file)
@@ -25,6 +25,7 @@
 @interface UIxMailView : UIxComponent
 {
   id message;
+  id currentAddress;
 }
 
 - (BOOL)isDeletableClientObject;
 @implementation UIxMailView
 
 - (void)dealloc {
-  [self->message release];
+  [self->currentAddress release];
+  [self->message        release];
   [super dealloc];
 }
 
 /* notifications */
 
 - (void)sleep {
-  [self->message release]; self->message = nil;
+  [self->currentAddress release]; self->currentAddress = nil;
+  [self->message        release]; self->message        = nil;
   [super sleep];
 }