+2004-11-25 Helge Hess <helge.hess@skyrix.com>
+
+ * Defaults.plist: set WOHttpAllowHost per default to ( localhost,
+ localhost.localdomain ) (v4.5.101)
+
2004-11-24 Helge Hess <helge.hess@opengroupware.org>
* DynamicElements/WOForm.m: minor code cleanups (v4.5.100)
* use Version file for install directory location
-2004-11-04 Helge Hess <helge.hess@skyrix.com>
-
- * branched 4.3 into 4.4 and 4.5
-
2004-11-03 Marcus Mueller <znek@mulle-kybernetik.com>
* DynamicElements/*.api: provided formal specifications for all
dynamic elements in a format borrowed from WebObjects 4.51.
- (v4.3.83)
+ (v4.5.83)
+
+2004-11-03 Helge Hess <helge.hess@skyrix.com>
+ * branched 4.3 into 4.4 and 4.5
+
2004-11-03 Helge Hess <helge.hess@skyrix.com>
* WOWatchDogApplicationMain.m: disable warning on /etc server defaults
WOHttpAdaptorReceiveTimeout = 120;
WOHttpAdaptorSendTimeout = 120;
WOHttpAdaptor_LogStream = NO;
- WOHttpAllowHost = "localhost";
+ WOHttpAllowHost = (
+ "localhost",
+ "localhost.localdomain"
+ );
WOHttpTransactionUseSimpleParser = NO;
WOHttpTransactionLoggerConfig = {
"LogLevel" = "INFO";
Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
02111-1307, USA.
*/
-// $Id$
#include <NGObjWeb/WOAdaptor.h>
#include <NGObjWeb/WOCoreApplication.h>
if (ipDomain == nil)
ipDomain = [[NGInternetSocketDomain domain] retain];
- if ([[remote domain] isEqual:ipDomain]) {
+ /* always allow access for Unix domain sockets */
+ if (![[remote domain] isEqual:ipDomain])
+ return _connection;
+
+ {
/* check access */
NGInternetSocketAddress *ipAddr = (id)remote;
NSArray *allow = nil;
Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
02111-1307, USA.
*/
-// $Id$
#ifndef __WOHttpAdaptor_WORequestParser_H__
#define __WOHttpAdaptor_WORequestParser_H__
Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
02111-1307, USA.
*/
-// $Id: WORequestParser.m 1 2004-08-20 10:08:27Z znek $
#include "WORequestParser.h"
#include <NGStreams/NGBufferedStream.h>
/*
- Copyright (C) 2000-2003 SKYRIX Software AG
+ Copyright (C) 2000-2004 SKYRIX Software AG
- This file is part of OGo
+ This file is part of OpenGroupware.org.
OGo is free software; you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License as published by the
Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
02111-1307, USA.
*/
-// $Id$
#include <NGObjWeb/WOMailDelivery.h>
#include <NGObjWeb/WOComponent.h>