source: github/installer/config.php @ 522007b

HEADcourier-fixdev-browser-capabilitiespdorelease-0.6release-0.7release-0.8
Last change on this file since 522007b was 522007b, checked in by thomascube <thomas@…>, 5 years ago

Switch installer from obsolete locale_string to language config option

  • Property mode set to 100644
File size: 15.9 KB
RevLine 
[3549785]1<form action="index.php" method="post">
2<input type="hidden" name="_step" value="2" />
3<?php
4
[b3f9dfb]5// also load the default config to fill in the fields
[190e97e]6$RCI->load_defaults();
[c5042d4]7
[27564f1]8// register these boolean fields
9$RCI->config_props = array(
10  'ip_check' => 1,
11  'enable_caching' => 1,
12  'enable_spellcheck' => 1,
13  'auto_create_user' => 1,
14  'smtp_log' => 1,
15  'prefer_html' => 1,
16  'preview_pane' => 1,
17  'htmleditor' => 1,
18);
19
[967b342]20// allow the current user to get to the next step
21$_SESSION['allowinstaller'] = true;
22
[c5042d4]23if (!empty($_POST['submit'])) {
24 
[c060677]25  echo '<p class="notice">Copy or download the following configurations and save them in two files';
26  echo ' (names above the text box) within the <tt>config/</tt> directory of your RoundCube installation.<br/>';
[c0dc907]27  echo ' Make sure that there are no characters outside the <tt>&lt;?php ?&gt;</tt> brackets when saving the files.</p>';
[c5042d4]28 
[47124c22]29  $textbox = new html_textarea(array('rows' => 16, 'cols' => 60, 'class' => "configfile"));
[c5042d4]30 
[c060677]31  echo '<div><em>main.inc.php (<a href="index.php?_getfile=main">download</a>)</em></div>';
[c5042d4]32  echo $textbox->show($RCI->create_config('main'));
33 
[c060677]34  echo '<div style="margin-top:1em"><em>db.inc.php (<a href="index.php?_getfile=db">download</a>)</em></div>';
[c5042d4]35  echo $textbox->show($RCI->create_config('db'));
36
[27564f1]37  echo '<p class="hint">Of course there are more options to configure.
38    Have a look at the config files or visit <a href="http://trac.roundcube.net/wiki/Howto_Config">Howto_Config</a> to find out.</p>';
39
[c5042d4]40  echo '<p><input type="button" onclick="location.href=\'./index.php?_step=3\'" value="CONTINUE" /></p>';
41 
42  // echo '<style type="text/css"> .configblock { display:none } </style>';
43  echo "\n<hr style='margin-bottom:1.6em' />\n";
44}
[3549785]45
46?>
47<fieldset>
48<legend>General configuration</legend>
[c5042d4]49<dl class="configblock">
[3549785]50<!--
[c5042d4]51<dt id="cgfblockgeneral" class="propname">debug_level</dt>
[3549785]52<dd>
53<?php
54/*
55$value = $RCI->getprop('debug_level');
[47124c22]56$check_debug = new html_checkbox(array('name' => '_debug_level[]'));
[3549785]57echo $check_debug->show(($value & 1) ? 1 : 0 , array('value' => 1, 'id' => 'cfgdebug1'));
58echo '<label for="cfgdebug1">Log errors</label><br />';
59
60echo $check_debug->show(($value & 4) ? 4 : 0, array('value' => 4, 'id' => 'cfgdebug4'));
61echo '<label for="cfgdebug4">Display errors</label><br />';
62
63echo $check_debug->show(($value & 8) ? 8 : 0, array('value' => 8, 'id' => 'cfgdebug8'));
64echo '<label for="cfgdebug8">Verbose display</label><br />';
65*/
66?>
67</dd>
68-->
69
70<dt class="propname">product_name</dt>
71<dd>
72<?php
73
[47124c22]74$input_prodname = new html_inputfield(array('name' => '_product_name', 'size' => 30, 'id' => "cfgprodname"));
[3549785]75echo $input_prodname->show($RCI->getprop('product_name'));
76
77?>
78<div>The name of your service (used to compose page titles)</div>
79</dd>
80
[f1cd5fd]81<dt class="propname">skin</dt>
[3549785]82<dd>
83<?php
84
[f1cd5fd]85$input_skin = new html_inputfield(array('name' => '_skin', 'size' => 30, 'id' => "cfgskin"));
86echo $input_skin->show($RCI->getprop('skin'));
[3549785]87
88?>
[f1cd5fd]89<div>Name of interface skin (folder in /skins)</div>
[3549785]90</dd>
91
92<dt class="propname">temp_dir</dt>
93<dd>
94<?php
95
[47124c22]96$input_tempdir = new html_inputfield(array('name' => '_temp_dir', 'size' => 30, 'id' => "cfgtempdir"));
[3549785]97echo $input_tempdir->show($RCI->getprop('temp_dir'));
98
99?>
100<div>Use this folder to store temp files (must be writebale for webserver)</div>
101</dd>
102
103<dt class="propname">log_dir</dt>
104<dd>
105<?php
106
[47124c22]107$input_logdir = new html_inputfield(array('name' => '_log_dir', 'size' => 30, 'id' => "cfglogdir"));
[3549785]108echo $input_logdir->show($RCI->getprop('log_dir'));
109
110?>
111<div>Use this folder to store log files (must be writebale for webserver)</div>
112</dd>
113
114<dt class="propname">ip_check</dt>
115<dd>
116<?php
117
[47124c22]118$check_ipcheck = new html_checkbox(array('name' => '_ip_check', 'id' => "cfgipcheck"));
[3549785]119echo $check_ipcheck->show(intval($RCI->getprop('ip_check')), array('value' => 1));
120
121?>
[c5042d4]122<label for="cfgipcheck">Check client IP in session authorization</label><br />
[3549785]123
124<p class="hint">This increases security but can cause sudden logouts when someone uses a proxy with changeing IPs.</p>
125</dd>
126
127<dt class="propname">des_key</dt>
128<dd>
129<?php
130
[47124c22]131$input_deskey = new html_inputfield(array('name' => '_des_key', 'size' => 30, 'id' => "cfgdeskey"));
[3549785]132echo $input_deskey->show($RCI->getprop('des_key'));
133
134?>
135<div>This key is used to encrypt the users imap password before storing in the session record</div>
136<p class="hint">It's a random generated string to ensure that every installation has it's own key.
137If you enter it manually please provide a string of exactly 24 chars.</p>
138</dd>
139
140<dt class="propname">enable_caching</dt>
141<dd>
142<?php
143
[47124c22]144$check_caching = new html_checkbox(array('name' => '_enable_caching', 'id' => "cfgcache"));
[3549785]145echo $check_caching->show(intval($RCI->getprop('enable_caching')), array('value' => 1));
146
147?>
148<label for="cfgcache">Cache messages in local database</label><br />
149</dd>
150
[c5042d4]151<dt class="propname">enable_spellcheck</dt>
152<dd>
153<?php
154
[47124c22]155$check_caching = new html_checkbox(array('name' => '_enable_spellcheck', 'id' => "cfgspellcheck"));
[c5042d4]156echo $check_caching->show(intval($RCI->getprop('enable_spellcheck')), array('value' => 1));
157
158?>
159<label for="cfgspellcheck">Make use of the built-in spell checker</label><br />
160
161<p class="hint">It is based on GoogieSpell what implies that the message content will be sent to Google in order to check the spelling.</p>
162</dd>
163
164<dt class="propname">mdn_requests</dt>
165<dd>
166<?php
167
[47124c22]168$select_mdnreq = new html_select(array('name' => '_mdn_requests', 'id' => "cfgmdnreq"));
[c5042d4]169$select_mdnreq->add(array('ask the user', 'send automatically', 'ignore'), array(0, 1, 2));
170echo $select_mdnreq->show(intval($RCI->getprop('mdn_requests')));
171
172?>
173<div>Behavior if a received message requests a message delivery notification (read receipt)</div>
174</dd>
175
[3549785]176</dl>
177</fieldset>
178
179<fieldset>
[6557d30]180<legend>Database setup</legend>
[c5042d4]181<dl class="configblock" id="cgfblockdb">
182<dt class="propname">db_dsnw</dt>
183<dd>
184<p>Database settings for read/write operations:</p>
185<?php
186
[d5eb5cd]187require_once 'MDB2.php';
[ad43e63]188
[c5042d4]189$supported_dbs = array('MySQL' => 'mysql', 'MySQLi' => 'mysqli',
190    'PgSQL' => 'pgsql', 'SQLite' => 'sqlite');
191
[47124c22]192$select_dbtype = new html_select(array('name' => '_dbtype', 'id' => "cfgdbtype"));
[c5042d4]193foreach ($supported_dbs AS $database => $ext) {
194    if (extension_loaded($ext)) {
195        $select_dbtype->add($database, $ext);
196    }
197}
198
[47124c22]199$input_dbhost = new html_inputfield(array('name' => '_dbhost', 'size' => 20, 'id' => "cfgdbhost"));
200$input_dbname = new html_inputfield(array('name' => '_dbname', 'size' => 20, 'id' => "cfgdbname"));
201$input_dbuser = new html_inputfield(array('name' => '_dbuser', 'size' => 20, 'id' => "cfgdbuser"));
[2e90ff5]202$input_dbpass = new html_passwordfield(array('name' => '_dbpass', 'size' => 20, 'id' => "cfgdbpass"));
[c5042d4]203
[d5eb5cd]204$dsnw = MDB2::parseDSN($RCI->getprop('db_dsnw'));
[c5042d4]205
[2371191]206echo $select_dbtype->show($RCI->is_post ? $_POST['_dbtype'] : $dsnw['phptype']);
[c5042d4]207echo '<label for="cfgdbtype">Database type</label><br />';
[2371191]208echo $input_dbhost->show($RCI->is_post ? $_POST['_dbhost'] : $dsnw['hostspec']);
[c5042d4]209echo '<label for="cfgdbhost">Database server</label><br />';
[2371191]210echo $input_dbname->show($RCI->is_post ? $_POST['_dbname'] : $dsnw['database']);
[c5042d4]211echo '<label for="cfgdbname">Database name</label><br />';
[2371191]212echo $input_dbuser->show($RCI->is_post ? $_POST['_dbuser'] : $dsnw['username']);
[c5042d4]213echo '<label for="cfgdbuser">Database user name (needs write permissions)</label><br />';
[2371191]214echo $input_dbpass->show($RCI->is_post ? $_POST['_dbpass'] : $dsnw['password']);
[c5042d4]215echo '<label for="cfgdbpass">Database password</label><br />';
216
217?>
218</dd>
219
220<dt class="propname">db_backend</dt>
221<dd>
222<?php
223
224// check for existing PEAR classes
225@include_once 'DB.php';
226@include_once 'MDB2.php';
227
[47124c22]228$select_dbba = new html_select(array('name' => '_db_backend', 'id' => "cfgdbba"));
[c5042d4]229
230if (class_exists('DB'))
231  $select_dbba->add('DB', 'db');
232if (class_exists('MDB2'))
233  $select_dbba->add('MDB2', 'mdb2');
234
235echo $select_dbba->show($RCI->getprop('db_backend'));
236
237?>
238<div>PEAR Database backend to use</div>
239</dd>
240
[6557d30]241</dl>
242</fieldset>
243
[c5042d4]244
[6557d30]245<fieldset>
[3549785]246<legend>IMAP Settings</legend>
[c5042d4]247<dl class="configblock" id="cgfblockimap">
248<dt class="propname">default_host</dt>
249<dd>
250<div>The IMAP host(s) chosen to perform the log-in</div>
251<div id="defaulthostlist">
252<?php
253
[47124c22]254$text_imaphost = new html_inputfield(array('name' => '_default_host[]', 'size' => 30));
[1c4e5dd]255$default_hosts = $RCI->get_hostlist();
256
257if (empty($default_hosts))
258  $default_hosts = array('');
[c5042d4]259
[b3f9dfb]260$i = 0;
[1c4e5dd]261foreach ($default_hosts as $host) {
[b3f9dfb]262  echo '<div id="defaulthostentry'.$i.'">' . $text_imaphost->show($host);
263  if ($i++ > 0)
[c5042d4]264    echo '<a href="#" onclick="removehostfield(this.parentNode);return false" class="removelink" title="Remove this entry">remove</a>';
265  echo '</div>';
266}
267
268?>
269</div>
270<div><a href="javascript:addhostfield()" class="addlink" title="Add another field">add</a></div>
271
[b3f9dfb]272<p class="hint">Leave blank to show a textbox at login. To use SSL/IMAPS connection, type ssl://hostname</p>
[c5042d4]273</dd>
274
275<dt class="propname">default_port</dt>
276<dd>
277<?php
278
[47124c22]279$text_imapport = new html_inputfield(array('name' => '_default_port', 'size' => 6, 'id' => "cfgimapport"));
[c5042d4]280echo $text_imapport->show($RCI->getprop('default_port'));
281
282?>
283<div>TCP port used for IMAP connections</div>
284</dd>
285
286<dt class="propname">username_domain</dt>
287<dd>
288<?php
289
[47124c22]290$text_userdomain = new html_inputfield(array('name' => '_username_domain', 'size' => 30, 'id' => "cfguserdomain"));
[c5042d4]291echo $text_userdomain->show($RCI->getprop('username_domain'));
292
293?>
294<div>Automatically add this domain to user names for login</div>
295
296<p class="hint">Only for IMAP servers that require full e-mail addresses for login</p>
297</dd>
298
[3549785]299<dt class="propname">auto_create_user</dt>
300<dd>
301<?php
302
[47124c22]303$check_autocreate = new html_checkbox(array('name' => '_auto_create_user', 'id' => "cfgautocreate"));
[3549785]304echo $check_autocreate->show(intval($RCI->getprop('auto_create_user')), array('value' => 1));
305
306?>
307<label for="cfgautocreate">Automatically create a new RoundCube user when log-in the first time</label><br />
308
309<p class="hint">A user is authenticated by the IMAP server but it requires a local record to store settings
310and contacts. With this option enabled a new user record will automatically be created once the IMAP login succeeds.</p>
311
312<p class="hint">If this option is disabled, the login only succeeds if there's a matching user-record in the local RoundCube database
313what means that you have to create those records manually or disable this option after the first login.</p>
314</dd>
315
[c5042d4]316<dt class="propname">sent_mbox</dt>
317<dd>
318<?php
319
[47124c22]320$text_sentmbox = new html_inputfield(array('name' => '_sent_mbox', 'size' => 20, 'id' => "cfgsentmbox"));
[c5042d4]321echo $text_sentmbox->show($RCI->getprop('sent_mbox'));
322
323?>
324<div>Store sent messages is this folder</div>
325
326<p class="hint">Leave blank if sent messages should not be stored</p>
327</dd>
328
329<dt class="propname">trash_mbox</dt>
330<dd>
331<?php
332
[47124c22]333$text_trashmbox = new html_inputfield(array('name' => '_trash_mbox', 'size' => 20, 'id' => "cfgtrashmbox"));
[c5042d4]334echo $text_trashmbox->show($RCI->getprop('trash_mbox'));
335
336?>
337<div>Move messages to this folder when deleting them</div>
338
339<p class="hint">Leave blank if they should be deleted directly</p>
340</dd>
341
342<dt class="propname">drafts_mbox</dt>
343<dd>
344<?php
345
[47124c22]346$text_draftsmbox = new html_inputfield(array('name' => '_drafts_mbox', 'size' => 20, 'id' => "cfgdraftsmbox"));
[c5042d4]347echo $text_draftsmbox->show($RCI->getprop('drafts_mbox'));
348
349?>
350<div>Store draft messages is this folder</div>
351</dd>
352
[3549785]353</dl>
354</fieldset>
355
[c5042d4]356
[3549785]357<fieldset>
358<legend>SMTP Settings</legend>
[c5042d4]359<dl class="configblock" id="cgfblocksmtp">
360<dt class="propname">smtp_server</dt>
361<dd>
362<?php
363
[47124c22]364$text_smtphost = new html_inputfield(array('name' => '_smtp_server', 'size' => 30, 'id' => "cfgsmtphost"));
[c5042d4]365echo $text_smtphost->show($RCI->getprop('smtp_server'));
366
367?>
368<div>Use this host for sending mails</div>
369
370<p class="hint">To use SSL connection, set ssl://smtp.host.com. If left blank, the PHP mail() function is used</p>
371</dd>
372
373<dt class="propname">smtp_port</dt>
374<dd>
375<?php
376
[47124c22]377$text_smtpport = new html_inputfield(array('name' => '_smtp_port', 'size' => 6, 'id' => "cfgsmtpport"));
[c5042d4]378echo $text_smtpport->show($RCI->getprop('smtp_port'));
379
380?>
381<div>SMTP port (default is 25; 465 for SSL)</div>
382</dd>
383
384<dt class="propname">smtp_user/smtp_pass</dt>
385<dd>
386<?php
387
[47124c22]388$text_smtpuser = new html_inputfield(array('name' => '_smtp_user', 'size' => 20, 'id' => "cfgsmtpuser"));
[2e90ff5]389$text_smtppass = new html_passwordfield(array('name' => '_smtp_pass', 'size' => 20, 'id' => "cfgsmtppass"));
[c5042d4]390echo $text_smtpuser->show($RCI->getprop('smtp_user'));
391echo $text_smtppass->show($RCI->getprop('smtp_pass'));
392
393?>
394<div>SMTP username and password (if required)</div>
395<p>
396<?php
397
[47124c22]398$check_smtpuser = new html_checkbox(array('name' => '_smtp_user_u', 'id' => "cfgsmtpuseru"));
[c5042d4]399echo $check_smtpuser->show($RCI->getprop('smtp_user') == '%u' || $_POST['_smtp_user_u'] ? 1 : 0, array('value' => 1));
400
401?>
402<label for="cfgsmtpuseru">Use the current IMAP username and password for SMTP authentication</label>
403</p>
404</dd>
405<!--
406<dt class="propname">smtp_auth_type</dt>
407<dd>
408<?php
409/*
[47124c22]410$select_smtpauth = new html_select(array('name' => '_smtp_auth_type', 'id' => "cfgsmtpauth"));
[c5042d4]411$select_smtpauth->add(array('(auto)', 'PLAIN', 'DIGEST-MD5', 'CRAM-MD5', 'LOGIN'), array('0', 'PLAIN', 'DIGEST-MD5', 'CRAM-MD5', 'LOGIN'));
412echo $select_smtpauth->show(intval($RCI->getprop('smtp_auth_type')));
413*/
414?>
415<div>Method to authenticate at the SMTP server. Choose (auto) if you don't know what this is</div>
416</dd>
417-->
418<dt class="propname">smtp_log</dt>
419<dd>
420<?php
421
[47124c22]422$check_smtplog = new html_checkbox(array('name' => '_smtp_log', 'id' => "cfgsmtplog"));
[c5042d4]423echo $check_smtplog->show(intval($RCI->getprop('smtp_log')), array('value' => 1));
424
425?>
426<label for="cfgsmtplog">Log sent messages in <tt>logs/sendmail</tt></label><br />
427</dd>
428
[3549785]429</dl>
430</fieldset>
431
[c5042d4]432
[3549785]433<fieldset>
[27564f1]434<legend>Display settings &amp; user prefs</legend>
[c5042d4]435<dl class="configblock" id="cgfblockdisplay">
[3549785]436
[522007b]437<dt class="propname">language</dt>
[3549785]438<dd>
439<?php
440
[522007b]441$input_locale = new html_inputfield(array('name' => '_language', 'size' => 6, 'id' => "cfglocale"));
442echo $input_locale->show($RCI->getprop('language'));
[3549785]443
444?>
445<div>The default locale setting. This also defines the language of the login screen.</div>
[522007b]446<p class="hint">Enter a <a href="http://www.faqs.org/rfcs/rfc1766">RFC1766</a> formatted language name. Examples: en_US, de_DE, de_CH, fr_FR, pt_BR</p>
[3549785]447</dd>
448
[27564f1]449<dt class="propname">pagesize <span class="userconf">*</span></dt>
450<dd>
451<?php
452
[47124c22]453$input_pagesize = new html_inputfield(array('name' => '_pagesize', 'size' => 6, 'id' => "cfgpagesize"));
[27564f1]454echo $input_pagesize->show($RCI->getprop('pagesize'));
455
456?>
457<div>Show up to X items in list view.</div>
458</dd>
459
460<dt class="propname">prefer_html <span class="userconf">*</span></dt>
461<dd>
462<?php
463
[47124c22]464$check_htmlview = new html_checkbox(array('name' => '_prefer_html', 'id' => "cfghtmlview", 'value' => 1));
[27564f1]465echo $check_htmlview->show(intval($RCI->getprop('prefer_html')));
466
467?>
468<label for="cfghtmlview">Prefer displaying HTML messages</label><br />
469</dd>
470
471<dt class="propname">preview_pane <span class="userconf">*</span></dt>
472<dd>
473<?php
474
[47124c22]475$check_prevpane = new html_checkbox(array('name' => '_preview_pane', 'id' => "cfgprevpane", 'value' => 1));
[27564f1]476echo $check_prevpane->show(intval($RCI->getprop('preview_pane')));
477
478?>
479<label for="cfgprevpane">If preview pane is enabled</label><br />
480</dd>
481
482<dt class="propname">htmleditor <span class="userconf">*</span></dt>
483<dd>
484<?php
485
[47124c22]486$check_htmlcomp = new html_checkbox(array('name' => '_htmleditor', 'id' => "cfghtmlcompose", 'value' => 1));
[27564f1]487echo $check_htmlcomp->show(intval($RCI->getprop('htmleditor')));
488
489?>
490<label for="cfghtmlcompose">Compose HTML formatted messages</label><br />
491</dd>
492
493<dt class="propname">draft_autosave <span class="userconf">*</span></dt>
494<dd>
495<label for="cfgautosave">Save compose message every</label>
496<?php
497
[47124c22]498$select_autosave = new html_select(array('name' => '_draft_autosave', 'id' => 'cfgautosave'));
[27564f1]499$select_autosave->add('never', 0);
500foreach (array(3, 5, 10) as $i => $min)
501  $select_autosave->add("$min min", $min*60);
502
503echo $select_autosave->show(intval($RCI->getprop('draft_autosave')));
504
505?>
506</dd>
507
[3549785]508</dl>
[27564f1]509
510<p class="hint"><span class="userconf">*</span>&nbsp; These settings are defaults for the user preferences</p>
[3549785]511</fieldset>
512
513<?php
514
[b3f9dfb]515echo '<p><input type="submit" name="submit" value="' . ($RCI->configured ? 'UPDATE' : 'CREATE') . ' CONFIG" ' . ($RCI->failures ? 'disabled' : '') . ' /></p>';
[3549785]516
517?>
518</form>
Note: See TracBrowser for help on using the repository browser.