diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist index 69871e3ed..b5019abdc 100644 --- a/config/main.inc.php.dist +++ b/config/main.inc.php.dist @@ -176,6 +176,19 @@ $rcmail_config['smtp_timeout'] = 0; // ONLY ENABLE IT IF YOU'RE REALLY SURE WHAT YOU'RE DOING! $rcmail_config['enable_installer'] = false; +// provide an URL where a user can get support for this Roundcube installation +// PLEASE DO NOT LINK TO THE ROUNDCUBE.NET WEBSITE HERE! +$rcmail_config['support_url'] = ''; + +// replace Roundcube logo with this image +// specify an URL relative to the document root of this Roundcube installation +$rcmail_config['skin_logo'] = null; + +// automatically create a new Roundcube user when log-in the first time. +// a new user will be created once the IMAP login succeeds. +// set to false if only registered users can use this service +$rcmail_config['auto_create_user'] = true; + // use this folder to store log files (must be writeable for apache user) // This is used by the 'file' log driver. $rcmail_config['log_dir'] = 'logs/'; @@ -208,19 +221,6 @@ $rcmail_config['login_autocomplete'] = 0; // UPDATE users SET username = LOWER(username); $rcmail_config['login_lc'] = false; -// automatically create a new Roundcube user when log-in the first time. -// a new user will be created once the IMAP login succeeds. -// set to false if only registered users can use this service -$rcmail_config['auto_create_user'] = true; - -// provide an URL where a user can get support for this Roundcube installation -// PLEASE DO NOT LINK TO THE ROUNDCUBE.NET WEBSITE HERE! -$rcmail_config['support_url'] = ''; - -// replace Roundcube logo with this image -// specify an URL relative to the document root of this Roundcube installation -$rcmail_config['skin_logo'] = null; - // Includes should be interpreted as PHP files $rcmail_config['skin_include_php'] = false; diff --git a/installer/config.php b/installer/config.php index b71e3d5d5..bd676b12e 100644 --- a/installer/config.php +++ b/installer/config.php @@ -59,6 +59,30 @@ echo $input_prodname->show($RCI->getprop('product_name'));
The name of your service (used to compose page titles)
+
support_url
+
+ '_support_url', 'size' => 50, 'id' => "cfgsupporturl")); +echo $input_support->show($RCI->getprop('support_url')); + +?> +
Provide an URL where a user can get support for this Roundcube installation.
PLEASE DO NOT LINK TO THE ROUNDCUBE.NET WEBSITE HERE!
+

Enter an absolute URL (inculding http://) to a support page/form or a mailto: link.

+
+ +
skin_logo
+
+ '_skin_logo', 'size' => 50, 'id' => "cfgskinlogo")); +echo $input_skin->show($RCI->getprop('skin_logo')); + +?> +
Custom image to display instead of the Roundcube logo.
+

Enter a URL relative to the document root of this Roundcube installation.

+
+
temp_dir
show($RCI->getprop('temp_dir'));
Use this folder to store temp files (must be writeable for webserver)
- -
ip_check
-
- '_ip_check', 'id' => "cfgipcheck")); -echo $check_ipcheck->show(intval($RCI->getprop('ip_check')), array('value' => 1)); - -?> -
- -

This increases security but can cause sudden logouts when someone uses a proxy with changing IPs.

-
-
des_key
show($RCI->getprop('des_key')); If you enter it manually please provide a string of exactly 24 chars.

+
ip_check
+
+ '_ip_check', 'id' => "cfgipcheck")); +echo $check_ipcheck->show(intval($RCI->getprop('ip_check')), array('value' => 1)); + +?> +
+ +

This increases security but can cause sudden logouts when someone uses a proxy with changing IPs.

+
+
enable_caching
show($RCI->getprop('skin'));
Name of interface skin (folder in /skins)
-
skin_logo
-
- '_skin_logo', 'size' => 50, 'id' => "cfgskinlogo")); -echo $input_skin->show($RCI->getprop('skin_logo')); - -?> -
Custom image to display instead of the Roundcube logo.
-

Enter a URL relative to the document root of this Roundcube installation.

-
-
mail_pagesize *
configured && empty($_REQUEST['_step'])) {
@@ -144,7 +144,7 @@ if ($RCI->configured && empty($_REQUEST['_step'])) { step]) { include $include_steps[$RCI->step]; @@ -158,7 +158,7 @@ else {
diff --git a/installer/rcube_install.php b/installer/rcube_install.php index 8591f1e74..365d297b6 100644 --- a/installer/rcube_install.php +++ b/installer/rcube_install.php @@ -50,7 +50,7 @@ class rcube_install // these config options are required for a working system var $required_config = array( 'db_dsnw', 'db_table_contactgroups', 'db_table_contactgroupmembers', - 'des_key', 'session_lifetime', + 'des_key', 'session_lifetime', 'support_url', ); /** @@ -254,7 +254,7 @@ class rcube_install // iterate over default config foreach ($defaults as $prop => $value) { - if (!isset($seen[$prop]) && !isset($this->config[$prop]) && isset($required[$prop])) + if (!isset($seen[$prop]) && isset($required[$prop]) && !(is_bool($this->config[$prop]) || strlen($this->config[$prop]))) $out['missing'][] = array('prop' => $prop); } diff --git a/installer/welcome.html b/installer/welcome.html deleted file mode 100644 index a992c5ee9..000000000 --- a/installer/welcome.html +++ /dev/null @@ -1,33 +0,0 @@ -
- - -

Welcome to the interactive install script for the Roundcube Webmail package

-

First let's check your local environment and find out if everything Roundcube needs is available.

- -

The basic requirements are:

- - - - -
diff --git a/skins/default/images/roundcube_logo.png b/skins/default/images/roundcube_logo.png index 1a4783e6e..4323c6b5f 100644 Binary files a/skins/default/images/roundcube_logo.png and b/skins/default/images/roundcube_logo.png differ