diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-11-27 11:25:31 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-11-27 11:25:31 +0000 |
| commit | 0a703a900d3aded9ed1249f313ca604bcc360cf0 (patch) | |
| tree | 5b396abd9923da0aa64640267fd1f883075264aa /roundcubemail/installer/config.php | |
| parent | c59686be0451ef982536b880e372559696b06683 (diff) | |
- Allow UTF-8 folder names in config (#1485579)
- Add junk_mbox option configuration in installer (#1485579)
git-svn-id: https://svn.roundcube.net/trunk@2094 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/installer/config.php')
| -rw-r--r-- | roundcubemail/installer/config.php | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/roundcubemail/installer/config.php b/roundcubemail/installer/config.php index 13371afac..fef222d8a 100644 --- a/roundcubemail/installer/config.php +++ b/roundcubemail/installer/config.php @@ -348,7 +348,7 @@ $text_sentmbox = new html_inputfield(array('name' => '_sent_mbox', 'size' => 20, 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> @@ -374,9 +374,21 @@ $text_draftsmbox = new html_inputfield(array('name' => '_drafts_mbox', 'size' => 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> |
