Zarafa (webaccess) auf OpenBSD

Hallo zusammen,

ich versuche zur Zeit Zarafa (7.0.4p1) auf OpenBSD 5.1 (i386) zum Laufen zu bringen und habe Probleme bei webaccess - genauer gesagt - mit der mapi-extension für php 5.3.

Wenn ich in der php.ini die mapi-extension aktiviere startet der Apache nicht, und zwar kommentarlos! ;'( - bzw. crashd und schreibt eine httpd.core, mit der ich leider nix anfangen kann ...)

Wenn ich hingegen bewusst eine Falsche Datei angebe (extension=mapiblabla.so) bekomme ich im error_log eine Fehlermeldung, dass die Datei nicht gefunden wurde.
Code:
Warning: PHP Startup: Unable to load dynamic library '/usr/local/lib/php-5.3/modules/mapiblabla.so' - File not found in Unknown on line 0

Ich habe sowohl packages ausprobiert als auch den port - beides mal das selbe Verhalten.

Hat jemand Erfahrung mit Zarafa auf OpenBSD? Gibt's einen Trick dabei?

Vielen Dank!
 
Zarafa (webaccess) auf OpenBSD [solved]

RTFM!!!

Sorry für eventuelle Balästigungen!


The PHP mapi module and OpenBSD Apache
--------------------------------------
When using the OpenBSD Apache server, the runtime loader will need to
pre-load the pthread shared library. While the php binary is linked with
-pthread, httpd is not and the PHP mapi module needs the
pthread_mutex_init(3) function. LANG will also need to be set to an
UTF-8 compliant locale.
To do so, create a login(1) class under /etc/login.conf(5) called after
the Apache rc.d(8) script, i.e. "httpd":

httpd:\
:setenv=LANG=en_US.UTF-8\
,LD_PRELOAD=/usr/lib/libpthread.so:\
:tc=daemon:
 
Zurück
Oben