summaryrefslogtreecommitdiff
path: root/roundcubemail/installer/config.php
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-09-29 07:38:16 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-09-29 07:38:16 +0000
commit2a6d6dd9c1a3534526456e5c78e5579682f5fa86 (patch)
tree52215ed5adc90be24270b29d21708af1eed6a721 /roundcubemail/installer/config.php
parent59cf47e8166a7df66bbf6d2202c3647709b8c9d8 (diff)
- Added 'mime_param_folding' option with possibility to choose
long/non-ascii attachment names encoding eg. to be readable in MS Outlook/OE (#1485320) - Added "advanced options" feature in User Preferences git-svn-id: https://svn.roundcube.net/trunk@1897 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/installer/config.php')
-rw-r--r--roundcubemail/installer/config.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/roundcubemail/installer/config.php b/roundcubemail/installer/config.php
index d5e10e8b4..b0f56889d 100644
--- a/roundcubemail/installer/config.php
+++ b/roundcubemail/installer/config.php
@@ -539,6 +539,21 @@ echo $select_mdnreq->show(intval($RCI->getprop('mdn_requests')));
<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>&nbsp; These settings are defaults for the user preferences</p>