Aleksander Machniak
2013-06-03 0a7df4a32e86a103a5f1fe801374383a195ba1a5
commit | author | age
a89845 1 INTRODUCTION
T 2 ============
3
e019f2 4 This file describes the basic steps to install Roundcube Webmail on your
a89845 5 web server. For additional information, please also consult the project's
83ce4b 6 wiki page at http://trac.roundcube.net/wiki
T 7
4e17e6 8
535da2 9 REQUIREMENTS
T 10 ============
11
5d62d9 12 * The Apache, Lighttpd, Cherokee or Hiawatha web server
535da2 13 * .htaccess support allowing overrides for DirectoryIndex
d36115 14 * PHP Version 5.2.1 or greater including
a84efc 15    - PCRE, DOM, JSON, XML, Session, Sockets (required)
TB 16    - PHP Data Objects (PDO) with driver for either MySQL, PostgreSQL or SQLite (required)
738996 17      Note: MySQL database driver requires PHP 5.3 or newer.
a84efc 18    - Libiconv, Zip (recommended)
TB 19    - Fileinfo, Mcrypt, mbstring (optional)
91790e 20 * PEAR packages distributed with Roundcube or external:
53604a 21    - Mail_Mime 1.8.1 or newer
77c779 22    - Mail_mimeDecode 1.5.5 or newer
c4a226 23    - Net_SMTP (latest from https://github.com/pear/Net_SMTP/)
50d7d3 24    - Net_IDNA2 0.1.1 or newer
114cf1 25    - Auth_SASL 1.0.6 or newer
7d3406 26 * php.ini options (see .htaccess file):
535da2 27    - error_reporting E_ALL & ~E_NOTICE (or lower)
29640b 28    - memory_limit > 16MB (increase as suitable to support large attachments)
067763 29    - file_uploads enabled (for attachment upload features)
A 30    - session.auto_start disabled
31    - zend.ze1_compatibility_mode disabled
7d3406 32    - suhosin.session.encrypt disabled
A 33    - mbstring.func_overload disabled
140abb 34    - magic_quotes_runtime disabled
0b6d02 35    - magic_quotes_sybase disabled
3a01c3 36 * PHP compiled with OpenSSL to connect to IMAPS and to use the spell checker
c4ff57 37 * A MySQL (4.0.8 or newer), PostgreSQL, MS SQL Server (2005 or newer) database engine
d239ee 38   or SQLite support in PHP
1fb2c8 39 * One of the above databases with permission to create tables
7d3406 40 * An SMTP server (recommended) or PHP configured for mail delivery
535da2 41
T 42
4e17e6 43 INSTALLATION
T 44 ============
45
46 1. Decompress and put this folder somewhere inside your document root
10a699 47 2. Make sure that the following directories (and the files within)
T 48    are writable by the webserver
4e17e6 49    - /temp
T 50    - /logs
e019f2 51 3. Create a new database and a database user for Roundcube (see DATABASE SETUP)
967b34 52 4. Point your browser to http://url-to-roundcube/installer/
b8ae99 53 5. Follow the instructions of the install script (or see MANUAL CONFIGURATION)
190e97 54 6. After creating and testing the configuration, remove the installer directory
42b113 55 7. Done!
T 56
57
4b20e2 58 CONFIGURATION HINTS
T 59 ===================
60
233622 61 Roundcube writes internal errors to the 'errors' log file located in the logs
4b20e2 62 directory which can be configured in config/main.inc.php. If you want ordinary
T 63 PHP errors to be logged there as well, enable the 'php_value error_log' line
64 in the .htaccess file and set the path to the log file accordingly.
65
29640b 66 By default the session_path settings of PHP are not modified by Roundcube.
T 67 However if you want to limit the session cookies to the directory where
68 Roundcube resides you can uncomment and configure the according line
69 in the .htaccess file.
70
4b20e2 71
10a699 72 DATABASE SETUP
T 73 ==============
74
233622 75 Note: Database for Roundcube must use UTF-8 character set.
0ba548 76
fa898a 77 * MySQL
T 78 -------
10a699 79 Setting up the mysql database can be done by creating an empty database,
T 80 importing the table layout and granting the proper permissions to the
81 roundcube user. Here is an example of that procedure:
82
83 # mysql
ad5600 84 > CREATE DATABASE roundcubemail /*!40101 CHARACTER SET utf8 COLLATE utf8_general_ci */;
10a699 85 > GRANT ALL PRIVILEGES ON roundcubemail.* TO roundcube@localhost
6ae6e4 86     IDENTIFIED BY 'password';
10a699 87 > quit
fa898a 88
10a699 89 # mysql roundcubemail < SQL/mysql.initial.sql
535da2 90
fa898a 91 Note 1: 'password' is the master password for the roundcube user. It is strongly
3cf664 92 recommended you replace this with a more secure password. Please keep in
T 93 mind: You need to specify this password later in 'config/db.inc.php'.
fa898a 94
1cded8 95
10a699 96 * SQLite
T 97 --------
50d515 98 You need sqlite 2 (preferably 2.8) to setup the sqlite db 
A 99 (sqlite 3.x also doesn't work at the moment). Here is
10a699 100 an example how you can setup the sqlite.db for roundcube:
T 101
102 # sqlite -init SQL/sqlite.initial.sql sqlite.db
d7f49d 103 Loading resources from SQL/sqlite.initial.sql
T 104 SQLite version 2.8.16
105 Enter ".help" for instructions
106 sqlite> .exit
107 # chmod o+rw sqlite.db
10a699 108
T 109 Make sure your configuration points to the sqlite.db file and that the
83ce4b 110 webserver can write to the file and the directory containing the file.
10a699 111
T 112
1cded8 113 * PostgreSQL
T 114 ------------
233622 115 To use Roundcube with PostgreSQL support you have to follow these
a89845 116 simple steps, which have to be done as the postgres system user (or
1cded8 117 which ever is the database superuser):
T 118
a89845 119 $ createuser roundcube
ad5600 120 $ createdb -O roundcube -E UNICODE roundcubemail
1cded8 121 $ psql roundcubemail
T 122
123 roundcubemail =# ALTER USER roundcube WITH PASSWORD 'the_new_password';
a89845 124 roundcubemail =# \c - roundcube
1cded8 125 roundcubemail => \i SQL/postgres.initial.sql
T 126
a89845 127 All this has been tested with PostgreSQL 8.x and 7.4.x. Older
1cded8 128 versions don't have a -O option for the createdb, so if you are
T 129 using that version you'll have to change ownership of the DB later.
233622 130
T 131
322299 132 * Microsoft SQL Server
AM 133 ----------------------
134 Language/locale of the database must be set to us_english (1033). More info
135 on this at http://trac.roundcube.net/ticket/1488918.
136
137
233622 138 Database cleaning
T 139 -----------------
322299 140 To keep your database slick and clean we recommend to periodically execute
30aa4c 141 bin/cleandb.sh which finally removes all records that are marked as deleted.
233622 142 Best solution is to install a cronjob running this script daily.
T 143
1cded8 144
T 145
190e97 146 MANUAL CONFIGURATION
T 147 ====================
535da2 148
a89845 149 First of all, rename the files config/*.inc.php.dist to config/*.inc.php.
T 150 You can then change these files according to your environment and your needs.
151 Details about the config parameters can be found in the config files.
190e97 152 See http://trac.roundcube.net/wiki/Howto_Install for even more guidance.
535da2 153
4b9efb 154 You can also modify the default .htaccess file. This is necessary to
S 155 increase the allowed size of file attachments, for example:
156     php_value       upload_max_filesize     2M
535da2 157
83ce4b 158
42b113 159 UPGRADING
T 160 =========
6ae6e4 161
233622 162 If you already have a previous version of Roundcube installed,
42b113 163 please refer to the instructions in UPGRADING guide.
4e17e6 164
T 165
d7f49d 166 OPTIMISING
T 167 ==========
168
169 There are two forms of optimisation here, compression and caching, both aimed
233622 170 at increasing an end user's experience using Roundcube Webmail. Compression
d7f49d 171 allows the static web pages to be delivered with less bandwidth. The index.php
233622 172 of Roundcube Webmail already enables compression on its output. The settings
d7f49d 173 below allow compression to occur for all static files. Caching sets HTTP 
T 174 response headers that enable a user's web client to understand what is static
175 and how to cache it.
176
177 The caching directives used are:
178  * Etags - sets at tag so the client can request is the page has changed
179  * Cache-control - defines the age of the page and that the page is 'public'
180    This enables clients to cache javascript files that don't have private 
181    information between sessions even if using HTTPS. It also allows proxies
182    to share the same cached page between users.
183  * Expires - provides another hint to increase the lifetime of static pages.
184
185 For more information refer to RFC 2616.
186
187 Side effects:
188 -------------
189 These directives are designed for production use. If you are using this in
190 a development environment you may get horribly confused if your webclient
191 is caching stuff that you changed on the server. Disabling the expires 
192 parts below should save you some grief.
193
194 If you are changing the skins, it is recommended that you copy content to 
195 a different directory apart from 'default'.
196
197 Apache:
198 -------
199 To enable these features in apache the following modules need to be enabled:
a5c2ad 200  * mod_deflate
A 201  * mod_expires
d7f49d 202  * mod_headers
T 203
204 The optimisation is already included in the .htaccess file in the top 
205 directory of your installation.
206
207 If you are using Apache version 2.2.9 and later, in the .htaccess file
208 change the 'append' word to 'merge' for a more correct response. Keeping
209 as 'append' shouldn't cause any problems though changing to merge will 
210 eliminate the possibility of duplicate 'public' headers in Cache-control.
211
212 Lighttpd:
213 ---------
214 With Lightty the addition of Expire: tags by mod_expire is incompatible with
215 the addition of "Cache-control: public". Using Cache-control 'public' is 
216 used below as it is assumed to give a better caching result.
217
218 Enable modules in server.modules:
219     "mod_setenv"
220     "mod_compress"
221
222 Mod_compress is a server side cache of compressed files to improve its performance.
223
224 $HTTP["host"] == "www.example.com" {
225
226     static-file.etags = "enable"
227     # http://redmine.lighttpd.net/projects/lighttpd/wiki/Etag.use-mtimeDetails
228     etag.use-mtime = "enable"
229
230     # http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ModSetEnv
231     $HTTP["url"] =~ "^/roundcubemail/(plugins|skins|program)" {
232         setenv.add-response-header  = ( "Cache-Control" => "public, max-age=2592000")
233     }
234
235     # http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ModCompress
236     # set compress.cache-dir to somewhere outside the docroot.
237     compress.cache-dir   = var.statedir + "/cache/compress"
238
239     compress.filetype = ("text/plain", "text/html", "text/javascript", "text/css", "text/xml", "image/gif", "image/png")
240 }