diff options
author | maho <maho@FreeBSD.org> | 2004-02-28 11:19:44 +0000 |
---|---|---|
committer | maho <maho@FreeBSD.org> | 2004-02-28 11:19:44 +0000 |
commit | e1773939bf33cb8c1ea31bece5620f413a85cb5e (patch) | |
tree | a923b164573a0f7c4be46824676948cbf237cceb /mail/ilohamail/pkg-message | |
parent | bf7e05076f0d1a84a7d886b0a5f00a9668195b38 (diff) | |
download | FreeBSD-ports-e1773939bf33cb8c1ea31bece5620f413a85cb5e.zip FreeBSD-ports-e1773939bf33cb8c1ea31bece5620f413a85cb5e.tar.gz |
IlohaMail (pronounced: e-lo-ha-mail) is a lightweight, yet full featured,
multilingual webmail program that is easy to use and install. It runs on a
stock, default build of PHP, and does not require databases (although
database support is available). IlohaMail supports IMAP and POP3.
PR: 61833
Submitted by: TAKATSU Tomonari <tota@rtfm.jp>
Diffstat (limited to 'mail/ilohamail/pkg-message')
-rw-r--r-- | mail/ilohamail/pkg-message | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/mail/ilohamail/pkg-message b/mail/ilohamail/pkg-message new file mode 100644 index 0000000..64409c9 --- /dev/null +++ b/mail/ilohamail/pkg-message @@ -0,0 +1,41 @@ +========================================================================== +IlohaMail has now been installed. + +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. +========================================================================== |