mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-09 09:36:50 +01:00
- replace claim in Roundcube logo
- require support_url config option in installer
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
@@ -59,6 +59,30 @@ echo $input_prodname->show($RCI->getprop('product_name'));
|
||||
<div>The name of your service (used to compose page titles)</div>
|
||||
</dd>
|
||||
|
||||
<dt class="propname">support_url</dt>
|
||||
<dd>
|
||||
<?php
|
||||
|
||||
$input_support = new html_inputfield(array('name' => '_support_url', 'size' => 50, 'id' => "cfgsupporturl"));
|
||||
echo $input_support->show($RCI->getprop('support_url'));
|
||||
|
||||
?>
|
||||
<div>Provide an URL where a user can get support for this Roundcube installation.<br/>PLEASE DO NOT LINK TO THE ROUNDCUBE.NET WEBSITE HERE!</div>
|
||||
<p class="hint">Enter an absolute URL (inculding http://) to a support page/form or a mailto: link.</p>
|
||||
</dd>
|
||||
|
||||
<dt class="propname">skin_logo</dt>
|
||||
<dd>
|
||||
<?php
|
||||
|
||||
$input_skin = new html_inputfield(array('name' => '_skin_logo', 'size' => 50, 'id' => "cfgskinlogo"));
|
||||
echo $input_skin->show($RCI->getprop('skin_logo'));
|
||||
|
||||
?>
|
||||
<div>Custom image to display instead of the Roundcube logo.</div>
|
||||
<p class="hint">Enter a URL relative to the document root of this Roundcube installation.</p>
|
||||
</dd>
|
||||
|
||||
<dt class="propname">temp_dir</dt>
|
||||
<dd>
|
||||
<?php
|
||||
@@ -70,20 +94,6 @@ echo $input_tempdir->show($RCI->getprop('temp_dir'));
|
||||
<div>Use this folder to store temp files (must be writeable for webserver)</div>
|
||||
</dd>
|
||||
|
||||
|
||||
<dt class="propname">ip_check</dt>
|
||||
<dd>
|
||||
<?php
|
||||
|
||||
$check_ipcheck = new html_checkbox(array('name' => '_ip_check', 'id' => "cfgipcheck"));
|
||||
echo $check_ipcheck->show(intval($RCI->getprop('ip_check')), array('value' => 1));
|
||||
|
||||
?>
|
||||
<label for="cfgipcheck">Check client IP in session authorization</label><br />
|
||||
|
||||
<p class="hint">This increases security but can cause sudden logouts when someone uses a proxy with changing IPs.</p>
|
||||
</dd>
|
||||
|
||||
<dt class="propname">des_key</dt>
|
||||
<dd>
|
||||
<?php
|
||||
@@ -97,6 +107,19 @@ echo $input_deskey->show($RCI->getprop('des_key'));
|
||||
If you enter it manually please provide a string of exactly 24 chars.</p>
|
||||
</dd>
|
||||
|
||||
<dt class="propname">ip_check</dt>
|
||||
<dd>
|
||||
<?php
|
||||
|
||||
$check_ipcheck = new html_checkbox(array('name' => '_ip_check', 'id' => "cfgipcheck"));
|
||||
echo $check_ipcheck->show(intval($RCI->getprop('ip_check')), array('value' => 1));
|
||||
|
||||
?>
|
||||
<label for="cfgipcheck">Check client IP in session authorization</label><br />
|
||||
|
||||
<p class="hint">This increases security but can cause sudden logouts when someone uses a proxy with changing IPs.</p>
|
||||
</dd>
|
||||
|
||||
<dt class="propname">enable_caching</dt>
|
||||
<dd>
|
||||
<?php
|
||||
@@ -512,18 +535,6 @@ echo $input_skin->show($RCI->getprop('skin'));
|
||||
<div>Name of interface skin (folder in /skins)</div>
|
||||
</dd>
|
||||
|
||||
<dt class="propname">skin_logo</dt>
|
||||
<dd>
|
||||
<?php
|
||||
|
||||
$input_skin = new html_inputfield(array('name' => '_skin_logo', 'size' => 50, 'id' => "cfgskinlogo"));
|
||||
echo $input_skin->show($RCI->getprop('skin_logo'));
|
||||
|
||||
?>
|
||||
<div>Custom image to display instead of the Roundcube logo.</div>
|
||||
<p class="hint">Enter a URL relative to the document root of this Roundcube installation.</p>
|
||||
</dd>
|
||||
|
||||
<dt class="propname">mail_pagesize <span class="userconf">*</span></dt>
|
||||
<dd>
|
||||
<?php
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 4.4 KiB |
BIN
installer/images/roundcube_logo.png
Normal file
BIN
installer/images/roundcube_logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 7.8 KiB |
@@ -108,7 +108,7 @@ if ($RCI->configured && empty($_REQUEST['_step'])) {
|
||||
|
||||
<div id="banner">
|
||||
<div class="banner-bg"></div>
|
||||
<div class="banner-logo"><a href="http://roundcube.net"><img src="images/rcube_logo.gif" width="210" height="55" border="0" alt="Roundcube - Open source webmail project" /></a></div>
|
||||
<div class="banner-logo"><a href="http://roundcube.net"><img src="images/roundcube_logo.png" width="210" height="55" border="0" alt="Roundcube - open source webmail software" /></a></div>
|
||||
</div>
|
||||
|
||||
<div id="topnav">
|
||||
@@ -144,7 +144,7 @@ if ($RCI->configured && empty($_REQUEST['_step'])) {
|
||||
</ol>
|
||||
|
||||
<?php
|
||||
$include_steps = array('./welcome.html', './check.php', './config.php', './test.php');
|
||||
$include_steps = array('', './check.php', './config.php', './test.php');
|
||||
|
||||
if ($include_steps[$RCI->step]) {
|
||||
include $include_steps[$RCI->step];
|
||||
@@ -158,7 +158,7 @@ else {
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
Installer by the Roundcube Dev Team. Copyright © 2008-2011 - Published under the GNU Public License;
|
||||
Installer by the Roundcube Dev Team. Copyright © 2008-2012 – Published under the GNU Public License;
|
||||
Icons by <a href="http://famfamfam.com">famfamfam</a>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
@@ -1,33 +0,0 @@
|
||||
<form action="index.php" methond="get">
|
||||
<input type="hidden" name="_step" value="1" />
|
||||
|
||||
<p>Welcome to the interactive install script for the Roundcube Webmail package</p>
|
||||
<p>First let's check your local environment and find out if everything Roundcube needs is available.</p>
|
||||
|
||||
<p>The basic requirements are:</p>
|
||||
<ul>
|
||||
<li>PHP Version 5.2.0 or greater including
|
||||
<ul>
|
||||
<li>PCRE (perl compatible regular expression)</li>
|
||||
<li>Session support</li>
|
||||
<li>Libiconv (recommended)</li>
|
||||
<li>OpenSSL (recommended)</li>
|
||||
<li>FileInfo (optional)</li>
|
||||
<li>Multibyte/mbstring (optional)</li>
|
||||
<li>Mcrypt (optional)</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>php.ini options:
|
||||
<ul>
|
||||
<li>error_reporting E_ALL & ~E_NOTICE (or lower)</li>
|
||||
<li>file_uploads on (for attachment upload features)</li>
|
||||
<li>session.auto_start needs to be off</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>A MySQL or PostgreSQL database engine or the SQLite extension for PHP</li>
|
||||
<li>An SMTP server (recommended) or PHP configured for mail delivery</li>
|
||||
</ul>
|
||||
|
||||
<input type="submit" value="START INSTALLATION" />
|
||||
|
||||
</form>
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 6.6 KiB After Width: | Height: | Size: 7.4 KiB |
Reference in New Issue
Block a user