diff options
author | Thomas Bruederli <bruederli@kolabsys.com> | 2013-02-27 13:32:35 (GMT) |
---|---|---|
committer | Thomas Bruederli <bruederli@kolabsys.com> | 2013-02-27 13:32:35 (GMT) |
commit | e5e28c0a689166d1239c63e1a0588bbf5889edab (patch) | |
tree | 06434bc43fcd3fee1bd425b14325a8b424e038a4 /README.md | |
parent | d454c019d2e0d1d64f59a108c6cbf0f30c2b0511 (diff) | |
download | iRony-e5e28c0a689166d1239c63e1a0588bbf5889edab.tar.gz |
Explain the installation procedure in a README file
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..86d0c82 --- /dev/null +++ b/README.md @@ -0,0 +1,49 @@ +INTALLATION PROCEDURE +===================== + +This package uses [Composer][1] to install and maintain +required PHP libraries as well as the Roundcube framework. The requirements +are basically the same as for Roundcube so please read the INSTALLATION +section in the Roundcube framework's [README][2] file. + +1. Install Composer + +Execute this in the project root directory: + +$ curl -s http://getcomposer.org/installer | php + +This will create a file named composer.phar in the project directory. + +2. Install Dependencies + +$ php composer.phar install + +3. Import the Roundcube framework and Kolab plugins + +3.1. Either copy or symlink the Roundcube framework package into lib/Roundcube +3.2. Either copy or symlink the roundcubemail-plugins-kolab into lib/plugins + +4. Create local config + +4.1. The configuration for this service inherits basic options from the Roundcube +config. To make that available, smylink the Roundcube config files +(main.inc.php and db.inc.php) into the local config/ directory. + +4.2. Then copy the service-spcific config template: + +$ cp config/dav.inc.php.sample config/dav.inc.php + +Edit the local config/dav.inc.php file according to your setup and taste. +These settings override the default config options from the Roundcube +configuration. + +5. Give write access for the webserver user to the 'log' folder: + +$ chown <www-user> logs + +6. Configure your webserver to point to the 'public_html' directory of this +package as document root. + + +[1]: http://getcomposer.org +[2]: https://github.com/roundcube/roundcubemail/blob/master/program/lib/Roundcube/README.md)
\ No newline at end of file |