<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html; charset=ISO-8859-1"
 http-equiv="Content-Type">
  <title></title>
</head>
<body bgcolor="#ffffff" text="#000000">
Am 20.04.2010 02:37, schrieb Christian Tardif:
<blockquote cite="mid:4BCCF737.90608@servinfo.ca" type="cite">
  <meta content="text/html; charset=ISO-8859-1"
 http-equiv="Content-Type">
On 18/04/10 07:41 PM, Alain Abbas wrote:
  <blockquote cite="mid:4BCB98A7.603@libertech.fr" type="cite">
    <blockquote type="cite" style="color: rgb(0, 0, 0);">Right problem
on
the kolabindex directory , the process who run apache must have right
to  write in this directory <br>
on a standard install <br>
chown kolab-n:kolab-n kolabindex <br>
      <br>
      <br>
alain <br>
      <br>
  </blockquote>
Sorry it was missed in the wiki i corrected it <span
 class="moz-smiley-s1" title=":-)"><span>:-)</span></span>
  </blockquote>
  <br>
OK.....   kolabindex made me able to sync. But (since there's a but),
it seems that I can't make SSL work. Let me explain my setup. My Kolab
server resides on a server which has an Apache2 server on it. So, I
followed those wiki instructions:<br>
  <br>
  <a moz-do-not-send="true" class="moz-txt-link-freetext"
 href="http://wiki.kolab.org/index.php/Kolab2_Integration_with_another_running_apache_server">http://wiki.kolab.org/index.php/Kolab2_Integration_with_another_running_apache_server</a><br>
  <br>
So, here's the setup. I installed the root cert in the Mobile device
(made sure that the target domain matches the cert). I'm still stucked
with the 0x80072F17 error. Maybe if I could some kind of redirect to
port 80 in the case URI  is /Microsoft......, but I haven't been able
to do that (in fact, I would normally redirect to HTTPS, but only proxy
to local port 81 when URI is /Microsoft.......  any idea?). But running
active-sync on port 80 is somewhat...  dangerous.<br>
  <br>
The best thing to do would be to make HTTPS work with my setup. How can
this be handled?<br>
  <br>
  <div class="moz-signature">-- <br>
  <style type="text/css" media="screen">
        #container {
                position: relative;
        }
        #top {
                position: relative;
        }
        #logo {
                position: relative;
                float: left;
        }
        #infos {
                position: relative;
                float: left;
        }
        #bottom {
                position: relative;
                width: 100%;
                clear: both;
        }
  </style>
  <div id="top">  </div>
  <div id="bottom">Christian Tardifs<br>
  </div>
  </div>
</blockquote>
<br>
Hi Christian<br>
<br>
Here is what I do in case you want to copy my approach for the moment.
I too have not been able to run ssl successfully on my server ...
especially from my phone of course from a browser is rather easy. So I
decided that any request that is not port 443 and isn't
server/Microsoft.... be redirect to the 443 port. In apache2 the rule
should look something like.<br>
<br>
RewriteEngine On<br>
RewriteCond %{Server_Port} !^443$<br>
RewriteCond %{REQUEST_URI} !^Microsoft.....$<br>
RewriteRule ^/(.*) <a class="moz-txt-link-freetext" href="https://server.com/$1">https://server.com/$1</a><br>
<br>
Something like this (my memory isn't the best) is at least a temporary
fix. But of course you should get ssl working.<br>
<br>
Regards Alexander<br>
<br>
</body>
</html>