blob: 0b3e1783c54b2eeecb2ee6c020cb0dcd9f8aeb28 (
plain) (
blame)
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
==========================================================================
ilohamail-devel has now been installed.
Please send comments about the devel branch to the testers mailing list(https://lists.sourceforge.net/lists/listinfo/ilohamail-testers)
The devel branch is a rapidly moving target, and is not recommended for deployment.
Create a redirect one of the following methods:
- add an alias to apache's httpd.conf pointing to %%ILOHADIR%%/source
- create a VirtualHost with DocumentRoot set to %%ILOHADIR%%/source
- make a symbolic link to %%ILOHADIR%%/source
Check your PHP.ini file. You need:
- short_open_tag = On
- file_uploads = On
Edit %%ILOHADIR%%/conf/conf.inc and
%%ILOHADIR%%/conf/login.inc files as necessary.
Using the MySQL back-end is also recommended.
1. Create database user who has rights on webmail database manipulation
by following "sample" mysql commands:
$ mysql -u root -p
mysql> use mysql;
mysql> grant select,insert,update,delete,index,
-> alter,create,drop,references, lock tables,
-> create temporary tables on webmail.* to webmail@localhost
-> identified by 'password';
mysql> flush privileges;
2. Create a MySQL database.
$ mysqladmin create webmail
3. Create tables.
$ mysql webmail < %%DATADIR%%/MySQL/sql
4. Configure %%ILOHADIR%%/conf/db_conf.php.
5. Set value of $backend in %%ILOHADIR%%/conf/conf.inc from "FS" to "DB".
For more complete database setup, post-installation instructions
please read IlohaMail Guide in %%DOCSDIR%%/Manual.
==========================================================================
|