| | |
| | | $RCI->load_defaults(); |
| | | |
| | | // register these boolean fields |
| | | $RCI->config_props = array( |
| | | $RCI->bool_config_props = array( |
| | | 'ip_check' => 1, |
| | | 'enable_caching' => 1, |
| | | 'enable_spellcheck' => 1, |
| | |
| | | <label for="cfgspellcheck">Make use of the built-in spell checker</label><br /> |
| | | |
| | | <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> |
| | | </dd> |
| | | |
| | | <dt class="propname">identities_level</dt> |
| | | <dd> |
| | | <?php |
| | | |
| | | $input_ilevel = new html_select(array('name' => '_identities_level', 'id' => "cfgidentitieslevel")); |
| | | $input_ilevel->add('many identities with possibility to edit all params', 0); |
| | | $input_ilevel->add('many identities with possibility to edit all params but not email address', 1); |
| | | $input_ilevel->add('one identity with possibility to edit all params', 2); |
| | | $input_ilevel->add('one identity with possibility to edit all params but not email address', 3); |
| | | echo $input_ilevel->show($RCI->getprop('identities_level'), 0); |
| | | |
| | | ?> |
| | | <div>Level of identities access</div> |
| | | <p class="hint">Defines what users can do with their identities.</p> |
| | | </dd> |
| | | |
| | | </dl> |
| | |
| | | echo $text_sentmbox->show($RCI->getprop('sent_mbox')); |
| | | |
| | | ?> |
| | | <div>Store sent messages is this folder</div> |
| | | <div>Store sent messages in this folder</div> |
| | | |
| | | <p class="hint">Leave blank if sent messages should not be stored</p> |
| | | </dd> |
| | |
| | | echo $text_draftsmbox->show($RCI->getprop('drafts_mbox')); |
| | | |
| | | ?> |
| | | <div>Store draft messages is this folder</div> |
| | | <div>Store draft messages in this folder</div> |
| | | |
| | | <p class="hint">Leave blank if they should not be stored</p> |
| | | </dd> |
| | | |
| | | <dt class="propname">junk_mbox</dt> |
| | | <dd> |
| | | <?php |
| | | |
| | | $text_junkmbox = new html_inputfield(array('name' => '_junk_mbox', 'size' => 20, 'id' => "cfgjunkmbox")); |
| | | echo $text_junkmbox->show($RCI->getprop('junk_mbox')); |
| | | |
| | | ?> |
| | | <div>Store spam messages in this folder</div> |
| | | </dd> |
| | | </dl> |
| | | </fieldset> |
| | | |
| | |
| | | <div>Behavior if a received message requests a message delivery notification (read receipt)</div> |
| | | </dd> |
| | | |
| | | <dt class="propname">mime_param_folding <span class="userconf">*</span></dt> |
| | | <dd> |
| | | <?php |
| | | |
| | | $select_param_folding = new html_select(array('name' => '_mime_param_folding', 'id' => "cfgmimeparamfolding")); |
| | | $select_param_folding->add('Full RFC 2231 (Roundcube, Thunderbird)', '0'); |
| | | $select_param_folding->add('RFC 2047/2231 (MS Outlook, OE)', '1'); |
| | | $select_param_folding->add('Full RFC 2047 (deprecated)', '2'); |
| | | |
| | | echo $select_param_folding->show(intval($RCI->getprop('mime_param_folding'))); |
| | | |
| | | ?> |
| | | <div>How to encode attachment long/non-ascii names</div> |
| | | </dd> |
| | | |
| | | </dl> |
| | | |
| | | <p class="hint"><span class="userconf">*</span> These settings are defaults for the user preferences</p> |