Now I am getting nothing at all. I don't have any buttons, nor do I get any calendars at all. Worst of all, according to my HTTP debugging proxy, no requests for SOGo calendars are going out what so ever - only requests for contacts:

http://cl.ly/1E271j1i1h032V1I0N00

Little help? Files attached.

On 16/02/2011 18:04, Ludovic Marcotte wrote:
On 11-02-16 12:58 PM, Michael Crilly wrote:
   RequestHeader set "x-webobjects-server-name" "Comtek"
RequestHeader set "x-webobjects-server-url""http://axe.chester.comtek.co.uk";
This is wrong, "x-webobjects-server-name" should be "axe.chester.comtek.co.uk".

Your extensions.rdf file is also wrong:

isi:updateURL="http://axe.chester.comtek.co.uk:80/plugins/

strip the ":80" part, it is useless and will confuse path comparisons.


--
Michael Crilly
Comtek IT Systems Administrator
E: [email protected]
M: 07771133663

Comtek Network Systems UK Ltd
http://www.comtek.co.uk/

--
[email protected]
https://inverse.ca/sogo/lists

Attachment: extensions.rdf
Description: application/rdf

Alias /SOGo.woa/WebServerResources/ /usr/lib/GNUstep/SOGo/WebServerResources/
Alias /SOGo/WebServerResources/ /usr/lib/GNUstep/SOGo/WebServerResources/
AliasMatch /SOGo/so/ControlPanel/Products/(.*)/Resources/(.*) 
/usr/lib/GNUstep/SOGo/$1.SOGo/Resources/$2

Alias /.woa/WebServerResources/ /usr/lib/GNUstep/SOGo/WebServerResources/

<Directory /usr/lib/GNUstep/SOGo/>
    AllowOverride None
    Order deny,allow
    Allow from all
</Directory>

<LocationMatch 
"^/SOGo/so/ControlPanel/Products/.*UI/Resources/.*\.(jpg|png|gif|css|js)">
  SetHandler default-handler
</LocationMatch>

## Uncomment the following to enable proxy-side authentication, you will then
## need to set the "SOGoTrustProxyAuthentication" SOGo user default to YES and
## adjust the "x-webobjects-remote-user" proxy header in the "Proxy" section
## below.
#<Location /SOGo>
#  AuthType XXX
#  Require valid-user
#  SetEnv proxy-nokeepalive 1
#  Allow from all
#</Location>

ProxyRequests Off
SetEnv proxy-nokeepalive 1
ProxyPreserveHost On

# When using CAS, you should uncomment this and install cas-proxy-validate.py
# in /usr/lib/cgi-bin to reduce server overloading
#
# ProxyPass /SOGo/casProxy http://localhost/cgi-bin/cas-proxy-validate.py
# <Proxy http://localhost/app/cas-proxy-validate.py>
#   Order deny,allow
#   Allow from your-cas-host-addr
# </Proxy>

ProxyPass /SOGo http://127.0.0.1:20000/SOGo retry=0
#ProxyPassReverse /SOGo http://127.0.0.1:20000/SOGo

#ProxyPass /SOGo.woa http://127.0.0.1:20000/SOGo.woa/
#ProxyPassReverse /SOGo.woa http://127.0.0.1:20000/SOGo.woa/

<Proxy http://127.0.0.1:20000/SOGo>
## adjust the following to your configuration
  RequestHeader set "x-webobjects-server-port" "80"
  RequestHeader set "x-webobjects-server-name" "axe.chester.comtek.co.uk"
  RequestHeader set "x-webobjects-server-url" "http://axe.chester.comtek.co.uk";

## When using proxy-side autentication, you need to uncomment and
## adjust the following line:
#  RequestHeader set "x-webobjects-remote-user" "%{REMOTE_USER}e"

  RequestHeader set "x-webobjects-server-protocol" "HTTP/1.0"
  RequestHeader set "x-webobjects-remote-host" %{REMOTE_HOST}e env=REMOTE_HOST

  AddDefaultCharset UTF-8

  Order allow,deny
  Allow from all
</Proxy>

## We use mod_rewrite to pass remote address to the SOGo proxy.
# The remote address will appear in SOGo's log files and in the X-Forward
# header of emails.
RewriteEngine On
RewriteRule ^/SOGo/(.*)$ /SOGo/$1 [env=REMOTE_HOST:%{REMOTE_ADDR},PT]

Reply via email to