Changeset ffae15e5 in github for installer/config.php


Ignore:
Timestamp:
Sep 29, 2008 3:38:16 AM (5 years ago)
Author:
alecpl <alec@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
Children:
8d0224c
Parents:
29e697b
Message:
  • 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
File:
1 edited

Legend:

Unmodified
Added
Removed
  • installer/config.php

    r7d7f67d rffae15e5  
    540540</dd> 
    541541 
     542<dt class="propname">mime_param_folding <span class="userconf">*</span></dt> 
     543<dd> 
     544<?php 
     545 
     546$select_param_folding = new html_select(array('name' => '_mime_param_folding', 'id' => "cfgmimeparamfolding")); 
     547$select_param_folding->add('Full RFC 2231 (Roundcube, Thunderbird)', '0');  
     548$select_param_folding->add('RFC 2047/2231 (MS Outlook, OE)', '1'); 
     549$select_param_folding->add('Full RFC 2047 (deprecated)', '2'); 
     550 
     551echo $select_param_folding->show(intval($RCI->getprop('mime_param_folding'))); 
     552 
     553?> 
     554<div>How to encode attachment long/non-ascii names</div> 
     555</dd> 
     556 
    542557</dl> 
    543558 
Note: See TracChangeset for help on using the changeset viewer.