On Thu, Sep 06, 2012 at 09:06:29AM +0400, open...@e-solutions.re wrote: > Le 2012-09-06 0:47, Stuart Henderson a écrit : > >Moved to ports@ where it should be. > > > Thank's! > > >I suspect your calendar path is incorrect, typically it would be > >something like https://localhost:5232/username/calendar > > > Using ical (from imac), i follow this : > http://radicale.org/user_documentation/#ical > It works great without auth-htpasswd. But with, no way. I use successfully Radicale.
Here is the procedure I wrote to deploy it : /---------------------------\ | How to setup Radicale | \---------------------------/ $Id: radicale,v 1.2 2011/10/25 20:23:17 oc Exp $ To install Radicale on OpenBSD, do the following: ------------------------------------------------- $ sudo -E pkg_add radicale $ less /usr/local/share/doc/pkg-readmes/radicale* $ cd /etc/radicale $ cp -p config config.orig $ vi config $ sudo htpasswd -cs /etc/radicale/users USER $ sudo openssl genrsa -out /etc/radicale/private/server.key 1024 $ sudo openssl req -new -key \ > /etc/radicale/private/server.key \ > -out /etc/radicale/private/server.csr $ $ sudo openssl x509 -req -days 1024 -in \ > /etc/radicale/private/server.csr \ > -signkey /etc/radicale/private/server.key \ > -out /etc/radicale/server.crt $ $ sudo chown _radicale server.crt private $ sudo chmod 750 private $ sudo chmod 640 server.crt $ sudo chmod 640 private/server.* But, SSL fails to work ... (For non-SSL, it works quite well but is not very speedy).