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