diff options
author | alecpl <alec@alec.pl> | 2008-09-29 07:38:16 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2008-09-29 07:38:16 +0000 |
commit | ffae15e5fcde50cf8c1b168fa313f4ec3454a693 (patch) | |
tree | 88f81d19eb5ebc41710fb9a161b054881ba5e3bd /installer | |
parent | 29e697b24a68d7fca600f88ebc913b3ba5240f50 (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
Diffstat (limited to 'installer')
-rw-r--r-- | installer/config.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/installer/config.php b/installer/config.php index d5e10e8b4..b0f56889d 100644 --- a/installer/config.php +++ b/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> These settings are defaults for the user preferences</p> |