0
|
1 <?php
|
|
2
|
|
3 /*
|
|
4 +-----------------------------------------------------------------------+
|
|
5 | Local configuration for the Roundcube Webmail installation. |
|
|
6 | |
|
|
7 | This is a sample configuration file only containing the minimum |
|
|
8 | setup required for a functional installation. Copy more options |
|
|
9 | from defaults.inc.php to this file to override the defaults. |
|
|
10 | |
|
|
11 | This file is part of the Roundcube Webmail client |
|
|
12 | Copyright (C) 2005-2013, The Roundcube Dev Team |
|
|
13 | |
|
|
14 | Licensed under the GNU General Public License version 3 or |
|
|
15 | any later version with exceptions for skins & plugins. |
|
|
16 | See the README file for a full license statement. |
|
|
17 +-----------------------------------------------------------------------+
|
|
18 */
|
|
19
|
|
20 $config = array();
|
|
21
|
|
22 /* Do not set db_dsnw here, use dpkg-reconfigure roundcube-core to configure database ! */
|
|
23 include_once("/etc/roundcube/debian-db-roundcube.php");
|
|
24
|
|
25 // The mail host chosen to perform the log-in.
|
|
26 // Leave blank to show a textbox at login, give a list of hosts
|
|
27 // to display a pulldown menu or set one host as string.
|
|
28 // To use SSL/TLS connection, enter hostname with prefix ssl:// or tls://
|
|
29 // Supported replacement variables:
|
|
30 // %n - hostname ($_SERVER['SERVER_NAME'])
|
|
31 // %t - hostname without the first part
|
|
32 // %d - domain (http hostname $_SERVER['HTTP_HOST'] without the first part)
|
|
33 // %s - domain name after the '@' from e-mail address provided at login screen
|
|
34 // For example %n = mail.domain.tld, %t = domain.tld
|
|
35 $config['default_host'] = 'localhost';
|
|
36
|
|
37 // SMTP server host (for sending mails).
|
|
38 // To use SSL/TLS connection, enter hostname with prefix ssl:// or tls://
|
|
39 // If left blank, the PHP mail() function is used
|
|
40 // Supported replacement variables:
|
|
41 // %h - user's IMAP hostname
|
|
42 // %n - hostname ($_SERVER['SERVER_NAME'])
|
|
43 // %t - hostname without the first part
|
|
44 // %d - domain (http hostname $_SERVER['HTTP_HOST'] without the first part)
|
|
45 // %z - IMAP domain (IMAP hostname without the first part)
|
|
46 // For example %n = mail.domain.tld, %t = domain.tld
|
|
47 $config['smtp_server'] = '';
|
|
48
|
|
49 // SMTP port (default is 25; use 587 for STARTTLS or 465 for the
|
|
50 // deprecated SSL over SMTP (aka SMTPS))
|
|
51 $config['smtp_port'] = 25;
|
|
52
|
|
53 // SMTP username (if required) if you use %u as the username Roundcube
|
|
54 // will use the current username for login
|
|
55 $config['smtp_user'] = '';
|
|
56
|
|
57 // SMTP password (if required) if you use %p as the password Roundcube
|
|
58 // will use the current user's password for login
|
|
59 $config['smtp_pass'] = '';
|
|
60
|
|
61 // provide an URL where a user can get support for this Roundcube installation
|
|
62 // PLEASE DO NOT LINK TO THE ROUNDCUBE.NET WEBSITE HERE!
|
|
63 $config['support_url'] = '';
|
|
64
|
|
65 // Name your service. This is displayed on the login screen and in the window title
|
|
66 $config['product_name'] = 'Roundcube Webmail';
|
|
67
|
|
68 // this key is used to encrypt the users imap password which is stored
|
|
69 // in the session record (and the client cookie if remember password is enabled).
|
|
70 // please provide a string of exactly 24 chars.
|
|
71 // YOUR KEY MUST BE DIFFERENT THAN THE SAMPLE VALUE FOR SECURITY REASONS
|
|
72 $config['des_key'] = 'rcmail-!24ByteDESkey*Str';
|
|
73
|
|
74 // List of active plugins (in plugins/ directory)
|
8
|
75 // Debian: install roundcube-plugins first to have any
|
0
|
76 $config['plugins'] = array(
|
|
77 );
|
|
78
|
|
79 // skin name: folder from skins/
|
|
80 $config['skin'] = 'larry';
|
8
|
81
|
|
82 // Disable spellchecking
|
|
83 // Debian: spellshecking needs additional packages to be installed, or calling external APIs
|
|
84 // see defaults.inc.php for additional informations
|
|
85 $config['enable_spellcheck'] = false;
|