========================================================================== IlohaMail has now been installed. Create a redirect one of the following methods: - add an alias to apache's httpd.conf pointing to /usr/local/www/ilohamail/source - create a VirtualHost with DocumentRoot set to /usr/local/www/ilohamail/source - make a symbolic link to /usr/local/www/ilohamail/source Check your PHP.ini file. You need: - short_open_tag = On - file_uploads = On Edit /usr/local/www/ilohamail/conf/conf.inc and /usr/local/www/ilohamail/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 < /usr/local/share/ilohamail/MySQL/sql 4. Configure /usr/local/www/ilohamail/conf/db_conf.php. 5. Set value of $backend in /usr/local/www/ilohamail/conf/conf.inc from "FS" to "DB". For more complete database setup, post-installation instructions please read IlohaMail Guide in /usr/local/share/doc/ilohamail/Manual. ==========================================================================