On Apr 13, 2012, at 12:03 PM, Burkart Orlowski | Onlinehelp24 wrote:
> 
> Hi,
> 
> I am experiencing the same problems. Where exactly do you put 
> 
>>>    RequestHeader unset Accept-Encoding
>>> 
>>>    AddOutputFilterByType SUBSTITUTE text/calendar text/xml
>>>    Substitute 
>>> 's|^RRULE:([A-Z].+[A-Za-z0-9]);?FREQ=([A-Za-z]*);?(.*)$|RRULE:FREQ=$2;$1$3|'
> 
> I tried different locations but it didn't work.
> 
> Thanks for your help.
> 
> Burkart
> 
> Burkart Orlowski

In my DAV-SSL virtual host section of httpd.conf:

<VirtualHost 0.0.0.0:8843>
  ServerName sme.qzoneinc.com
  SSLEngine On

  RequestHeader unset Accept-Encoding

  AddOutputFilterByType SUBSTITUTE text/calendar text/xml
  Substitute 
's|^RRULE:([A-Z].+[A-Za-z0-9]);?FREQ=([A-Za-z]*);?(.*)$|RRULE:FREQ=$2;$1$3|'

  ProxyRequests Off
  SetEnv proxy-nokeepalive 1
  ProxyPreserveHost On
  ProxyPassInterpolateEnv On
  ProxyPass /principals http://127.0.0.1:20000/SOGo/dav/ interpolate
  ProxyPass /SOGo/dav/ http://127.0.0.1:20000/SOGo/dav/ interpolate
  ProxyPass / http://127.0.0.1:20000/SOGo/dav/ interpolate

<Proxy http://127.0.0.1:20000>
  RequestHeader set "x-webobjects-server-port" "8843"
  RequestHeader set "x-webobjects-server-name" "sme.qzoneinc.com:8843"
  RequestHeader set "x-webobjects-server-url" "https://sme.qzoneinc.com:8843";
  RequestHeader set "x-webobjects-server-protocol" "HTTP/1.0"
  RequestHeader set "x-webobjects-remote-host" "127.0.0.1"
  AddDefaultCharset UTF-8
  Order allow,deny
  Allow from all
</Proxy>
</VirtualHost>

Also required a module load since my distribution (CentOS 5.x/SMEServer 8) 
didn't load mod_substitute.so by default, so I added to the module load section:

LoadModule substitute-module modules/mod_substitute.so

If you are running SME Server, you'll have to add these lines to template files 
and issue a 'signal-event sogo-modify' to expand the templated and restart 
sogo/apache.

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

Reply via email to