| | |
| | | ?> |
| | | <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 changeing IPs.</p> |
| | | <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> |
| | |
| | | |
| | | ?> |
| | | <div>This key is used to encrypt the users imap password before storing in the session record</div> |
| | | <p class="hint">It's a random generated string to ensure that every installation has it's own key. |
| | | <p class="hint">It's a random generated string to ensure that every installation has its own key. |
| | | If you enter it manually please provide a string of exactly 24 chars.</p> |
| | | </dd> |
| | | |
| | |
| | | ?> |
| | | <div>Store sent messages in this folder</div> |
| | | |
| | | <p class="hint">Leave blank if sent messages should not be stored</p> |
| | | <p class="hint">Leave blank if sent messages should not be stored. Note: folder must include namespace prefix if any.</p> |
| | | </dd> |
| | | |
| | | <dt class="propname">trash_mbox</dt> |
| | |
| | | ?> |
| | | <div>Move messages to this folder when deleting them</div> |
| | | |
| | | <p class="hint">Leave blank if they should be deleted directly</p> |
| | | <p class="hint">Leave blank if they should be deleted directly. Note: folder must include namespace prefix if any.</p> |
| | | </dd> |
| | | |
| | | <dt class="propname">drafts_mbox</dt> |
| | |
| | | ?> |
| | | <div>Store draft messages in this folder</div> |
| | | |
| | | <p class="hint">Leave blank if they should not be stored</p> |
| | | <p class="hint">Leave blank if they should not be stored. Note: folder must include namespace prefix if any.</p> |
| | | </dd> |
| | | |
| | | <dt class="propname">junk_mbox</dt> |
| | |
| | | |
| | | ?> |
| | | <div>Store spam messages in this folder</div> |
| | | |
| | | <p class="hint">Note: folder must include namespace prefix if any.</p> |
| | | </dd> |
| | | |
| | | </dd> |
| | | </dl> |
| | | </fieldset> |
| | |
| | | <p class="hint">Enter a URL relative to the document root of this Roundcube installation.</p> |
| | | </dd> |
| | | |
| | | <dt class="propname">pagesize <span class="userconf">*</span></dt> |
| | | <dt class="propname">mail_pagesize <span class="userconf">*</span></dt> |
| | | <dd> |
| | | <?php |
| | | |
| | | $input_pagesize = new html_inputfield(array('name' => '_pagesize', 'size' => 6, 'id' => "cfgpagesize")); |
| | | echo $input_pagesize->show($RCI->getprop('pagesize')); |
| | | $pagesize = $RCI->getprop('mail_pagesize'); |
| | | if (!$pagesize) { |
| | | $pagesize = $RCI->getprop('pagesize'); |
| | | } |
| | | $input_pagesize = new html_inputfield(array('name' => '_mail_pagesize', 'size' => 6, 'id' => "cfgmailpagesize")); |
| | | echo $input_pagesize->show($pagesize); |
| | | |
| | | ?> |
| | | <div>Show up to X items in list view.</div> |
| | | <div>Show up to X items in the mail messages list view.</div> |
| | | </dd> |
| | | |
| | | <dt class="propname">addressbook_pagesize <span class="userconf">*</span></dt> |
| | | <dd> |
| | | <?php |
| | | |
| | | $pagesize = $RCI->getprop('addressbook_pagesize'); |
| | | if (!$pagesize) { |
| | | $pagesize = $RCI->getprop('pagesize'); |
| | | } |
| | | $input_pagesize = new html_inputfield(array('name' => '_addressbook_pagesize', 'size' => 6, 'id' => "cfgabookpagesize")); |
| | | echo $input_pagesize->show($pagesize); |
| | | |
| | | ?> |
| | | <div>Show up to X items in the contacts list view.</div> |
| | | </dd> |
| | | |
| | | <dt class="propname">prefer_html <span class="userconf">*</span></dt> |