Ok, niet op Woody, maar wel op potato werkend. Het heeft me inderdaad wat hoofdbrekens gekost, maar het doet het perfect... Op wat error messages na als iemand mij via een bcc-tje een mailtje stuurt, maar dat beinvloedt de functionaliteit niet.
Aangezien ik geen php3 wilde installeren heb ik in de Apache config aangegeven dat ik .php3 ook als php4 wil laten parsen...
srm.conf:
code:
1
2
| DirectoryIndex index.html index.php3 index.php
AddType application/x-httpd-php .php .php3 |
Voor de rest heb ik er geloof ik weinig aan gedaan, wel heeft apt-get een scriptje gerund dat een databaseje of iig een tabel heeft aangemaakt om de sessies van imp bij te houden...
Ook heeft dit filetje in httpd.conf twee files toegevoegd als config file:
Include /etc/horde/apache.conf
Include /etc/imp/apache.conf
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
| martijnm@theodoliet:~$ cat /etc/imp/apache.conf
# Configuration for imp using php3.
Alias /imp /usr/share/horde/imp
martijnm@theodoliet:~$ cat /etc/horde/apache.conf
# Added for HORDE
Alias /horde /usr/share/horde
# Added for HORDE
<Directory /usr/share/horde>
Options FollowSymLinks
AllowOverride None
order allow,deny
allow from all
<IfModule mod_php3.c>
php3_magic_quotes_gpc Off
php3_track_vars On
</IfModule>
<IfModule mod_php4.c>
php_flag magic_quotes_gpc Off
php_flag track_vars On
php_flag session.save_path /var/tmp/imp
</IfModule>
</Directory>
# End HORDE Configuration Block |
Hope this helps